openapi: 3.1.0 info: title: Salesforce description: 'Find the resources you need to start building. ' contact: {} version: '1.0' jsonSchemaDialect: https://json-schema.org/draft/2020-12/schema servers: - url: https://login.salesforce.com variables: {} - url: https://id variables: {} - url: https://services variables: {} - url: '{{url}}{{site}}/services/oauth2' variables: url: default: DefaultParameterValue site: default: DefaultParameterValue paths: /services/auth/headless/init/registration: post: tags: - Initialize - Registration summary: Salesforce Registration - Initialize description: >- Submits the registration data to the init/registration endpoint and returns a request identifier. At the same time, an OTP is sent out to the end users via email or sms. Registration data is passed in the request body, and is formatted with JSON, with 5 keys: `userdata`, `customdata`, `password`, `recaptcha`, and `verificationmethod`. The first two keys are JSON structures, and the last 3 keys are strings. This request returns JSON, and includes an identifier (request identifier). operationId: Registration-Initialize parameters: [] requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/Registration-InitializeRequest' - examples: - userdata: firstName: userFirstName lastName: userLastName email: username: customdata: mobilePhone: '+12035408967' streetAddress: 12 N Lands End Rd city: Lantana state: Florida zip: '20537' privacyPolicy: true password: Test123! recaptcha: verificationmethod: email contentMediaType: application/json example: userdata: firstName: userFirstName lastName: userLastName email: username: customdata: mobilePhone: '+12035408967' streetAddress: 12 N Lands End Rd city: Lantana state: Florida zip: '20537' privacyPolicy: true password: Test123! recaptcha: verificationmethod: email required: true responses: '200': description: '' headers: {} deprecated: false security: [] servers: - url: https://login.salesforce.com variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /services/oauth2/authorize: post: tags: - Authorize - Registration summary: Salesforce Registration - Authorize description: >- After you send your registration data to initialize, this request allows you to process that registration data, and as a part of this request you also verify the users email or sms number. The request itself is a authorization call for the Code and Credential flow. It includes 3 specific headers: `Auth-Request-Type` which is set to `user-registration`, `Auth-Verification-Type` which is set to email or sms, and an Authorization Basic header, which is the base 64 encoded result of `identifier:otp` where `identifier` is the value returned in your initialize registration call, and `otp` is the value sent to the end user via email or sms. The response from this API is the Auth Code, which is then exchanged for the Access Token. operationId: Registration-Authorize parameters: - name: Auth-Request-Type in: header description: Required for User Registration required: true schema: type: string examples: - user-registration example: example_value - name: Auth-Verification-Type in: header description: Must match init/registration, email or sms required: true schema: type: string examples: - email example: example_value - name: Authorization in: header description: Base64 encoded required: true schema: type: string examples: - Basic example: example_value requestBody: content: application/x-www-form-urlencoded: encoding: {} schema: required: - response_type - client_id - redirect_uri - scope type: object properties: response_type: type: string examples: - code_credentials client_id: type: string examples: - '{{vault:salesforce-consumer-key}}' redirect_uri: type: string scope: type: string description: Comma seperated list of scopes, optional contentMediaType: application/x-www-form-urlencoded examples: RegistrationAuthorizeRequestExample: summary: Default Registration-Authorize request x-microcks-default: true value: response_type: example_value client_id: '500123' redirect_uri: example_value scope: example_value required: false responses: '200': description: '' headers: {} deprecated: false security: [] servers: - url: https://login.salesforce.com variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK get: tags: - Agent - Flow - Users summary: Salesforce User Agent Flow operationId: UserAgentFlow parameters: - name: response_type in: query description: '' required: true style: form explode: true schema: type: string examples: - token example: example_value - name: client_id in: query description: '' required: true style: form explode: true schema: type: string examples: - '{{vault:salesforce-consumer-key}}' example: '500123' - name: redirect_uri in: query description: '' required: true style: form explode: true schema: type: string example: example_value - name: display in: query description: '' required: true style: form explode: true schema: type: string examples: - touch example: example_value - name: login_hint in: query description: '' required: true style: form explode: true schema: type: string example: example_value - name: nonce in: query description: '' required: true style: form explode: true schema: type: string examples: - awesome example: example_value responses: '200': description: OK headers: Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block Content-Security-Policy: content: text/plain: schema: type: string contentMediaType: text/plain example: upgrade-insecure-requests X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: must-revalidate,no-cache,no-store Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Connection: content: text/plain: schema: type: string contentMediaType: text/plain example: close content: text/html; charset=UTF-8: schema: type: string examples: - >2 contentMediaType: text/html; charset=UTF-8 example: >2 deprecated: false security: [] servers: - url: https://login.salesforce.com variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /services/oauth2/token: post: tags: - Exchange - Registration - Tokens summary: Salesforce Registration - Token Exchange description: >- This exchanges the auth code returned in the Authorize Request for an access token and refresh token. This follows the standard Auth Code flow/Webserver Code Flow pattern. The Code is the return form the Authorization call. operationId: Registration-TokenExchange parameters: [] requestBody: content: application/x-www-form-urlencoded: encoding: {} schema: required: - code - grant_type - client_id - redirect_uri type: object properties: code: type: string description: Auth Code from the Authorize response examples: - grant_type: type: string examples: - authorization_code client_id: type: string examples: - '{{vault:salesforce-consumer-key}}' redirect_uri: type: string contentMediaType: application/x-www-form-urlencoded examples: RegistrationTokenexchangeRequestExample: summary: Default Registration-TokenExchange request x-microcks-default: true value: code: example_value grant_type: example_value client_id: '500123' redirect_uri: example_value required: false responses: '200': description: '' headers: {} deprecated: false security: [] servers: - url: https://login.salesforce.com variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /services/auth/headless/forgot_password: post: tags: - Initialize - Password summary: Salesforce Forgot Password - Initialize operationId: ForgotPassword-Initialize parameters: [] requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/ForgotPassword-InitializeRequest' - examples: - username: recaptcha: contentMediaType: application/json example: username: recaptcha: required: true responses: '200': description: '' headers: {} deprecated: false security: [] servers: - url: https://login.salesforce.com variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /services/auth/headless/init/passwordless/login: post: tags: - Initialize - Login summary: Salesforce Passwordless Login - Initialize description: >- Submits the passwordless login data to the init/passwordless/login endpoint and returns a request identifier. At the same time, an OTP is sent out to the end users via email or sms. Passwordless login data is passed in the request body, and is formatted with JSON, with 3 keys: `username`, `recaptcha`, and `verificationmethod`. All 3 keys are strings. This request returns JSON, and includes an identifier (request identifier). operationId: PasswordlessLogin-Initialize parameters: [] requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/PasswordlessLogin-InitializeRequest' - examples: - username: recaptcha: verificationmethod: email or sms contentMediaType: application/json example: username: recaptcha: verificationmethod: email or sms required: true responses: '200': description: '' headers: {} deprecated: false security: [] servers: - url: https://login.salesforce.com variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /services/oauth2/userinfo: get: tags: - Get - Info - Users summary: Salesforce Get User Info description: >- This requests uses an access token to get user information from Salesforce using the standard `/userinfo` endpoint. operationId: GetUserInfo parameters: - name: Authorization in: header description: Replace with your access token required: true schema: type: string examples: - Bearer example: example_value - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false security: [] servers: - url: https://login.salesforce.com variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /services/oauth2/revoke: post: tags: - Revoke - Tokens summary: Salesforce Revoke Token description: >- This calls the standard revoke endpoint, passing in your access token. This endpoint should be called as part of your logout process to invalidate the access and refresh token. operationId: RevokeToken parameters: [] requestBody: content: application/x-www-form-urlencoded: encoding: {} schema: required: - token type: object properties: token: type: string description: Replace with a valid access token or refresh token. contentMediaType: application/x-www-form-urlencoded examples: RevoketokenRequestExample: summary: Default RevokeToken request x-microcks-default: true value: token: CAUQAA required: false responses: '200': description: '' headers: {} deprecated: false security: [] servers: - url: https://login.salesforce.com variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /services/data/v64.0/apps/oauth/usage: get: tags: - Oauth - Usage summary: Salesforce Oauth Usage description: "Lists all the external client apps for the current org. See [OAuth Usage](https://developer.salesforce.com/docs/atlas.en-us.246.0.chatterapi.meta/chatterapi/connect_resources_usage.htm)." operationId: OAuthUsage parameters: - name: page in: query description: >- Number of the page you want returned. Starts at 0. If you don’t specify a value or if you specify 0, the first page is returned. required: true style: form explode: true schema: type: integer contentEncoding: int32 examples: - 0 example: 10 - name: pageSize in: query description: Number of usage entries per page. Defaults to 100. required: true style: form explode: true schema: type: integer contentEncoding: int32 examples: - 100 example: 10 - name: Authorization in: header description: Replace with your access token required: true schema: type: string examples: - Bearer example: example_value responses: default: description: '' headers: {} content: text/plain: schema: type: string examples: - |- { "apps": [ { "accessTokenFormat": "", "availableActions": "disable, enable", "description": "", "developerName": "", "identifier": "", "isFromPackage": bool, "usageDetailsUrl": "/services/data//apps/oauth/usage//users" } ], "currentPageUrl": "/services/data//apps/oauth/usage?page=0&pageSize=100", "nextPageUrl": "/services/data//apps/oauth/usage?page=1&pageSize=100" } contentMediaType: text/plain example: |- { "apps": [ { "accessTokenFormat": "", "availableActions": "disable, enable", "description": "", "developerName": "", "identifier": "", "isFromPackage": bool, "usageDetailsUrl": "/services/data//apps/oauth/usage//users" } ], "currentPageUrl": "/services/data//apps/oauth/usage?page=0&pageSize=100", "nextPageUrl": "/services/data//apps/oauth/usage?page=1&pageSize=100" } deprecated: false security: [] servers: - url: https://login.salesforce.com variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /services/data/v64.0/apps/oauth/usage//users: get: tags: - Applications - Oauth - Users summary: Salesforce Oauth App Users description: "Lists all users for the external client app indicated by the app ID. See [OAuth Users by App ID](https://developer.salesforce.com/docs/atlas.en-us.246.0.chatterapi.meta/chatterapi/connect_resources_usage_app_id_users.htm)." operationId: OAuthAppUsers parameters: - name: page in: query description: Page number for the usage information. Defaults to 0. required: true style: form explode: true schema: type: integer contentEncoding: int32 examples: - 0 example: 10 - name: pageSize in: query description: Number of usage entries per page. Defaults to 100. required: true style: form explode: true schema: type: integer contentEncoding: int32 examples: - 100 example: 10 - name: Authorization in: header description: Replace with your access token required: true schema: type: string examples: - Bearer example: example_value responses: default: description: '' headers: {} content: text/plain: schema: type: string examples: - |- { "currentPageUrl": "/services/data//apps/oauth/usage//users?page=0&pageSize=100", "nextPageUrl": "/services/data//apps/oauth/usage//users?page=1&pageSize=100", "users": [ { "accessTokenFormat": "", "appDeveloperName": "", "appIdentifier": "", "initialConnectionAt": "", "lastUsedAt": "", "revocationUrl": "/services/data//apps/oauth/usage///tokens", "useCount": integer, "userIdentifier": "", "username": "" } ] } contentMediaType: text/plain example: |- { "currentPageUrl": "/services/data//apps/oauth/usage//users?page=0&pageSize=100", "nextPageUrl": "/services/data//apps/oauth/usage//users?page=1&pageSize=100", "users": [ { "accessTokenFormat": "", "appDeveloperName": "", "appIdentifier": "", "initialConnectionAt": "", "lastUsedAt": "", "revocationUrl": "/services/data//apps/oauth/usage///tokens", "useCount": integer, "userIdentifier": "", "username": "" } ] } deprecated: false security: [] servers: - url: https://login.salesforce.com variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /services/data/v64.0/apps/oauth/usage///tokens: get: tags: - Applications - Oauth - Tokens - Users summary: Salesforce Oauth App Users Tokens description: "Lists all tokens for a user of the external client app. See [Refresh Token by User and App](https://developer.salesforce.com/docs/atlas.en-us.246.0.chatterapi.meta/chatterapi/connect_resources_usage_app_id_user_id_tokens.htm)." operationId: OAuthAppUsersTokens parameters: - name: Authorization in: header description: Replace with your access token required: true schema: type: string examples: - Bearer example: example_value responses: default: description: '' headers: {} content: text/plain: schema: type: string examples: - |- { "currentPageUrl": "/services/data//apps/oauth/usage///tokens", "tokens": [ { "accessTokenFormat": "", "appDeveloperName": "", "appIdentifier": "", "initialConnectionAt": "", "lastUsedAt": "", "revocationUrl": "/services/data//apps/oauth/usage/tokens/", "useCount": integer, "userIdentifier": "", "username": "" } ] } contentMediaType: text/plain example: |- { "currentPageUrl": "/services/data//apps/oauth/usage///tokens", "tokens": [ { "accessTokenFormat": "", "appDeveloperName": "", "appIdentifier": "", "initialConnectionAt": "", "lastUsedAt": "", "revocationUrl": "/services/data//apps/oauth/usage/tokens/", "useCount": integer, "userIdentifier": "", "username": "" } ] } deprecated: false security: [] servers: - url: https://login.salesforce.com variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK delete: tags: - Oauth - Revoke - Tokens - Users summary: Salesforce Oauth User Tokens Revoke description: "Revokes all tokens for a user of the external client app. See [Refresh Token by User and App](https://developer.salesforce.com/docs/atlas.en-us.246.0.chatterapi.meta/chatterapi/connect_resources_usage_app_id_user_id_tokens.htm)." operationId: OAuthUserTokensRevoke parameters: - name: Authorization in: header description: Replace with your access token required: true schema: type: string examples: - Bearer example: example_value responses: '200': description: '' headers: {} deprecated: false security: [] servers: - url: https://login.salesforce.com variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /services/data/v64.0/apps/oauth/usage//tokens: delete: tags: - Oauth - Revoke - Tokens summary: Salesforce Oauth Tokens Revoke description: "Revokes all tokens available for the external client app. See [Refresh Token by App ID](https://developer.salesforce.com/docs/atlas.en-us.246.0.chatterapi.meta/chatterapi/connect_resources_usage_app_id_tokens.htm)." operationId: OAuthTokensRevoke parameters: - name: Authorization in: header description: Replace with your access token required: true schema: type: string examples: - Bearer example: example_value responses: '200': description: '' headers: {} deprecated: false security: [] servers: - url: https://login.salesforce.com variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /services/data/v64.0/apps/oauth/usage/tokens/: delete: tags: - Oauth - Revoke - Tokens summary: Salesforce Oauth Token Revoke description: >- Revokes one token. See [OAuth Refresh Token](https://developer.salesforce.com/docs/atlas.en-us.246.0.chatterapi.meta/chatterapi/connect_resources_usage_tokens_token_id.htm). operationId: OAuthTokenRevoke parameters: - name: Authorization in: header description: Replace with your access token required: true schema: type: string examples: - Bearer example: example_value responses: '200': description: '' headers: {} deprecated: false security: [] servers: - url: https://login.salesforce.com variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /services/data/v64.0/apps/oauth/credentials/: get: tags: - Collections summary: Salesforce Collections description: >- Returns credentials for all consumers associated with an external client app. See [OAuth Credentials by App ID](https://developer.salesforce.com/docs/atlas.en-us.chatterapi.meta/chatterapi/connect_resources_credentials_by_app_id.htm). operationId: Collections parameters: - name: Authorization in: header description: Replace with your access token required: true schema: type: string examples: - Bearer example: example_value responses: '200': description: '' headers: {} deprecated: false security: [] servers: - url: https://login.salesforce.com variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /services/data/v64.0/apps/oauth/credentials//: get: tags: - Resources summary: Salesforce Resources description: >- Returns credentials for a specific consumer. Use parameters to determine whether the request should return the key, the secret, or both key and secret. See [OAuth Credentials by Consumer ID](https://developer.salesforce.com/docs/atlas.en-us.chatterapi.meta/chatterapi/connect_resources_credentials_by_app_and_consumer_id.htm). operationId: Resources parameters: - name: part in: query description: Key, Secret, or KeyAndSecret required: true style: form explode: true schema: type: string examples: - Key example: example_value - name: Authorization in: header description: Replace with your access token required: true schema: type: string examples: - Bearer example: example_value responses: '200': description: '' headers: {} deprecated: false security: [] servers: - url: https://login.salesforce.com variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /.well-known/openid-configuration: get: tags: - Connect - Discovery - Endpoint summary: Salesforce Openid Connect Discovery Endpoint operationId: OpenIDConnectDiscoveryEndpoint parameters: [] responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Thu, 16 Nov 2023 15:53:35 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Access-Control-Allow-Credentials: content: text/plain: schema: type: string contentMediaType: text/plain example: 'false' Access-Control-Allow-Origin: content: text/plain: schema: type: string contentMediaType: text/plain example: '*' Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: >- #/components/schemas/SuccessfulOpenIDConnectDiscoveryEndpoint - examples: - end_session_endpoint: https:///services/auth/idp/oidc/logout frontchannel_logout_supported: true frontchannel_logout_session_supported: false issuer: https:// authorization_endpoint: https:///services/oauth2/authorize token_endpoint: https:///services/oauth2/token revocation_endpoint: https:///services/oauth2/revoke userinfo_endpoint: https:///services/oauth2/userinfo jwks_uri: https:///id/keys registration_endpoint: https:///services/oauth2/register introspection_endpoint: https:///services/oauth2/introspect scopes_supported: - cdp_ingest_api - custom_permissions - cdp_segment_api - content - cdp_api - chatbot_api - cdp_identityresolution_api - interaction_api - wave_api - web - cdp_calculated_insight_api - einstein_gpt_api - offline_access - id - api - eclair_api - email - pardot_api - lightning - visualforce - cdp_query_api - sfap_api - address - openid - profile - cdp_profile_api - refresh_token - phone - user_registration_api - pwdless_login_api - chatter_api - full - forgot_password response_types_supported: - code - token - token id_token subject_types_supported: - public id_token_signing_alg_values_supported: - RS256 display_values_supported: - page - popup - touch token_endpoint_auth_methods_supported: - client_secret_post - client_secret_basic - private_key_jwt claims_supported: - active - address - email - email_verified - family_name - given_name - is_app_installed - language - locale - name - nickname - organization_id - phone_number - phone_number_verified - photos - picture - preferred_username - profile - sub - updated_at - urls - user_id - user_type - zoneinfo contentMediaType: application/json;charset=UTF-8 example: end_session_endpoint: https:///services/auth/idp/oidc/logout frontchannel_logout_supported: true frontchannel_logout_session_supported: false issuer: https:// authorization_endpoint: https:///services/oauth2/authorize token_endpoint: https:///services/oauth2/token revocation_endpoint: https:///services/oauth2/revoke userinfo_endpoint: https:///services/oauth2/userinfo jwks_uri: https:///id/keys registration_endpoint: https:///services/oauth2/register introspection_endpoint: https:///services/oauth2/introspect scopes_supported: - cdp_ingest_api - custom_permissions - cdp_segment_api - content - cdp_api - chatbot_api - cdp_identityresolution_api - interaction_api - wave_api - web - cdp_calculated_insight_api - einstein_gpt_api - offline_access - id - api - eclair_api - email - pardot_api - lightning - visualforce - cdp_query_api - sfap_api - address - openid - profile - cdp_profile_api - refresh_token - phone - user_registration_api - pwdless_login_api - chatter_api - full - forgot_password response_types_supported: - code - token - token id_token subject_types_supported: - public id_token_signing_alg_values_supported: - RS256 display_values_supported: - page - popup - touch token_endpoint_auth_methods_supported: - client_secret_post - client_secret_basic - private_key_jwt claims_supported: - active - address - email - email_verified - family_name - given_name - is_app_installed - language - locale - name - nickname - organization_id - phone_number - phone_number_verified - photos - picture - preferred_username - profile - sub - updated_at - urls - user_id - user_type - zoneinfo deprecated: false security: [] servers: - url: https://login.salesforce.com variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /.well-known/auth-configuration: get: tags: - Authentication - Configuration - Endpoint summary: Salesforce Authentication Configuration Endpoint operationId: AuthenticationConfigurationEndpoint parameters: [] responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Thu, 16 Nov 2023 15:54:15 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Access-Control-Allow-Credentials: content: text/plain: schema: type: string contentMediaType: text/plain example: 'false' Access-Control-Allow-Methods: content: text/plain: schema: type: string contentMediaType: text/plain example: GET, POST, OPTIONS Access-Control-Allow-Origin: content: text/plain: schema: type: string contentMediaType: text/plain example: '*' Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: >- #/components/schemas/SuccessfulAuthenticationConfigurationEndpoint - examples: - OrgId: 00D2o000000i6mB Url: https:// MobileSDK: UseiOSNativeBrowserForAuthentication: false UseAndroidNativeBrowserForAuthentication: false shareBrowserSessionIOS: false shareBrowserSessionAndroid: false LoginPage: SamlProviders: [] AuthProviders: [] CertificateLogin: LoginPageType: standard LoginPageTypeConfigs: {} contentMediaType: application/json;charset=UTF-8 example: OrgId: 00D2o000000i6mB Url: https:// MobileSDK: UseiOSNativeBrowserForAuthentication: false UseAndroidNativeBrowserForAuthentication: false shareBrowserSessionIOS: false shareBrowserSessionAndroid: false LoginPage: SamlProviders: [] AuthProviders: [] CertificateLogin: LoginPageType: standard LoginPageTypeConfigs: {} deprecated: false security: [] servers: - url: https://login.salesforce.com variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /services/oauth2/introspect: post: tags: - Connect - Endpoint - Tokens summary: Salesforce Openid Connect Token Introspection Endpoint operationId: OpenIDConnectTokenIntrospectionEndpoint parameters: - name: Content-Type in: header description: '' required: true schema: const: application/x-www-form-urlencoded type: string examples: - application/x-www-form-urlencoded example: example_value - name: Accept in: header description: '' required: true schema: type: string examples: - application/json example: example_value requestBody: content: application/x-www-form-urlencoded: encoding: {} schema: required: - token - token_type_hint - client_id - client_secret type: object properties: token: type: string token_type_hint: type: string examples: - access_token client_id: type: string examples: - '{{vault:salesforce-consumer-key}}' client_secret: type: string contentMediaType: application/x-www-form-urlencoded examples: OpenidconnecttokenintrospectionendpointRequestExample: summary: Default OpenIDConnectTokenIntrospectionEndpoint request x-microcks-default: true value: token: CAUQAA token_type_hint: CAUQAA client_id: '500123' client_secret: example_value required: false responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Thu, 16 Nov 2023 15:54:42 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: type: string examples: - |- { "active": true, "scope": "", "client_id": "", "username": "", "sub": "https://login.salesforce.com/id/00D.../005...", "token_type": "access_token", "exp": , "iat": , "nbf": } contentMediaType: application/json;charset=UTF-8 example: |- { "active": true, "scope": "", "client_id": "", "username": "", "sub": "https://login.salesforce.com/id/00D.../005...", "token_type": "access_token", "exp": , "iat": , "nbf": } deprecated: false security: [] servers: - url: https://login.salesforce.com variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /services/oauth2/register: post: tags: - Client - Connect - Dynamic - Endpoint - Registration summary: Salesforce Openid Connect Dynamic Client Registration Endpoint operationId: OpenIDConnectDynamicClientRegistrationEndpoint parameters: - name: Accept in: header description: '' required: true schema: type: string examples: - application/json example: example_value - name: Authorization in: header description: '' required: true schema: type: string examples: - Bearer {{init_access_token}} example: example_value requestBody: description: '' content: application/json: schema: allOf: - $ref: >- #/components/schemas/OpenIDConnectDynamicClientRegistrationEndpointRequest - examples: - redirect_uris: - http://localhost response_types: - code - token - id_token grant_types: - authorization_code - implicit - refresh_token application_type: web contacts: - abc@sf.com - ve7jtb@example.org client_name: Example Olivier contentMediaType: application/json example: redirect_uris: - http://localhost response_types: - code - token - id_token grant_types: - authorization_code - implicit - refresh_token application_type: web contacts: - abc@sf.com - ve7jtb@example.org client_name: Example Olivier required: true responses: '201': description: Created headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Thu, 16 Nov 2023 16:04:08 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Expires: content: text/plain: schema: type: string contentMediaType: text/plain example: Thu, 01 Jan 1970 00:00:00 GMT Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: type: string examples: - |- { "client_id": "", "client_secret": "", "registration_access_token": "", "registration_client_uri": "https://login.salesforce.com/services/oauth2/register/", "client_id_issued_at": , "client_secret_expires_at": 0, "token_endpoint_auth_method": "client_secret_post", "redirect_uris": [ "http://localhost" ], "response_types": [ "code", "token", "id_token" ], "grant_types": [ "authorization_code", "hybrid_auth_code", "implicit", "refresh_token" ], "contacts": [ "abc@sf.com" ], "client_name": "Sample Customer", "scopes": [ "openid", "refresh_token", "id", "api" ] } contentMediaType: application/json;charset=UTF-8 example: |- { "client_id": "", "client_secret": "", "registration_access_token": "", "registration_client_uri": "https://login.salesforce.com/services/oauth2/register/", "client_id_issued_at": , "client_secret_expires_at": 0, "token_endpoint_auth_method": "client_secret_post", "redirect_uris": [ "http://localhost" ], "response_types": [ "code", "token", "id_token" ], "grant_types": [ "authorization_code", "hybrid_auth_code", "implicit", "refresh_token" ], "contacts": [ "abc@sf.com" ], "client_name": "Sample Customer", "scopes": [ "openid", "refresh_token", "id", "api" ] } deprecated: false security: [] servers: - url: https://login.salesforce.com variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /id/keys: get: tags: - Keys summary: Salesforce Keys operationId: SalesforceKeys parameters: [] responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Thu, 16 Nov 2023 15:55:30 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Access-Control-Allow-Credentials: content: text/plain: schema: type: string contentMediaType: text/plain example: 'false' Access-Control-Allow-Origin: content: text/plain: schema: type: string contentMediaType: text/plain example: '*' Expires: content: text/plain: schema: type: string contentMediaType: text/plain example: Thu, 01 Jan 1970 00:00:00 GMT Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/SuccessfulSalesforceKeys' - examples: - keys: - kty: RSA 'n': e: AQAB alg: RS256 use: sig kid: '248' - kty: RSA 'n': e: AQAB alg: RS256 use: sig kid: '244' - kty: RSA 'n': e: AQAB alg: RS256 use: sig kid: '246' - kty: RSA 'n': e: AQAB alg: RS256 use: sig kid: asset contentMediaType: application/json;charset=UTF-8 example: keys: - kty: RSA 'n': e: AQAB alg: RS256 use: sig kid: '248' - kty: RSA 'n': e: AQAB alg: RS256 use: sig kid: '244' - kty: RSA 'n': e: AQAB alg: RS256 use: sig kid: '246' - kty: RSA 'n': e: AQAB alg: RS256 use: sig kid: asset deprecated: false servers: - url: https://login.salesforce.com variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] //: get: tags: - Identifiers - Tokens summary: Salesforce Id Token operationId: IDToken parameters: - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Thu, 16 Nov 2023 15:56:09 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/SuccessfulIDToken' - examples: - id: https://login.salesforce.com/id/00D.../005... asserted_user: true user_id: 005... organization_id: 00D... username: nick_name: display_name: email: email_verified: true first_name: last_name: timezone: Europe/Paris photos: picture: https:///profilephoto/005/F thumbnail: https:///profilephoto/005/T addr_street: addr_city: addr_state: addr_country: FR addr_zip: mobile_phone: mobile_phone_verified: false is_lightning_login_user: false status: created_date: body: urls: enterprise: https:///services/Soap/c/{version}/00D... metadata: https:///services/Soap/m/{version}/00D... partner: https:///services/Soap/u/{version}/00D... rest: https:///services/data/v{version}/ sobjects: >- https:///services/data/v{version}/sobjects/ search: https:///services/data/v{version}/search/ query: https:///services/data/v{version}/query/ recent: https:///services/data/v{version}/recent/ tooling_soap: https:///services/Soap/T/{version}/00D... tooling_rest: >- https:///services/data/v{version}/tooling/ profile: https:///0052o00000DOJ1PAAX feeds: >- https:///services/data/v{version}/chatter/feeds groups: >- https:///services/data/v{version}/chatter/groups users: >- https:///services/data/v{version}/chatter/users feed_items: >- https:///services/data/v{version}/chatter/feed-items feed_elements: >- https:///services/data/v{version}/chatter/feed-elements custom_domain: https:// active: true user_type: STANDARD language: en_US locale: fr_FR_EURO utcOffset: 3600000 last_modified_date: is_app_installed: true contentMediaType: application/json;charset=UTF-8 example: id: https://login.salesforce.com/id/00D.../005... asserted_user: true user_id: 005... organization_id: 00D... username: nick_name: display_name: email: email_verified: true first_name: last_name: timezone: Europe/Paris photos: picture: https:///profilephoto/005/F thumbnail: https:///profilephoto/005/T addr_street: addr_city: addr_state: addr_country: FR addr_zip: mobile_phone: mobile_phone_verified: false is_lightning_login_user: false status: created_date: body: urls: enterprise: https:///services/Soap/c/{version}/00D... metadata: https:///services/Soap/m/{version}/00D... partner: https:///services/Soap/u/{version}/00D... rest: https:///services/data/v{version}/ sobjects: https:///services/data/v{version}/sobjects/ search: https:///services/data/v{version}/search/ query: https:///services/data/v{version}/query/ recent: https:///services/data/v{version}/recent/ tooling_soap: https:///services/Soap/T/{version}/00D... tooling_rest: https:///services/data/v{version}/tooling/ profile: https:///0052o00000DOJ1PAAX feeds: https:///services/data/v{version}/chatter/feeds groups: https:///services/data/v{version}/chatter/groups users: https:///services/data/v{version}/chatter/users feed_items: >- https:///services/data/v{version}/chatter/feed-items feed_elements: >- https:///services/data/v{version}/chatter/feed-elements custom_domain: https:// active: true user_type: STANDARD language: en_US locale: fr_FR_EURO utcOffset: 3600000 last_modified_date: is_app_installed: true deprecated: false servers: - url: https://id variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/jobs/query/: get: tags: - Get - Info - Jobs - Queries summary: Salesforce Get Job Info Query operationId: GetJobInfoQuery parameters: [] responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Fri, 17 Nov 2023 16:13:43 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=2/15000 Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/SuccessfulGetJobInfoQuery' - examples: - id: 750... operation: insert object: Account createdById: 005... createdDate: systemModstamp: state: Open concurrencyMode: Parallel contentType: CSV apiVersion: 58 jobType: Classic retries: 0 totalProcessingTime: 0 apiActiveProcessingTime: 0 apexProcessingTime: 0 contentMediaType: application/json;charset=UTF-8 example: id: 750... operation: insert object: Account createdById: 005... createdDate: systemModstamp: state: Open concurrencyMode: Parallel contentType: CSV apiVersion: 58 jobType: Classic retries: 0 totalProcessingTime: 0 apiActiveProcessingTime: 0 apexProcessingTime: 0 deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK patch: tags: - Abort - Jobs - Queries summary: Salesforce Abort a Job Query operationId: AbortaJobQuery parameters: [] requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/AbortaJobQueryRequest' - examples: - state: Aborted contentMediaType: application/json example: state: Aborted required: true responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 20 Nov 2023 15:10:26 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=29/15000 Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/AbortaJobQuery' - examples: - id: 750... operation: query object: Account createdById: 005... createdDate: systemModstamp: state: Aborted concurrencyMode: Parallel contentType: CSV apiVersion: 58 contentMediaType: application/json;charset=UTF-8 example: id: 750... operation: query object: Account createdById: 005... createdDate: systemModstamp: state: Aborted concurrencyMode: Parallel contentType: CSV apiVersion: 58 deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK delete: tags: - Deletes - Jobs - Queries summary: Salesforce Delete Job Query operationId: DeleteJobQuery parameters: [] responses: '204': description: No Content headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 20 Nov 2023 15:08:40 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block Content-Security-Policy: content: text/plain: schema: type: string contentMediaType: text/plain example: upgrade-insecure-requests X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=23/15000 content: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/jobs/query//results: get: tags: - Get - Jobs - Queries - Result summary: Salesforce Get Job Query Result operationId: GetJobQueryResult parameters: - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value - name: Accept in: header description: '' required: true schema: type: string examples: - test/csv example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/jobs/query: get: tags: - All - Get - Jobs - Queries summary: Salesforce Get All Query Jobs operationId: GetAllQueryJobs parameters: - name: isPkChunkingEnabled in: query description: >- If set to true, the request only returns information about jobs where PK Chunking is enabled required: true style: form explode: true schema: type: boolean examples: - false example: true - name: jobType in: query description: BigObjectIngest Classic V2Query required: true style: form explode: true schema: type: string example: example_value - name: concurrencyMode in: query description: serial parallel required: true style: form explode: true schema: type: string example: example_value - name: queryLocator in: query description: use the value from the nextRecordsUrl from the previous set required: true style: form explode: true schema: type: string example: example_value - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Fri, 17 Nov 2023 16:25:06 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=4/15000 Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: type: string examples: - |- { "done": true, "nextRecordsUrl": null, "records": [ { "id": "750...", "operation": "insert", "object": "Account", "createdById": "005...", "createdDate": "", "systemModstamp": "", "state": "Open", "concurrencyMode": "Parallel", "contentType": "CSV", "apiVersion": 58, "jobType": "Classic" },... ] } contentMediaType: application/json;charset=UTF-8 example: |- { "done": true, "nextRecordsUrl": null, "records": [ { "id": "750...", "operation": "insert", "object": "Account", "createdById": "005...", "createdDate": "", "systemModstamp": "", "state": "Open", "concurrencyMode": "Parallel", "contentType": "CSV", "apiVersion": 58, "jobType": "Classic" },... ] } deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK post: tags: - Create - Jobs - Queries summary: Salesforce Successful Create Job Query operationId: SuccessfulCreatejobQuery parameters: [] requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/SuccessfulCreatejobQueryRequest' - examples: - operation: query query: SELECT fields FROM object WHERE filter contentType: CSV columnDelimiter: BACKQUOTE | CARET | COMMA | PIPE | SEMICOLON | TAB lineEnding: CRLF | LF contentMediaType: application/json example: operation: query query: SELECT fields FROM object WHERE filter contentType: CSV columnDelimiter: BACKQUOTE | CARET | COMMA | PIPE | SEMICOLON | TAB lineEnding: CRLF | LF required: true responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 20 Nov 2023 15:06:06 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=18/15000 Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/SuccessfulCreatejobQuery' - examples: - id: 750... operation: query object: Account createdById: 005... createdDate: systemModstamp: state: UploadComplete concurrencyMode: Parallel contentType: CSV apiVersion: 58 lineEnding: LF columnDelimiter: COMMA contentMediaType: application/json;charset=UTF-8 example: id: 750... operation: query object: Account createdById: 005... createdDate: systemModstamp: state: UploadComplete concurrencyMode: Parallel contentType: CSV apiVersion: 58 lineEnding: LF columnDelimiter: COMMA deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/jobs/query//resultPages: get: tags: - Get - Jobs - Parallel - Queries - Results summary: Salesforce Get Parallel Results for a Query Job description: Retrieves a set of up to 5 job results pages for parallel download. operationId: GetParallelResultsforaQueryJob parameters: - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value - name: Accept in: header description: '' required: true schema: type: string examples: - application/json example: example_value responses: default: description: '' headers: {} content: application/json: schema: allOf: - $ref: '#/components/schemas/GetParallelResultsforaQueryJob' - examples: - resultPages: - resultLink: >- /jobs/query/750R0000000zxr8IAA/results?locator=aBcDeFg4N - resultLink: >- /jobs/query/750R0000000zxr8IAA/results?locator=HiJkLmN4N - resultLink: >- /jobs/query/750R0000000zxr8IAA/results?locator=oPQrStU4N - resultLink: >- /jobs/query/750R0000000zxr8IAA/results?locator=vWxYzz4N - resultLink: >- /jobs/query/750R0000000zxr8IAA/results?locator=NiKmABC4N nextRecordsUrl: >- /jobs/query/750R0000000zxr8IAA/resultpages?locator=YcApWm4N done: false contentMediaType: application/json example: resultPages: - resultLink: /jobs/query/750R0000000zxr8IAA/results?locator=aBcDeFg4N - resultLink: /jobs/query/750R0000000zxr8IAA/results?locator=HiJkLmN4N - resultLink: /jobs/query/750R0000000zxr8IAA/results?locator=oPQrStU4N - resultLink: /jobs/query/750R0000000zxr8IAA/results?locator=vWxYzz4N - resultLink: /jobs/query/750R0000000zxr8IAA/results?locator=NiKmABC4N nextRecordsUrl: /jobs/query/750R0000000zxr8IAA/resultpages?locator=YcApWm4N done: false deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /async/64.0/job: post: tags: - Bulk - Create - Jobs summary: Salesforce Bulk Create Job operationId: BulkCreateJob parameters: - name: X-SFDC-Session in: header description: '' required: true schema: type: string example: example_value - name: charset in: header description: '' required: true schema: type: string examples: - UTF-8 example: example_value requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/BulkCreateJobRequest' - examples: - operation: insert object: Account contentType: CSV contentMediaType: application/json example: operation: insert object: Account contentType: CSV required: true responses: '201': description: Created headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Thu, 16 Nov 2023 16:07:11 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Location: content: text/plain: schema: type: string contentMediaType: text/plain example: /services/async/58.0/job/7502o00000kjNCsAAM Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json: schema: allOf: - $ref: '#/components/schemas/SuccessfulBulkCreateJob' - examples: - apexProcessingTime: 0 apiActiveProcessingTime: 0 apiVersion: 58 assignmentRuleId: concurrencyMode: Parallel contentType: CSV createdById: 005... createdDate: externalIdFieldName: fastPathEnabled: false id: 750... numberBatchesCompleted: 0 numberBatchesFailed: 0 numberBatchesInProgress: 0 numberBatchesQueued: 0 numberBatchesTotal: 0 numberRecordsFailed: 0 numberRecordsProcessed: 0 numberRetries: 0 object: operation: insert state: Open systemModstamp: totalProcessingTime: 0 contentMediaType: application/json example: apexProcessingTime: 0 apiActiveProcessingTime: 0 apiVersion: 58 assignmentRuleId: concurrencyMode: Parallel contentType: CSV createdById: 005... createdDate: externalIdFieldName: fastPathEnabled: false id: 750... numberBatchesCompleted: 0 numberBatchesFailed: 0 numberBatchesInProgress: 0 numberBatchesQueued: 0 numberBatchesTotal: 0 numberRecordsFailed: 0 numberRecordsProcessed: 0 numberRetries: 0 object: operation: insert state: Open systemModstamp: totalProcessingTime: 0 deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /async/64.0/job//spec: post: tags: - Bulk - Spec summary: Salesforce Bulk Spec operationId: BulkSpec parameters: - name: X-SFDC-Session in: header description: '' required: true schema: type: string example: example_value - name: charset in: header description: '' required: true schema: type: string examples: - UTF-8 example: example_value - name: Accept-Encoding in: header description: '' required: true schema: type: string examples: - gzip example: example_value - name: Content-Encoding in: header description: '' required: true schema: type: string examples: - gzip example: example_value requestBody: description: '' content: text/csv: schema: type: string examples: - |- Salesforce Field,Csv Header,Value,Hint Name,Full Name,, contentMediaType: text/csv example: |- Salesforce Field,Csv Header,Value,Hint Name,Full Name,, required: true responses: '201': description: Created headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Thu, 16 Nov 2023 16:12:34 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block Content-Security-Policy: content: text/plain: schema: type: string contentMediaType: text/plain example: upgrade-insecure-requests X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Location: content: text/plain: schema: type: string contentMediaType: text/plain example: >- /services/async/58.0/job/7502o00000kjNCsAAM/spec/0Aj2o000000PbakCAC Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /async/64.0/job//batch: post: tags: - Batch - Bulk - Create summary: Salesforce Bulk Create Batch operationId: BulkCreateBatch parameters: - name: X-SFDC-Session in: header description: '' required: true schema: type: string example: example_value - name: Content-Type in: header description: '' required: true schema: const: text/csv type: string examples: - text/csv example: example_value - name: charset in: header description: '' required: true schema: type: string examples: - UTF-8 example: example_value requestBody: content: multipart/form-data: encoding: {} schema: required: - File type: object properties: File: type: string contentEncoding: base64 contentMediaType: multipart/form-data examples: BulkcreatebatchRequestExample: summary: Default BulkCreateBatch request x-microcks-default: true value: File: example_value required: false responses: '201': description: Created headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Thu, 16 Nov 2023 16:16:10 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Location: content: text/plain: schema: type: string contentMediaType: text/plain example: >- /services/async/58.0/job/7502o00000kjNCsAAM/batch/7512o00001DSJWnAAP Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/xml: schema: allOf: - $ref: '#/components/schemas/batchInfo' - xml: name: batchInfo attribute: false wrapped: false examples: - |- 751... 750... Queued datetime datetime 0 0 0 0 0 contentMediaType: application/xml example: |- 751... 750... Queued datetime datetime 0 0 0 0 0 deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK get: tags: - Batch - Bulk - Checks - Status summary: Salesforce Bulk Check Batch Status operationId: BulkCheckBatchStatus parameters: - name: X-SFDC-Session in: header description: '' required: true schema: type: string example: example_value - name: Accept-Encoding in: header description: '' required: true schema: type: string examples: - gzip example: example_value - name: Content-Encoding in: header description: '' required: true schema: type: string examples: - gzip example: example_value responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Thu, 16 Nov 2023 16:19:29 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/xml: schema: allOf: - $ref: '#/components/schemas/batchInfoList' - xml: name: batchInfoList attribute: false wrapped: false examples: - |- 751... 750... Completed datetime datetime 1 0 403 225 64 contentMediaType: application/xml example: |- 751... 750... Completed datetime datetime 1 0 403 225 64 deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /async/64.0/job/: post: tags: - Bulk - Close - Jobs summary: Salesforce Bulk Close Job operationId: BulkCloseJob parameters: - name: X-SFDC-Session in: header description: '' required: true schema: type: string example: example_value - name: charset in: header description: '' required: true schema: type: string examples: - UTF-8 example: example_value requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/BulkCloseJobRequest' - examples: - state: Closed contentMediaType: application/json example: state: Closed required: true responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Thu, 16 Nov 2023 16:23:52 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json: schema: allOf: - $ref: '#/components/schemas/SuccessfulBulkCloseJob' - examples: - apexProcessingTime: 64 apiActiveProcessingTime: 225 apiVersion: 58 assignmentRuleId: concurrencyMode: Parallel contentType: CSV createdById: 005... createdDate: externalIdFieldName: fastPathEnabled: false id: 750... numberBatchesCompleted: 1 numberBatchesFailed: 0 numberBatchesInProgress: 0 numberBatchesQueued: 0 numberBatchesTotal: 1 numberRecordsFailed: 0 numberRecordsProcessed: 1 numberRetries: 0 object: operation: insert state: Closed systemModstamp: totalProcessingTime: 403 contentMediaType: application/json example: apexProcessingTime: 64 apiActiveProcessingTime: 225 apiVersion: 58 assignmentRuleId: concurrencyMode: Parallel contentType: CSV createdById: 005... createdDate: externalIdFieldName: fastPathEnabled: false id: 750... numberBatchesCompleted: 1 numberBatchesFailed: 0 numberBatchesInProgress: 0 numberBatchesQueued: 0 numberBatchesTotal: 1 numberRecordsFailed: 0 numberRecordsProcessed: 1 numberRetries: 0 object: operation: insert state: Closed systemModstamp: totalProcessingTime: 403 deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /async/64.0/job//batch/{_batchId}/result: get: tags: - Batch - Bulk - Result - Retrieves summary: Salesforce Bulk Retrieve Batch Result operationId: BulkRetrieveBatchResult parameters: - name: X-SFDC-Session in: header description: '' required: true schema: type: string example: example_value - name: Accept-Encoding in: header description: '' required: true schema: type: string examples: - gzip example: example_value - name: Content-Encoding in: header description: '' required: true schema: type: string examples: - gzip example: example_value - name: _batchId in: path description: '' required: true schema: type: string example: '500123' responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Thu, 16 Nov 2023 16:20:11 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: text/csv: schema: type: string examples: - | "Id","Success","Created","Error" "001...","true","true","" contentMediaType: text/csv example: | "Id","Success","Created","Error" "001...","true","true","" deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /async/64.0/job//batch/{_batchId}/result/{batchResultId}: get: tags: - Batch - Bulk - Data - Result - Retrieves summary: Salesforce Bulk Retrieve Batch Result Data operationId: BulkRetrieveBatchResultData parameters: - name: batchResultId in: path description: '' required: true schema: type: string examples: - 'null' example: '500123' - name: X-SFDC-Session in: header description: '' required: true schema: type: string example: example_value - name: Accept-Encoding in: header description: '' required: true schema: type: string examples: - gzip example: example_value - name: Content-Encoding in: header description: '' required: true schema: type: string examples: - gzip example: example_value - name: _batchId in: path description: '' required: true schema: type: string example: '500123' responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Thu, 16 Nov 2023 16:36:36 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: text/csv; charset=UTF-8: schema: type: string examples: - | "Id","Name" "001...","GenePoint" "001...","United Oil & Gas, UK" "001...","United Oil & Gas, Singapore" "001...","Edge Communications" "001...","Burlington Textiles Corp of America" "001...","Pyramid Construction Inc." "001...","Dickenson plc" "001...","Grand Hotels & Resorts Ltd" "001...","Express Logistics and Transport" "001...","University of Arizona" "001...","United Oil & Gas Corp." "001...","sForce" "001...","Exemple de comptes pour les autorisations" "001...","Tom Jones" contentMediaType: text/csv; charset=UTF-8 example: | "Id","Name" "001...","GenePoint" "001...","United Oil & Gas, UK" "001...","United Oil & Gas, Singapore" "001...","Edge Communications" "001...","Burlington Textiles Corp of America" "001...","Pyramid Construction Inc." "001...","Dickenson plc" "001...","Grand Hotels & Resorts Ltd" "001...","Express Logistics and Transport" "001...","University of Arizona" "001...","United Oil & Gas Corp." "001...","sForce" "001...","Exemple de comptes pour les autorisations" "001...","Tom Jones" deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/jobs/ingest: post: tags: - Create - Jobs summary: Salesforce Create Job operationId: Createjob parameters: [] requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/CreatejobRequest' - examples: - object: Asset operation: update contentMediaType: application/json example: object: Asset operation: update required: true responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 20 Nov 2023 14:58:56 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=1/15000 Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/SuccessfulCreatejob' - examples: - id: 750... operation: insert object: Account createdById: 005... createdDate: systemModstamp: state: Open concurrencyMode: Parallel contentType: CSV apiVersion: 58 contentUrl: services/data/v58.0/jobs/ingest/750.../batches lineEnding: LF columnDelimiter: COMMA contentMediaType: application/json;charset=UTF-8 example: id: 750... operation: insert object: Account createdById: 005... createdDate: systemModstamp: state: Open concurrencyMode: Parallel contentType: CSV apiVersion: 58 contentUrl: services/data/v58.0/jobs/ingest/750.../batches lineEnding: LF columnDelimiter: COMMA deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK get: tags: - All - Get - Jobs summary: Salesforce Get All Jobs operationId: GetAllJobs parameters: [] responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 20 Nov 2023 15:02:02 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=4/15000 Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/SuccessfullGetAllJobs' - examples: - done: true nextRecordsUrl: records: - id: 750... operation: insert object: Account createdById: 005... createdDate: systemModstamp: state: Open concurrencyMode: Parallel contentType: CSV apiVersion: 58 jobType: Classic contentMediaType: application/json;charset=UTF-8 example: done: true nextRecordsUrl: records: - id: 750... operation: insert object: Account createdById: 005... createdDate: systemModstamp: state: Open concurrencyMode: Parallel contentType: CSV apiVersion: 58 jobType: Classic deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/jobs/ingest//batches: put: tags: - Data - Jobs - Upload summary: Salesforce Upload Job Data operationId: UploadJobData parameters: - name: Content-Type in: header description: '' required: true schema: const: text/csv type: string examples: - text/csv example: example_value requestBody: content: multipart/form-data: encoding: {} schema: required: - File type: object properties: File: type: string contentEncoding: base64 contentMediaType: multipart/form-data examples: UploadjobdataRequestExample: summary: Default UploadJobData request x-microcks-default: true value: File: example_value required: false responses: '201': description: Created headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 20 Nov 2023 14:59:59 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block Content-Security-Policy: content: text/plain: schema: type: string contentMediaType: text/plain example: upgrade-insecure-requests X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=2/15000 Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/jobs/ingest/: patch: tags: - Abort - Close - Jobs summary: Salesforce Close or Abort a Job operationId: CloseorAbortaJob parameters: [] requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/CloseorAbortaJobRequest' - examples: - state: UploadComplete contentMediaType: application/json example: state: UploadComplete required: true responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 20 Nov 2023 15:00:44 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=2/15000 Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/SuccessfulCloseorAbortaJob' - examples: - id: 750... operation: insert object: Account createdById: 005... createdDate: systemModstamp: state: UploadComplete concurrencyMode: Parallel contentType: CSV apiVersion: 58 contentMediaType: application/json;charset=UTF-8 example: id: 750... operation: insert object: Account createdById: 005... createdDate: systemModstamp: state: UploadComplete concurrencyMode: Parallel contentType: CSV apiVersion: 58 deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK delete: tags: - Deletes - Jobs summary: Salesforce Delete Job operationId: DeleteJob parameters: [] responses: '204': description: No Content headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 20 Nov 2023 15:01:36 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block Content-Security-Policy: content: text/plain: schema: type: string contentMediaType: text/plain example: upgrade-insecure-requests X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=4/15000 content: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK get: tags: - Get - Info - Jobs summary: Salesforce Get Job Info operationId: GetJobInfo parameters: [] responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 20 Nov 2023 15:03:34 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=8/15000 Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/SuccessfulGetJobInfo' - examples: - id: 750... operation: insert object: Asset createdById: 005... createdDate: systemModstamp: state: JobComplete concurrencyMode: Parallel contentType: CSV apiVersion: 58 jobType: V2Ingest lineEnding: LF columnDelimiter: COMMA numberRecordsProcessed: 1 numberRecordsFailed: 1 retries: 0 totalProcessingTime: 100 apiActiveProcessingTime: 43 apexProcessingTime: 0 contentMediaType: application/json;charset=UTF-8 example: id: 750... operation: insert object: Asset createdById: 005... createdDate: systemModstamp: state: JobComplete concurrencyMode: Parallel contentType: CSV apiVersion: 58 jobType: V2Ingest lineEnding: LF columnDelimiter: COMMA numberRecordsProcessed: 1 numberRecordsFailed: 1 retries: 0 totalProcessingTime: 100 apiActiveProcessingTime: 43 apexProcessingTime: 0 deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/jobs/ingest//successfulResults: get: tags: - Get - Jobs - Record - Results summary: Salesforce Get Job Successful Record Results operationId: GetJobSuccessfulRecordResults parameters: [] responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 20 Nov 2023 15:04:15 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=12/15000 Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: text/csv: schema: type: string examples: - | "sf__Id","sf__Created",Name contentMediaType: text/csv example: | "sf__Id","sf__Created",Name deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/jobs/ingest//failedResults: get: tags: - Failed - Get - Jobs - Record - Results summary: Salesforce Get Job Failed Record Results operationId: GetJobFailedRecordResults parameters: [] responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 20 Nov 2023 15:04:29 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=12/15000 Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: text/csv: schema: type: string examples: - | "sf__Id","sf__Error",Name contentMediaType: text/csv example: | "sf__Id","sf__Error",Name deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/jobs/ingest//unprocessedrecords: get: tags: - Get - Jobs - Record - Results summary: Salesforce Get Job Unprocessed Record Results operationId: GetJobUnprocessedRecordResults parameters: [] responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 20 Nov 2023 15:04:51 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=15/15000 Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: text/csv: schema: type: string examples: - | Name contentMediaType: text/csv example: | Name deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/composite: post: tags: - Composite summary: Salesforce Composite description: >- Executes a series of REST API requests in a single call. You can use the output of one request as the input to a subsequent request. The response bodies and HTTP statuses of the requests are returned in a single response body. The entire request counts as a single call toward your API limits. The requests in a composite call are called subrequests. All subrequests are executed in the context of the same user. In a subrequest’s body, you specify a reference ID that maps to the subrequest’s response. You can then refer to the ID in the url or body fields of later subrequests by using a JavaScript-like reference notation. https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_composite_composite.htm operationId: Composite parameters: - name: Authorization in: header description: >- Only used for Postman Notebooks. Auth is defined at collection-level and inherited down. required: true schema: type: string example: example_value requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/CompositeRequest' - examples: - compositeRequest: - method: POST url: /services/data/v64.0/sobjects/Account referenceId: refAccount body: Name: Sample Account - method: POST url: /services/data/v64.0/sobjects/Contact referenceId: refContact body: LastName: Sample Contact AccountId: '@{refAccount.id}' contentMediaType: application/json example: compositeRequest: - method: POST url: /services/data/v64.0/sobjects/Account referenceId: refAccount body: Name: Sample Account - method: POST url: /services/data/v64.0/sobjects/Contact referenceId: refContact body: LastName: Sample Contact AccountId: '@{refAccount.id}' required: true responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 20 Nov 2023 15:18:26 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=33/15000 Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/SuccessfulComposite' - examples: - compositeResponse: - body: id: 001... success: true errors: [] httpHeaders: Location: /services/data/v53.0/sobjects/Account/001... httpStatusCode: 201 referenceId: refAccount - body: id: 0032o00003WauzJAAR success: true errors: [] httpHeaders: Location: /services/data/v53.0/sobjects/Contact/003... httpStatusCode: 201 referenceId: refContact contentMediaType: application/json;charset=UTF-8 example: compositeResponse: - body: id: 001... success: true errors: [] httpHeaders: Location: /services/data/v53.0/sobjects/Account/001... httpStatusCode: 201 referenceId: refAccount - body: id: 0032o00003WauzJAAR success: true errors: [] httpHeaders: Location: /services/data/v53.0/sobjects/Contact/003... httpStatusCode: 201 referenceId: refContact deprecated: false security: [] servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/composite/graph: post: tags: - Composite - Graph summary: Salesforce Composite Graph description: >- Composite graphs provide an enhanced way to perform composite requests, which execute a series of REST API requests in a single call. Regular composite requests allow you to execute a series of REST API requests in a single call. And you can use the output of one request as the input to a subsequent request. Composite graphs extend this by allowing you to assemble a more complicated and complete series of related objects and records. Composite graphs also enable you to ensure that the steps in a given set of operations are either all completed or all not completed. This avoids requiring you to check for a mix of successful and unsuccessful results. Regular composite requests have a limit of 25 subrequests. Composite graphs increase this limit to 500. This gives a single API call much greater power. https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_composite_graph_introduction.htm operationId: CompositeGraph parameters: [] requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/CompositeGraphRequest' - examples: - graphs: - graphId: graph1 compositeRequest: - method: POST url: /services/data/v64.0/sobjects/Account/ referenceId: newAccount body: Name: ACME Inc. Custom__c: Hello world - method: GET url: >- /services/data/v64.0/sobjects/Account/@{newAccount.id} referenceId: newAccountInfo contentMediaType: application/json example: graphs: - graphId: graph1 compositeRequest: - method: POST url: /services/data/v64.0/sobjects/Account/ referenceId: newAccount body: Name: ACME Inc. Custom__c: Hello world - method: GET url: /services/data/v64.0/sobjects/Account/@{newAccount.id} referenceId: newAccountInfo required: true responses: '200': description: OK headers: cache-control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private content-type: content: text/plain: schema: type: string contentMediaType: text/plain example: application/json;charset=UTF-8 content: application/json: schema: allOf: - $ref: '#/components/schemas/SuccessfulCompositeGraph' - examples: - graphs: - graphId: graph1 graphResponse: compositeResponse: - body: id: 0014H00002x6HUhQAM success: true errors: [] httpHeaders: Location: >- /services/data/v50.0/sobjects/Account/0014H00002x6HUhQAM httpStatusCode: 201 referenceId: newAccount - body: id: 0034H00002JsInQQAV success: true errors: [] httpHeaders: Location: >- /services/data/v50.0/sobjects/Contact/0034H00002JsInQQAV httpStatusCode: 201 referenceId: newContact isSuccessful: true contentMediaType: application/json example: graphs: - graphId: graph1 graphResponse: compositeResponse: - body: id: 0014H00002x6HUhQAM success: true errors: [] httpHeaders: Location: >- /services/data/v50.0/sobjects/Account/0014H00002x6HUhQAM httpStatusCode: 201 referenceId: newAccount - body: id: 0034H00002JsInQQAV success: true errors: [] httpHeaders: Location: >- /services/data/v50.0/sobjects/Contact/0034H00002JsInQQAV httpStatusCode: 201 referenceId: newContact isSuccessful: true deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/composite/batch: post: tags: - Batch - Composite summary: Salesforce Composite Batch description: >- Executes up to 25 subrequests in a single request. The response bodies and HTTP statuses of the subrequests in the batch are returned in a single response body. Each subrequest counts against rate limits. The requests in a batch are called subrequests. All subrequests are executed in the context of the same user. Subrequests are independent, and you can’t pass information between them. Subrequests execute serially in their order in the request body. When a subrequest executes successfully, it commits its data. Commits are reflected in the output of later subrequests. If a subrequest fails, commits made by previous subrequests are not rolled back. If a batch request doesn’t complete within 10 minutes, the batch times out and the remaining subrequests aren’t executed. https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_composite_batch.htm operationId: CompositeBatch parameters: [] requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/CompositeBatchRequest' - examples: - haltOnError: true batchRequests: - method: GET url: v64.0/query/?q=SELECT+Id,+Name+FROM+Account LIMIT 2 - method: GET url: >- v64.0/query/?q=SELECT+Id,+Name+FROM+Opportunity LIMIT 2 contentMediaType: application/json example: haltOnError: true batchRequests: - method: GET url: v64.0/query/?q=SELECT+Id,+Name+FROM+Account LIMIT 2 - method: GET url: v64.0/query/?q=SELECT+Id,+Name+FROM+Opportunity LIMIT 2 required: true responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 20 Nov 2023 15:19:46 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=34/15000 Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: type: string examples: - |- { "hasErrors": false, "results": [ { "statusCode": 200, "result": { "totalSize": 2, "done": true, "records": [ { "attributes": { "type": "Account", "url": "/services/data/v58.0/sobjects/Account/001..." }, "Id": "001...", "Name": "Sample Account" }, ... ] } }, { "statusCode": 200, "result": { "totalSize": 2, "done": true, "records": [ { "attributes": { "type": "Opportunity", "url": "/services/data/v58.0/sobjects/Opportunity/006..." }, "Id": "006...", "Name": "Edge Emergency Generator" }, ... ] } } ] } contentMediaType: application/json;charset=UTF-8 example: |- { "hasErrors": false, "results": [ { "statusCode": 200, "result": { "totalSize": 2, "done": true, "records": [ { "attributes": { "type": "Account", "url": "/services/data/v58.0/sobjects/Account/001..." }, "Id": "001...", "Name": "Sample Account" }, ... ] } }, { "statusCode": 200, "result": { "totalSize": 2, "done": true, "records": [ { "attributes": { "type": "Opportunity", "url": "/services/data/v58.0/sobjects/Opportunity/006..." }, "Id": "006...", "Name": "Edge Emergency Generator" }, ... ] } } ] } deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/composite/tree/{SOBJECT_API_NAME}: post: tags: - Trees summary: Salesforce Sobject Tree description: >- Creates one or more sObject trees with root records of the specified type. An sObject tree is a collection of nested, parent-child records with a single root record. In the request data, you supply the record hierarchies, required and optional field values, each record’s type, and a reference ID for each record. Upon success, the response contains the IDs of the created records. If an error occurs while creating a record, the entire request fails. In this case, the response contains only the reference ID of the record that caused the error and the error information. The request can contain the following: Up to a total of 200 records across all trees Up to five records of different types SObject trees up to five levels deep Because an sObject tree can contain a single record, you can use this resource to create up to 200 unrelated records of the same type. When the request is processed and records are created, triggers, processes, and workflow rules fire separately for each of the following groups of records. Root records across all sObject trees in the request All second-level records of the same type—for example, second-level Contacts across all sObject trees in the request All third-level records of the same type All fourth-level records of the same type All fifth-level records of the same type https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_composite_sobject_tree.htm operationId: SObjectTree parameters: - name: SOBJECT_API_NAME in: path description: '' required: true schema: type: string examples: - Account example: example_value requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/SObjectTreeRequest' - examples: - records: - attributes: type: Account referenceId: ref1 name: SampleAccount1 phone: '1234567890' website: www.salesforce.com numberOfEmployees: '100' industry: Banking Contacts: records: - attributes: type: Contact referenceId: ref2 lastname: Smith Title: President email: sample@salesforce.com - attributes: type: Contact referenceId: ref3 lastname: Evans title: Vice President email: sample@salesforce.com - attributes: type: Account referenceId: ref4 name: SampleAccount2 phone: '1234567890' website: www.salesforce.com numberOfEmployees: '52000' industry: Banking childAccounts: records: - attributes: type: Account referenceId: ref5 name: SampleChildAccount1 phone: '1234567890' website: www.salesforce.com numberOfEmployees: '100' industry: Banking Contacts: records: - attributes: type: Contact referenceId: ref6 lastname: Jones title: President email: sample@salesforce.com contentMediaType: application/json example: records: - attributes: type: Account referenceId: ref1 name: SampleAccount1 phone: '1234567890' website: www.salesforce.com numberOfEmployees: '100' industry: Banking Contacts: records: - attributes: type: Contact referenceId: ref2 lastname: Smith Title: President email: sample@salesforce.com - attributes: type: Contact referenceId: ref3 lastname: Evans title: Vice President email: sample@salesforce.com - attributes: type: Account referenceId: ref4 name: SampleAccount2 phone: '1234567890' website: www.salesforce.com numberOfEmployees: '52000' industry: Banking childAccounts: records: - attributes: type: Account referenceId: ref5 name: SampleChildAccount1 phone: '1234567890' website: www.salesforce.com numberOfEmployees: '100' industry: Banking Contacts: records: - attributes: type: Contact referenceId: ref6 lastname: Jones title: President email: sample@salesforce.com required: true responses: '201': description: Created headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 20 Nov 2023 15:23:41 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=41/15000 Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/SuccessfulSObjectTree' - examples: - hasErrors: false results: - referenceId: ref1 id: 001... - referenceId: ref4 id: 001... - referenceId: ref2 id: 003.. - referenceId: ref3 id: 003... - referenceId: ref5 id: 001... - referenceId: ref6 id: 003... contentMediaType: application/json;charset=UTF-8 example: hasErrors: false results: - referenceId: ref1 id: 001... - referenceId: ref4 id: 001... - referenceId: ref2 id: 003.. - referenceId: ref3 id: 003... - referenceId: ref5 id: 001... - referenceId: ref6 id: 003... deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/composite/sobjects: post: tags: - Collections - Create summary: Salesforce Sobject Collections Create description: >- Executes actions on multiple records in one request. Use SObject Collections to reduce the number of round-trips between the client and server. This resource is available in API version 42.0 and later. https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_composite_sobjects_collections.htm operationId: SObjectCollectionsCreate parameters: [] requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/SObjectCollectionsCreateRequest' - examples: - allOrNone: false records: - attributes: type: Account Name: example.com BillingCity: San Francisco - attributes: type: Contact LastName: Johnson FirstName: Erica contentMediaType: application/json example: allOrNone: false records: - attributes: type: Account Name: example.com BillingCity: San Francisco - attributes: type: Contact LastName: Johnson FirstName: Erica required: true responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 20 Nov 2023 15:25:46 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=44/15000 Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: type: array items: $ref: '#/components/schemas/SuccessfulSObjectCollectionsCreate' description: '' examples: - - id: 001... success: true errors: [] - id: 003... success: true errors: [] contentMediaType: application/json;charset=UTF-8 example: - id: 001... success: true errors: [] - id: 003... success: true errors: [] deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK patch: tags: - Collections - Update summary: Salesforce Sobject Collections Update description: >- Executes actions on multiple records in one request. Use SObject Collections to reduce the number of round-trips between the client and server. This resource is available in API version 42.0 and later. https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_composite_sobjects_collections.htm operationId: SObjectCollectionsUpdate parameters: [] requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/SObjectCollectionsUpdateRequest' - examples: - allOrNone: false records: - attributes: type: Account id: NumberOfEmployees: 27000 contentMediaType: application/json example: allOrNone: false records: - attributes: type: Account id: NumberOfEmployees: 27000 required: true responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 20 Nov 2023 15:28:31 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=46/15000 Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: type: array items: $ref: '#/components/schemas/SObjectCollectionsUpdate' description: '' examples: - - id: 001... success: true errors: [] contentMediaType: application/json;charset=UTF-8 example: - id: 001... success: true errors: [] deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK delete: tags: - Collections - Deletes summary: Salesforce Sobject Collections Delete description: >- Executes actions on multiple records in one request. Use SObject Collections to reduce the number of round-trips between the client and server. This resource is available in API version 42.0 and later. https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_composite_sobjects_collections.htm operationId: SObjectCollectionsDelete parameters: - name: ids in: query description: '' required: true style: form explode: true schema: type: string examples: - 0012o00003OBzVSAA1 example: example_value - name: allOrNone in: query description: '' required: true style: form explode: true schema: type: boolean examples: - true example: true - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 20 Nov 2023 15:31:21 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=49/15000 Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: type: array items: $ref: '#/components/schemas/SuccessfulSObjectCollectionsDelete' description: '' examples: - - id: 001... success: true errors: [] contentMediaType: application/json;charset=UTF-8 example: - id: 001... success: true errors: [] deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/composite/sobjects/{SOBJECT_API_NAME}: get: tags: - Collections - Retrieves summary: Salesforce Sobject Collections Retrieve description: >- Executes actions on multiple records in one request. Use SObject Collections to reduce the number of round-trips between the client and server. This resource is available in API version 42.0 and later. https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_composite_sobjects_collections.htm operationId: SObjectCollectionsRetrieve parameters: - name: ids in: query description: '' required: true style: form explode: true schema: type: string example: example_value - name: fields in: query description: '' required: true style: form explode: true schema: type: string example: example_value - name: SOBJECT_API_NAME in: path description: '' required: true schema: type: string example: example_value - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 20 Nov 2023 15:27:03 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=44/15000 Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: type: array items: $ref: '#/components/schemas/SuccessfulSObjectCollectionsRetrieve' description: '' examples: - - attributes: type: Account url: /services/data/v58.0/sobjects/Account/001... Name: Sample Account Id: 001... contentMediaType: application/json;charset=UTF-8 example: - attributes: type: Account url: /services/data/v58.0/sobjects/Account/001... Name: Sample Account Id: 001... deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/composite/sobjects/{SOBJECT_API_NAME}/{FIELD_NAME}: patch: tags: - Collections summary: Salesforce Sobject Collections Upsert description: >- Use a PATCH request with sObject Collections to either create or update (upsert) up to 200 records based on an external ID field. This method returns a list of UpsertResult objects. You can choose whether to roll back the entire request when an error occurs. This request is available in API version 46 and later. [https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_composite_sobjects_collections_upsert.htm](https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_composite_sobjects_collections_upsert.htm) operationId: SObjectCollectionsUpsert parameters: - name: SOBJECT_API_NAME in: path description: '' required: true schema: type: string examples: - Account example: example_value - name: FIELD_NAME in: path description: '' required: true schema: type: string examples: - Id example: example_value requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/SObjectCollectionsUpsertRequest' - examples: - allOrNone: false records: - attributes: type: Account Name: Test Upsert Id: 0012o00003OBzVSAA1 contentMediaType: application/json example: allOrNone: false records: - attributes: type: Account Name: Test Upsert Id: 0012o00003OBzVSAA1 required: true responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 20 Nov 2023 15:29:54 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=48/15000 Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: type: array items: $ref: '#/components/schemas/SuccessfulSObjectCollectionsUpsert' description: '' examples: - - id: 001... success: true errors: [] created: false contentMediaType: application/json;charset=UTF-8 example: - id: 001... success: true errors: [] created: false deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/connect/files/users/me: post: tags: - Files - General - Users summary: Salesforce Users Files, General description: >- Upload a file, including references to external files, to the Files home or get information about files a user owns. These files don’t include files shared with a user, files a user follows, or general organization files. When you upload a file to the Files home, it is private and available only to the file owner. To upload a file, send it in a multipart/form-data request. You can include the description and title of the file in the multipart/form-data request as a JSON or XML request body. You can also send the information as request parameters. For information about how to create the multipart/form-data message, see Uploading Binary Files. https://developer.salesforce.com/docs/atlas.en-us.chatterapi.meta/chatterapi/connect_resources_users_files_general.htm operationId: UsersFiles,General parameters: [] requestBody: content: multipart/form-data: encoding: {} schema: required: - fileData type: object properties: fileData: type: string contentEncoding: base64 contentMediaType: multipart/form-data examples: Usersfiles,generalRequestExample: summary: Default UsersFiles,General request x-microcks-default: true value: fileData: example_value required: false responses: '201': description: Created headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 20 Nov 2023 16:28:22 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/SuccessfulUsersFilesGeneral' - examples: - checksum: 71a50dbba44c78128b221b7df7bb51f1 contentHubRepository: contentModifiedDate: '2023-11-20T16:28:22.000Z' contentSize: 95 contentUrl: contentVersionId: 068xx0000004C92AAE createdDate: '2023-11-20T16:28:22.000Z' description: downloadUrl: >- /services/data/v58.0/connect/files/069.../content?versionNumber=1 externalDocumentUrl: externalFilePermissionInformation: fileAsset: fileExtension: png fileType: Png flashRenditionStatus: Na id: 069... isFileAsset: false isInMyFileSync: false isMajorVersion: true mimeType: image/png moderationFlags: modifiedDate: '2023-11-20T16:28:22.000Z' motif: color: '939393' largeIconUrl: /img/content/content64.png mediumIconUrl: /img/content/content32.png smallIconUrl: /img/icon/files16.png svgIconUrl: mySubscription: name: 1x1.png origin: Chatter owner: additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: Firstname id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/729.../F mediumPhotoUrl: https:///profilephoto/729.../M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/729.../T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: >- /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal pageCount: 0 parentFolder: pdfRenditionStatus: Na publishStatus: PrivateAccess renditionUrl: >- /services/data/v58.0/connect/files/069.../rendition?type=THUMB120BY90 renditionUrl240By180: >- /services/data/v58.0/connect/files/069.../rendition?type=THUMB240BY180 renditionUrl720By480: >- /services/data/v58.0/connect/files/069.../rendition?type=THUMB720BY480 repositoryFileId: repositoryFileUrl: sharingOption: Allowed sharingPrivacy: None sharingRole: Owner systemModstamp: '2023-11-20T16:28:23.000Z' textPreview: thumb120By90RenditionStatus: NotScheduled thumb240By180RenditionStatus: NotScheduled thumb720By480RenditionStatus: NotScheduled title: 1x1.png topics: currentPageUrl: nextPageUrl: topics: [] type: File url: >- /services/data/v58.0/connect/files/069...?versionNumber=1 versionNumber: '1' contentMediaType: application/json;charset=UTF-8 example: checksum: 71a50dbba44c78128b221b7df7bb51f1 contentHubRepository: contentModifiedDate: '2023-11-20T16:28:22.000Z' contentSize: 95 contentUrl: contentVersionId: 068xx0000004C92AAE createdDate: '2023-11-20T16:28:22.000Z' description: downloadUrl: >- /services/data/v58.0/connect/files/069.../content?versionNumber=1 externalDocumentUrl: externalFilePermissionInformation: fileAsset: fileExtension: png fileType: Png flashRenditionStatus: Na id: 069... isFileAsset: false isInMyFileSync: false isMajorVersion: true mimeType: image/png moderationFlags: modifiedDate: '2023-11-20T16:28:22.000Z' motif: color: '939393' largeIconUrl: /img/content/content64.png mediumIconUrl: /img/content/content32.png smallIconUrl: /img/icon/files16.png svgIconUrl: mySubscription: name: 1x1.png origin: Chatter owner: additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: Firstname id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/729.../F mediumPhotoUrl: https:///profilephoto/729.../M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/729.../T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal pageCount: 0 parentFolder: pdfRenditionStatus: Na publishStatus: PrivateAccess renditionUrl: >- /services/data/v58.0/connect/files/069.../rendition?type=THUMB120BY90 renditionUrl240By180: >- /services/data/v58.0/connect/files/069.../rendition?type=THUMB240BY180 renditionUrl720By480: >- /services/data/v58.0/connect/files/069.../rendition?type=THUMB720BY480 repositoryFileId: repositoryFileUrl: sharingOption: Allowed sharingPrivacy: None sharingRole: Owner systemModstamp: '2023-11-20T16:28:23.000Z' textPreview: thumb120By90RenditionStatus: NotScheduled thumb240By180RenditionStatus: NotScheduled thumb720By480RenditionStatus: NotScheduled title: 1x1.png topics: currentPageUrl: nextPageUrl: topics: [] type: File url: /services/data/v58.0/connect/files/069...?versionNumber=1 versionNumber: '1' deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/connect/files/{FILE_ID}: get: tags: - Files - Information summary: Salesforce File Information description: >- Get information about a specified file, including references to external files. Upload a new version of an existing file, including references to external files. Rename a file, move a file to a different folder, and delete a file. To upload a new version of an existing file, make a POST request. Upload the new version as a binary part in a multipart/form-data request. See Uploading Binary Files. To upload a new file to the Files home, use /connect/files/users/me.Get information about a specified file, including references to external files. https://developer.salesforce.com/docs/atlas.en-us.chatterapi.meta/chatterapi/connect_resources_files_information.htm operationId: FileInformation parameters: - name: FILE_ID in: path description: '' required: true schema: type: string example: '500123' responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 20 Nov 2023 16:33:38 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/FileInformation' - examples: - checksum: 71a50dbba44c78128b221b7df7bb51f1 contentHubRepository: contentModifiedDate: '2023-11-20T16:28:22.000Z' contentSize: 95 contentUrl: createdDate: '2023-11-20T16:28:22.000Z' description: downloadUrl: >- /services/data/v58.0/connect/files/069.../content?versionNumber=1 externalDocumentUrl: externalFilePermissionInformation: fileAsset: fileExtension: png fileType: Png flashRenditionStatus: Na id: 069... isFileAsset: false isInMyFileSync: false isMajorVersion: true mimeType: image/png moderationFlags: modifiedDate: '2023-11-20T16:28:22.000Z' motif: color: '939393' largeIconUrl: /img/content/content64.png mediumIconUrl: /img/content/content32.png smallIconUrl: /img/icon/files16.png svgIconUrl: mySubscription: name: 1x1.png origin: Chatter owner: additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: firstName id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/729.../F mediumPhotoUrl: https:///profilephoto/729.../M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/729.../T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: >- /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal pageCount: 0 parentFolder: pdfRenditionStatus: Na publishStatus: PrivateAccess renditionUrl: >- /services/data/v58.0/connect/files/069.../rendition?type=THUMB120BY90 renditionUrl240By180: >- /services/data/v58.0/connect/files/069.../rendition?type=THUMB240BY180 renditionUrl720By480: >- /services/data/v58.0/connect/files/069.../rendition?type=THUMB720BY480 repositoryFileId: repositoryFileUrl: sharingOption: Allowed sharingPrivacy: None sharingRole: Owner systemModstamp: '2023-11-20T16:28:23.000Z' textPreview: thumb120By90RenditionStatus: NotScheduled thumb240By180RenditionStatus: NotScheduled thumb720By480RenditionStatus: NotScheduled title: 1x1.png topics: currentPageUrl: nextPageUrl: topics: [] type: File url: >- /services/data/v58.0/connect/files/069...?versionNumber=1 versionNumber: '1' contentMediaType: application/json;charset=UTF-8 example: checksum: 71a50dbba44c78128b221b7df7bb51f1 contentHubRepository: contentModifiedDate: '2023-11-20T16:28:22.000Z' contentSize: 95 contentUrl: createdDate: '2023-11-20T16:28:22.000Z' description: downloadUrl: >- /services/data/v58.0/connect/files/069.../content?versionNumber=1 externalDocumentUrl: externalFilePermissionInformation: fileAsset: fileExtension: png fileType: Png flashRenditionStatus: Na id: 069... isFileAsset: false isInMyFileSync: false isMajorVersion: true mimeType: image/png moderationFlags: modifiedDate: '2023-11-20T16:28:22.000Z' motif: color: '939393' largeIconUrl: /img/content/content64.png mediumIconUrl: /img/content/content32.png smallIconUrl: /img/icon/files16.png svgIconUrl: mySubscription: name: 1x1.png origin: Chatter owner: additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: firstName id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/729.../F mediumPhotoUrl: https:///profilephoto/729.../M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/729.../T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal pageCount: 0 parentFolder: pdfRenditionStatus: Na publishStatus: PrivateAccess renditionUrl: >- /services/data/v58.0/connect/files/069.../rendition?type=THUMB120BY90 renditionUrl240By180: >- /services/data/v58.0/connect/files/069.../rendition?type=THUMB240BY180 renditionUrl720By480: >- /services/data/v58.0/connect/files/069.../rendition?type=THUMB720BY480 repositoryFileId: repositoryFileUrl: sharingOption: Allowed sharingPrivacy: None sharingRole: Owner systemModstamp: '2023-11-20T16:28:23.000Z' textPreview: thumb120By90RenditionStatus: NotScheduled thumb240By180RenditionStatus: NotScheduled thumb720By480RenditionStatus: NotScheduled title: 1x1.png topics: currentPageUrl: nextPageUrl: topics: [] type: File url: /services/data/v58.0/connect/files/069...?versionNumber=1 versionNumber: '1' deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK delete: tags: - Deletes - Files - Information summary: Salesforce File Information - Delete description: >- Get information about a specified file, including references to external files. Upload a new version of an existing file, including references to external files. Rename a file, move a file to a different folder, and delete a file. To upload a new version of an existing file, make a POST request. Upload the new version as a binary part in a multipart/form-data request. See Uploading Binary Files. To upload a new file to the Files home, use /connect/files/users/me.Get information about a specified file, including references to external files. https://developer.salesforce.com/docs/atlas.en-us.chatterapi.meta/chatterapi/connect_resources_files_information.htm operationId: FileInformation-Delete parameters: - name: FILE_ID in: path description: '' required: true schema: type: string example: '500123' responses: '204': description: No Content headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 20 Nov 2023 16:39:05 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block Content-Security-Policy: content: text/plain: schema: type: string contentMediaType: text/plain example: upgrade-insecure-requests X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private content: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/connect/files/{FILE_ID}/content: get: tags: - Content - Files summary: Salesforce File Content description: >- Returns the binary content of the file, including references to external files. The content is streamed as the body of the response. https://developer.salesforce.com/docs/atlas.en-us.chatterapi.meta/chatterapi/connect_resources_files_content.htm operationId: FileContent parameters: - name: FILE_ID in: path description: '' required: true schema: type: string example: '500123' responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/connect/files/{FILE_ID}/file-shares: get: tags: - Files - Shares summary: Salesforce File Shares description: >- Returns information about the objects with which the specified file has been shared. Objects can be users, groups, or records. https://developer.salesforce.com/docs/atlas.en-us.chatterapi.meta/chatterapi/connect_resources_files_shares.htm operationId: FileShares parameters: - name: FILE_ID in: path description: '' required: true schema: type: string example: '500123' responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 20 Nov 2023 16:37:07 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/SuccessfulFileShares' - examples: - currentPageUrl: /services/data/v58.0/connect/files/069.../file-shares linkShare: nextPageUrl: previousPageUrl: shares: - entity: additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: firstName id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: >- https:///profilephoto/7292o000000oAgZ/F mediumPhotoUrl: >- https:///profilephoto/7292o000000oAgZ/M photoVersionId: 729... smallPhotoUrl: >- https:///profilephoto/7292o000000oAgZ/T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: >- /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal sharingType: I contentMediaType: application/json;charset=UTF-8 example: currentPageUrl: /services/data/v58.0/connect/files/069.../file-shares linkShare: nextPageUrl: previousPageUrl: shares: - entity: additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: firstName id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/7292o000000oAgZ/F mediumPhotoUrl: https:///profilephoto/7292o000000oAgZ/M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/7292o000000oAgZ/T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: >- /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal sharingType: I deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/connect/files/{FILE_ID}/file-shares/link: put: tags: - Files - Link - Shares summary: Salesforce Files Shares Link description: >- A description of a file shared as a link. Create, access, and delete a file’s share link. https://developer.salesforce.com/docs/atlas.en-us.chatterapi.meta/chatterapi/connect_resources_files_shares_link.htm operationId: FilesSharesLink parameters: - name: FILE_ID in: path description: '' required: true schema: type: string example: '500123' responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 20 Nov 2023 16:38:31 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/SuccessfulFilesSharesLink' - examples: - expirationDate: fileViewUrl: >- https:///sfc/p/2o000000i6mB/a/2o00000022S3/y2zsu9pHtEVIa49w6ElaXdjXz_GxBSzRVwe645_Z.dw isPasswordRequired: false password: sharingType: V contentMediaType: application/json;charset=UTF-8 example: expirationDate: fileViewUrl: >- https:///sfc/p/2o000000i6mB/a/2o00000022S3/y2zsu9pHtEVIa49w6ElaXdjXz_GxBSzRVwe645_Z.dw isPasswordRequired: false password: sharingType: V deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/named-credentials/credential: get: tags: - Credential - Get summary: Salesforce Get Credential description: Get a credential. operationId: GetCredential parameters: - name: externalCredential in: query description: Fully qualified developer name of the external credential. required: true style: form explode: true schema: type: string example: example_value - name: principalName in: query description: Name of the external credential named principal. required: true style: form explode: true schema: type: string example: example_value - name: principalType in: query description: |- Type of credential principal. Values are: * AwsStsPrincipal * NamedPrincipal * PerUserPrincipal required: true style: form explode: true schema: type: string example: example_value responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 22 Nov 2023 12:01:04 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/SuccessfulGetCredential' - examples: - authenticationProtocol: Custom authenticationProtocolVariant: NoAuthentication authenticationStatus: Configured credentials: {} externalCredential: Test principalName: Test principalType: NamedPrincipal contentMediaType: application/json;charset=UTF-8 example: authenticationProtocol: Custom authenticationProtocolVariant: NoAuthentication authenticationStatus: Configured credentials: {} externalCredential: Test principalName: Test principalType: NamedPrincipal deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK post: tags: - Create - Credential summary: Salesforce Create Credential description: Create a credential. operationId: CreateCredential parameters: [] requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/CreateCredentialRequest' - examples: - authenticationProtocol: Custom credentials: {} externalCredential: SampleExternalCredential principalName: SamplePrincipal principalType: NamedPrincipal contentMediaType: application/json example: authenticationProtocol: Custom credentials: {} externalCredential: SampleExternalCredential principalName: SamplePrincipal principalType: NamedPrincipal required: true responses: '201': description: Created headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 22 Nov 2023 12:06:08 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/successfulCreateCredential' - examples: - authenticationProtocol: Custom authenticationStatus: Unknown credentials: {} externalCredential: SampleExternalCredential principalName: SamplePrincipal principalType: NamedPrincipal contentMediaType: application/json;charset=UTF-8 example: authenticationProtocol: Custom authenticationStatus: Unknown credentials: {} externalCredential: SampleExternalCredential principalName: SamplePrincipal principalType: NamedPrincipal deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK put: tags: - Credential - Update summary: Salesforce Update Credential description: Update a credential. operationId: UpdateCredential parameters: [] requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/UpdateCredentialRequest' - examples: - externalCredential: test authenticationProtocol: Custom principalName: test principalType: NamedPrincipal credentials: testCredential: value: '000000' encrypted: true contentMediaType: application/json example: externalCredential: test authenticationProtocol: Custom principalName: test principalType: NamedPrincipal credentials: testCredential: value: '000000' encrypted: true required: true responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK delete: tags: - Credential - Deletes summary: Salesforce Delete Credential description: Delete a credential. operationId: DeleteCredential parameters: [] requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/DeleteCredentialRequest' - examples: - externalCredential: SampleExternalCredential principalType: NamedPrincipal principalName: SamplePrincipal contentMediaType: application/json example: externalCredential: SampleExternalCredential principalType: NamedPrincipal principalName: SamplePrincipal required: true responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/named-credentials/external-credentials: get: tags: - Credentials - External - Lists summary: Salesforce List External Credentials description: Get external credentials that the user can authenticate to. operationId: ListExternalCredentials parameters: [] responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 20 Nov 2023 16:46:27 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/SuccessfulListExternalCredentials' - examples: - externalCredentials: - authenticationProtocol: Custom authenticationProtocolVariant: NoAuthentication authenticationStatus: NotConfigured customHeaders: [] developerName: Test id: 0pt... masterLabel: Test parameters: [] principals: [] relatedNamedCredentials: - developerName: Test id: 0XA... masterLabel: Test url: >- /services/data/v58.0/named-credentials/named-credential-setup/Test url: >- /services/data/v58.0/named-credentials/external-credentials/Test contentMediaType: application/json;charset=UTF-8 example: externalCredentials: - authenticationProtocol: Custom authenticationProtocolVariant: NoAuthentication authenticationStatus: NotConfigured customHeaders: [] developerName: Test id: 0pt... masterLabel: Test parameters: [] principals: [] relatedNamedCredentials: - developerName: Test id: 0XA... masterLabel: Test url: >- /services/data/v58.0/named-credentials/named-credential-setup/Test url: >- /services/data/v58.0/named-credentials/external-credentials/Test deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK post: tags: - Create - Credential - External summary: Salesforce Create External Credential description: Create an external credential. operationId: CreateExternalCredential parameters: [] requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/CreateExternalCredentialRequest' - examples: - developerName: SampleExternalCredential masterLabel: Sample External Credential authenticationProtocol: Custom principals: - principalName: SamplePrincipal principalType: NamedPrincipal sequenceNumber: 1 customHeaders: - headerName: SampleHeader headerValue: SampleHeaderValue sequenceNumber: 1 contentMediaType: application/json example: developerName: SampleExternalCredential masterLabel: Sample External Credential authenticationProtocol: Custom principals: - principalName: SamplePrincipal principalType: NamedPrincipal sequenceNumber: 1 customHeaders: - headerName: SampleHeader headerValue: SampleHeaderValue sequenceNumber: 1 required: true responses: '201': description: Created headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 20 Nov 2023 16:53:51 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/SuccessfulCreateExternalCredential' - examples: - authenticationProtocol: Custom authenticationStatus: Unknown customHeaders: - headerName: SampleHeader headerValue: SampleHeaderValue id: 0pu2o000000KymkAAC sequenceNumber: 1 developerName: SampleExternalCredential id: 0pt2o000000CaU0AAK masterLabel: Sample External Credential parameters: [] principals: - authenticationStatus: Unknown id: 0pu2o000000KymjAAC parameters: [] principalAccess: [] principalName: SamplePrincipal principalType: NamedPrincipal sequenceNumber: 1 relatedNamedCredentials: [] url: >- /services/data/v58.0/named-credentials/external-credentials/SampleExternalCredential contentMediaType: application/json;charset=UTF-8 example: authenticationProtocol: Custom authenticationStatus: Unknown customHeaders: - headerName: SampleHeader headerValue: SampleHeaderValue id: 0pu2o000000KymkAAC sequenceNumber: 1 developerName: SampleExternalCredential id: 0pt2o000000CaU0AAK masterLabel: Sample External Credential parameters: [] principals: - authenticationStatus: Unknown id: 0pu2o000000KymjAAC parameters: [] principalAccess: [] principalName: SamplePrincipal principalType: NamedPrincipal sequenceNumber: 1 relatedNamedCredentials: [] url: >- /services/data/v58.0/named-credentials/external-credentials/SampleExternalCredential deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/named-credentials/named-credential-setup: get: tags: - Credentials - Lists - Named summary: Salesforce List Named Credentials description: Get a list of named credentials in the org. operationId: ListNamedCredentials parameters: [] responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 20 Nov 2023 16:45:55 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/SuccessfulListNamedCredentials' - examples: - namedCredentials: - calloutUrl: https://my.example.com developerName: Test id: 0XA... masterLabel: Test type: SecuredEndpoint url: >- /services/data/v58.0/named-credentials/named-credential-setup/Test contentMediaType: application/json;charset=UTF-8 example: namedCredentials: - calloutUrl: https://my.example.com developerName: Test id: 0XA... masterLabel: Test type: SecuredEndpoint url: >- /services/data/v58.0/named-credentials/named-credential-setup/Test deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK post: tags: - Create - Credential - Named summary: Salesforce Create Named Credential description: Create a named credential. operationId: CreateNamedCredential parameters: [] requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/CreateNamedCredentialRequest' - examples: - developerName: SamplePrivate masterLabel: SamplePrivateLabel type: SecuredEndpoint calloutUrl: https://api.example.com externalCredentials: - developerName: SampleExternalCredential customHeaders: - headerName: SampleHeader headerValue: SampleValue sequenceNumber: 1 calloutOptions: allowMergeFieldsInBody: false allowMergeFieldsInHeader: true generateAuthorizationHeader: true contentMediaType: application/json example: developerName: SamplePrivate masterLabel: SamplePrivateLabel type: SecuredEndpoint calloutUrl: https://api.example.com externalCredentials: - developerName: SampleExternalCredential customHeaders: - headerName: SampleHeader headerValue: SampleValue sequenceNumber: 1 calloutOptions: allowMergeFieldsInBody: false allowMergeFieldsInHeader: true generateAuthorizationHeader: true required: true responses: '201': description: Created headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 20 Nov 2023 16:54:12 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/SuccessfulCreateNamedCredential' - examples: - calloutOptions: allowMergeFieldsInBody: false allowMergeFieldsInHeader: true generateAuthorizationHeader: true calloutUrl: https://api.example.com customHeaders: - headerName: SampleHeader headerValue: SampleValue id: 0pv2o000000PAv6AAG sequenceNumber: 1 developerName: SamplePrivate externalCredentials: - developerName: SampleExternalCredential id: 0pt2o000000CaU0AAK masterLabel: Sample External Credential url: >- /services/data/v58.0/named-credentials/external-credentials/SampleExternalCredential id: 0XA2o000000XaAQGA0 masterLabel: SamplePrivateLabel parameters: [] type: SecuredEndpoint url: >- /services/data/v58.0/named-credentials/named-credential-setup/SamplePrivate contentMediaType: application/json;charset=UTF-8 example: calloutOptions: allowMergeFieldsInBody: false allowMergeFieldsInHeader: true generateAuthorizationHeader: true calloutUrl: https://api.example.com customHeaders: - headerName: SampleHeader headerValue: SampleValue id: 0pv2o000000PAv6AAG sequenceNumber: 1 developerName: SamplePrivate externalCredentials: - developerName: SampleExternalCredential id: 0pt2o000000CaU0AAK masterLabel: Sample External Credential url: >- /services/data/v58.0/named-credentials/external-credentials/SampleExternalCredential id: 0XA2o000000XaAQGA0 masterLabel: SamplePrivateLabel parameters: [] type: SecuredEndpoint url: >- /services/data/v58.0/named-credentials/named-credential-setup/SamplePrivate deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/named-credentials/external-credentials/{DEVELOPER_NAME}: get: tags: - Credentials - Developer - External - Get - Names summary: Salesforce Get External Credentials by Developer Name description: >- Get an external credential, including the named credentials and principals associated with it and the type and status of each principal. operationId: GetExternalCredentialsbyDeveloperName parameters: - name: DEVELOPER_NAME in: path description: '' required: true schema: type: string example: example_value responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 20 Nov 2023 16:49:36 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: >- #/components/schemas/SuccessfulGetExternalCredentialsbyDeveloperName - examples: - authenticationProtocol: Custom authenticationProtocolVariant: NoAuthentication authenticationStatus: NotConfigured customHeaders: [] developerName: Test id: 0pt... masterLabel: Test parameters: [] principals: [] relatedNamedCredentials: - developerName: Test id: 0XA... masterLabel: Test url: >- /services/data/v58.0/named-credentials/named-credential-setup/Test url: >- /services/data/v58.0/named-credentials/external-credentials/Test contentMediaType: application/json;charset=UTF-8 example: authenticationProtocol: Custom authenticationProtocolVariant: NoAuthentication authenticationStatus: NotConfigured customHeaders: [] developerName: Test id: 0pt... masterLabel: Test parameters: [] principals: [] relatedNamedCredentials: - developerName: Test id: 0XA... masterLabel: Test url: >- /services/data/v58.0/named-credentials/named-credential-setup/Test url: >- /services/data/v58.0/named-credentials/external-credentials/Test deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK put: tags: - Credential - External - Update summary: Salesforce Update External Credential description: Update an external credential. operationId: UpdateExternalCredential parameters: - name: DEVELOPER_NAME in: path description: '' required: true schema: type: string example: example_value requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/UpdateExternalCredentialRequest' - examples: - masterLabel: Sample External Credential authenticationProtocol: Custom principals: - principalName: SamplePrincipal principalType: NamedPrincipal sequenceNumber: 1 customHeaders: - headerName: SampleHeader headerValue: SampleHeaderValue sequenceNumber: 1 contentMediaType: application/json example: masterLabel: Sample External Credential authenticationProtocol: Custom principals: - principalName: SamplePrincipal principalType: NamedPrincipal sequenceNumber: 1 customHeaders: - headerName: SampleHeader headerValue: SampleHeaderValue sequenceNumber: 1 required: true responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 20 Nov 2023 16:55:19 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/SuccessfulUpdateExternalCredential' - examples: - authenticationProtocol: Custom authenticationStatus: Unknown customHeaders: - headerName: SampleHeader headerValue: SampleHeaderValue id: 0pu2o000000KymkAAC sequenceNumber: 1 developerName: SampleExternalCredential id: 0pt2o000000CaU0AAK masterLabel: Sample External Credential parameters: [] principals: - authenticationStatus: Unknown id: 0pu2o000000KymjAAC parameters: [] principalAccess: [] principalName: SamplePrincipal principalType: NamedPrincipal sequenceNumber: 1 relatedNamedCredentials: - developerName: SamplePrivate id: 0XA2o000000XaAQGA0 masterLabel: SamplePrivateLabel url: >- /services/data/v58.0/named-credentials/named-credential-setup/SamplePrivate url: >- /services/data/v58.0/named-credentials/external-credentials/SampleExternalCredential contentMediaType: application/json;charset=UTF-8 example: authenticationProtocol: Custom authenticationStatus: Unknown customHeaders: - headerName: SampleHeader headerValue: SampleHeaderValue id: 0pu2o000000KymkAAC sequenceNumber: 1 developerName: SampleExternalCredential id: 0pt2o000000CaU0AAK masterLabel: Sample External Credential parameters: [] principals: - authenticationStatus: Unknown id: 0pu2o000000KymjAAC parameters: [] principalAccess: [] principalName: SamplePrincipal principalType: NamedPrincipal sequenceNumber: 1 relatedNamedCredentials: - developerName: SamplePrivate id: 0XA2o000000XaAQGA0 masterLabel: SamplePrivateLabel url: >- /services/data/v58.0/named-credentials/named-credential-setup/SamplePrivate url: >- /services/data/v58.0/named-credentials/external-credentials/SampleExternalCredential deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK delete: tags: - Credential - Deletes - External summary: Salesforce Delete External Credential description: Delete an external credential. operationId: DeleteExternalCredential parameters: - name: DEVELOPER_NAME in: path description: '' required: true schema: type: string example: example_value responses: '204': description: No Content headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 22 Nov 2023 12:09:23 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block Content-Security-Policy: content: text/plain: schema: type: string contentMediaType: text/plain example: upgrade-insecure-requests X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private content: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/named-credentials/named-credential-setup/{DEVELOPER_NAME}: get: tags: - Credential - Developer - Get - Named - Names summary: Salesforce Get Named Credential by Developer Name description: Get a named credential. operationId: GetNamedCredentialbyDeveloperName parameters: - name: DEVELOPER_NAME in: path description: '' required: true schema: type: string examples: - 'null' example: example_value responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 20 Nov 2023 16:50:01 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: >- #/components/schemas/SuccessfulGetNamedCredentialbyDeveloperName - examples: - calloutOptions: allowMergeFieldsInBody: false allowMergeFieldsInHeader: false generateAuthorizationHeader: true calloutUrl: https://my.example.com customHeaders: [] developerName: Test externalCredentials: - developerName: Test id: 0pt... masterLabel: Test url: >- /services/data/v58.0/named-credentials/external-credentials/Test id: 0XA... masterLabel: Test parameters: [] type: SecuredEndpoint url: >- /services/data/v58.0/named-credentials/named-credential-setup/Test contentMediaType: application/json;charset=UTF-8 example: calloutOptions: allowMergeFieldsInBody: false allowMergeFieldsInHeader: false generateAuthorizationHeader: true calloutUrl: https://my.example.com customHeaders: [] developerName: Test externalCredentials: - developerName: Test id: 0pt... masterLabel: Test url: >- /services/data/v58.0/named-credentials/external-credentials/Test id: 0XA... masterLabel: Test parameters: [] type: SecuredEndpoint url: >- /services/data/v58.0/named-credentials/named-credential-setup/Test deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK put: tags: - Credential - Named - Update summary: Salesforce Update Named Credential description: Update a named credential. operationId: UpdateNamedCredential parameters: - name: DEVELOPER_NAME in: path description: '' required: true schema: type: string example: example_value requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/UpdateNamedCredentialRequest' - examples: - masterLabel: SamplePrivateLabel type: SecuredEndpoint calloutUrl: https://api.example.com externalCredentials: - developerName: SampleExternalCredential customHeaders: - headerName: SampleHeader headerValue: SampleValue sequenceNumber: 1 calloutOptions: allowMergeFieldsInBody: false allowMergeFieldsInHeader: true generateAuthorizationHeader: true contentMediaType: application/json example: masterLabel: SamplePrivateLabel type: SecuredEndpoint calloutUrl: https://api.example.com externalCredentials: - developerName: SampleExternalCredential customHeaders: - headerName: SampleHeader headerValue: SampleValue sequenceNumber: 1 calloutOptions: allowMergeFieldsInBody: false allowMergeFieldsInHeader: true generateAuthorizationHeader: true required: true responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 20 Nov 2023 16:54:57 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/SuccessfulUpdateNamedCredential' - examples: - calloutOptions: allowMergeFieldsInBody: false allowMergeFieldsInHeader: true generateAuthorizationHeader: true calloutUrl: https://api.example.com customHeaders: - headerName: SampleHeader headerValue: SampleValue id: 0pv2o000000PAv6AAG sequenceNumber: 1 developerName: SamplePrivate externalCredentials: - developerName: SampleExternalCredential id: 0pt2o000000CaU0AAK masterLabel: Sample External Credential url: >- /services/data/v58.0/named-credentials/external-credentials/SampleExternalCredential id: 0XA2o000000XaAQGA0 masterLabel: SamplePrivateLabel parameters: [] type: SecuredEndpoint url: >- /services/data/v58.0/named-credentials/named-credential-setup/SamplePrivate contentMediaType: application/json;charset=UTF-8 example: calloutOptions: allowMergeFieldsInBody: false allowMergeFieldsInHeader: true generateAuthorizationHeader: true calloutUrl: https://api.example.com customHeaders: - headerName: SampleHeader headerValue: SampleValue id: 0pv2o000000PAv6AAG sequenceNumber: 1 developerName: SamplePrivate externalCredentials: - developerName: SampleExternalCredential id: 0pt2o000000CaU0AAK masterLabel: Sample External Credential url: >- /services/data/v58.0/named-credentials/external-credentials/SampleExternalCredential id: 0XA2o000000XaAQGA0 masterLabel: SamplePrivateLabel parameters: [] type: SecuredEndpoint url: >- /services/data/v58.0/named-credentials/named-credential-setup/SamplePrivate deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/tooling/query: get: tags: - Credentials - Lists - Named summary: Salesforce List Named Credentials operationId: Listnamedcredentials parameters: - name: q in: query description: '' required: true style: form explode: true schema: type: string examples: - SELECT FIELDS(ALL) FROM NamedCredential LIMIT 200 example: example_value responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 03 Jul 2023 13:09:27 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=5/15000 Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/Listnamedcredentials' - examples: - size: 1 totalSize: 1 done: true queryLocator: entityTypeName: NamedCredential records: - attributes: type: NamedCredential url: >- /services/data/v58.0/tooling/sobjects/NamedCredential/0XA4H000000TNRhWAO Id: 0XA4H000000TNRhWAO IsDeleted: false DeveloperName: Slack_Webhook_for_integration_Channel Language: en_US MasterLabel: 'Slack Webhook for #integration Channel' NamespacePrefix: CreatedDate: 2020-11-06T14:04:44.000+0000 CreatedById: 00558000000yFyDAAU LastModifiedDate: 2020-11-06T14:04:44.000+0000 LastModifiedById: 00558000000yFyDAAU SystemModstamp: 2020-11-06T14:04:44.000+0000 Endpoint: https://hooks.slack.com/services/SECRET PrincipalType: Anonymous JwtIssuer: JwtFormulaSubject: JwtTextSubject: JwtValidityPeriodSeconds: JwtAudience: AuthTokenEndpointUrl: contentMediaType: application/json;charset=UTF-8 example: size: 1 totalSize: 1 done: true queryLocator: entityTypeName: NamedCredential records: - attributes: type: NamedCredential url: >- /services/data/v58.0/tooling/sobjects/NamedCredential/0XA4H000000TNRhWAO Id: 0XA4H000000TNRhWAO IsDeleted: false DeveloperName: Slack_Webhook_for_integration_Channel Language: en_US MasterLabel: 'Slack Webhook for #integration Channel' NamespacePrefix: CreatedDate: 2020-11-06T14:04:44.000+0000 CreatedById: 00558000000yFyDAAU LastModifiedDate: 2020-11-06T14:04:44.000+0000 LastModifiedById: 00558000000yFyDAAU SystemModstamp: 2020-11-06T14:04:44.000+0000 Endpoint: https://hooks.slack.com/services/SECRET PrincipalType: Anonymous JwtIssuer: JwtFormulaSubject: JwtTextSubject: JwtValidityPeriodSeconds: JwtAudience: AuthTokenEndpointUrl: deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/tooling/sobjects/NamedCredential/{NAMED_CREDENTIAL_ID}: get: tags: - Credential - Get - Named summary: Salesforce Get Named Credential operationId: Getnamedcredential parameters: - name: NAMED_CREDENTIAL_ID in: path description: '' required: true schema: type: string examples: - 0XA4H000000TNRhWAO example: '500123' responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK delete: tags: - Credential - Deletes - Named summary: Salesforce Delete Named Credential operationId: Deletenamedcredential parameters: - name: NAMED_CREDENTIAL_ID in: path description: '' required: true schema: type: string examples: - 'null' example: '500123' responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK patch: tags: - Credential - Named - Update summary: Salesforce Update Named Credential operationId: Updatenamedcredential parameters: - name: NAMED_CREDENTIAL_ID in: path description: '' required: true schema: type: string examples: - 'null' example: '500123' requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/UpdatenamedcredentialRequest1' - examples: - FullName: MyNamedCredential Metadata: label: My Named Credential endpoint: arn:aws:AWS_REGION:AWS_ACCOUNT_ID principalType: Anonymous protocol: NoAuthentication contentMediaType: application/json example: FullName: MyNamedCredential Metadata: label: My Named Credential endpoint: arn:aws:AWS_REGION:AWS_ACCOUNT_ID principalType: Anonymous protocol: NoAuthentication required: true responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/tooling/sobjects/NamedCredential: post: tags: - Create - Named summary: Salesforce Create Named Credential1 operationId: Createnamedcredential1 parameters: [] requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/CreatenamedcredentialRequest1' - examples: - FullName: MyNamedCredential Metadata: label: My Named Credential endpoint: arn:aws:AWS_REGION:AWS_ACCOUNT_ID principalType: Anonymous protocol: NoAuthentication contentMediaType: application/json example: FullName: MyNamedCredential Metadata: label: My Named Credential endpoint: arn:aws:AWS_REGION:AWS_ACCOUNT_ID principalType: Anonymous protocol: NoAuthentication required: true responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/chatter/feeds/news/me/feed-elements: get: tags: - Elements - Feed - News summary: Salesforce News Feed Elements description: >- All feed elements from all groups the context user either owns or is a member of, as well as all files, records, and users the context user follows. Use this resource to get information about feed elements and to post feed elements. For information about posting a feed element, see Feed Elements, Post and Search. https://developer.salesforce.com/docs/atlas.en-us.chatterapi.meta/chatterapi/connect_resource_feeds_news.htm#cc_news_feed_elements operationId: NewsFeedElements parameters: [] responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 22 Nov 2023 11:04:02 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/SuccessfulNewsFeedElements' - examples: - currentPageToken: currentPageUrl: >- /services/data/v58.0/chatter/feeds/news/005.../feed-elements elements: [] isModifiedToken: isModifiedUrl: nextPageToken: nextPageUrl: updatesToken: '2:1700651042000' updatesUrl: >- /services/data/v58.0/chatter/feeds/news/005.../feed-elements?updatedSince=2%3A1700651042000 contentMediaType: application/json;charset=UTF-8 example: currentPageToken: currentPageUrl: /services/data/v58.0/chatter/feeds/news/005.../feed-elements elements: [] isModifiedToken: isModifiedUrl: nextPageToken: nextPageUrl: updatesToken: '2:1700651042000' updatesUrl: >- /services/data/v58.0/chatter/feeds/news/005.../feed-elements?updatedSince=2%3A1700651042000 deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/chatter/feeds/user-profile/{USER_ID}/feed-elements: get: tags: - Elements - Feed - Profile - Users summary: Salesforce User Profile Feed Elements description: >- Returns feed elements created when a user changes records that can be tracked in a feed, feed elements whose parent is the user, and feed elements that mention the user. This feed is different than the news feed, which returns more feed items, including group updates. You can post feed items to the user-profile feed. You can get another user’s user profile feed. https://developer.salesforce.com/docs/atlas.en-us.chatterapi.meta/chatterapi/connect_resource_feeds_user_profile.htm operationId: UserProfileFeedElements parameters: - name: USER_ID in: path description: '' required: true schema: type: string example: '500123' responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 22 Nov 2023 11:04:39 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/SuccessfulUserProfileFeedElements' - examples: - currentPageToken: currentPageUrl: >- /services/data/v58.0/chatter/feeds/user-profile/005.../feed-elements elements: [] isModifiedToken: isModifiedUrl: nextPageToken: nextPageUrl: updatesToken: updatesUrl: contentMediaType: application/json;charset=UTF-8 example: currentPageToken: currentPageUrl: >- /services/data/v58.0/chatter/feeds/user-profile/005.../feed-elements elements: [] isModifiedToken: isModifiedUrl: nextPageToken: nextPageUrl: updatesToken: updatesUrl: deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/chatter/feeds/record/{RECORD_GROUP_ID}/feed-elements: get: tags: - Elements - Feed - Record summary: Salesforce Record Feed Elements description: >- Returns the feed elements for all the records the context user is following, or all the feed elements of the specified recordId. Use this resource to search a feed or to get the feed elements for a specific feed, including another user’s feed. To use this resource to get the feed elements for a group, specify the group ID as the recordId. https://developer.salesforce.com/docs/atlas.en-us.chatterapi.meta/chatterapi/connect_resource_feeds_record.htm operationId: RecordFeedElements parameters: - name: RECORD_GROUP_ID in: path description: '' required: true schema: type: string example: '500123' responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 22 Nov 2023 11:05:44 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/SuccessfulRecordFeedElements' - examples: - currentPageToken: currentPageUrl: >- /services/data/v58.0/chatter/feeds/record/001.../feed-elements elements: [] isModifiedToken: isModifiedUrl: nextPageToken: nextPageUrl: updatesToken: '2:1700651144000' updatesUrl: >- /services/data/v58.0/chatter/feeds/record/001.../feed-elements?updatedSince=2%3A1700651144000 contentMediaType: application/json;charset=UTF-8 example: currentPageToken: currentPageUrl: /services/data/v58.0/chatter/feeds/record/001.../feed-elements elements: [] isModifiedToken: isModifiedUrl: nextPageToken: nextPageUrl: updatesToken: '2:1700651144000' updatesUrl: >- /services/data/v58.0/chatter/feeds/record/001.../feed-elements?updatedSince=2%3A1700651144000 deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/chatter/feed-elements: post: tags: - Elements - Feed - Post - Search summary: Salesforce Feed Elements, Post and Search description: >- Feed item and comment bodies have a 10,000 character limit. Because this limit can change, we recommend that clients make a describeSObjects() call on the FeedItem or FeedComment object. To determine the maximum number of allowed characters, look at the length of the Body or CommentBody field. https://developer.salesforce.com/docs/atlas.en-us.chatterapi.meta/chatterapi/connect_resources_feed_element.htm operationId: FeedElements,PostandSearch parameters: - name: feedElementType in: query description: >- Feed elements are the top-level objects that a feed contains. The feed element type describes the characteristics of that feed element. One of these values: Bundle—A container of feed elements. A bundle also has a body made up of message segments that can always be gracefully degraded to text-only values. FeedItem—A feed item has a single parent and is scoped to one community or across all communities. A feed item can have capabilities such as bookmarks, canvas, content, comment, link, poll. Feed items have a body made up of message segments that can always be gracefully degraded to text-only values. Recommendation—A recommendation is a feed element with a recommendations capability. A recommendation suggests records to follow, groups to join, or applications that are helpful to the context user. required: true style: form explode: true schema: type: string examples: - FeedItem example: example_value - name: subjectId in: query description: '' required: true style: form explode: true schema: type: string examples: - example: '500123' - name: text in: query description: '' required: true style: form explode: true schema: type: string examples: - New Feed Item example: example_value responses: '201': description: Created headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 22 Nov 2023 11:06:07 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/SuccessfulFeedElementsPostandSearch' - examples: - actor: additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: Firstname id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/729.../F mediumPhotoUrl: https:///profilephoto/729.../M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/729.../T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: >- /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal body: isRichText: false messageSegments: - text: New Feed Item type: Text text: New Feed Item capabilities: associatedActions: platformActionGroups: [] bookmarks: isBookmarkedByCurrentUser: false chatterLikes: isLikedByCurrentUser: false likesMessage: myLike: page: currentPageToken: 0 currentPageUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/chatter-likes/items items: [] nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: total: 0 close: canContextUserUpdateIsClosed: true isClosed: false comments: page: currentPageToken: currentPageUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/comments/items items: [] nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: total: 0 edit: isEditRestricted: false isEditableByMeUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/edit/is-editable-by-me lastEditedBy: lastEditedDate: latestRevision: 1 relativeLastEditedDate: interactions: count: 0 mute: isMutedByMe: false readBy: isReadByMe: true lastReadDateByMe: '2023-11-22T11:06:07.000Z' page: currentPageToken: currentPageUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/read-by/items?pageSize=3 items: [] nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: total: 0 status: feedEntityStatus: Published isApprovableByMe: true topics: canAssignTopics: true items: [] upDownVote: downVoteCount: 0 myVote: None upVoteCount: 0 clientInfo: applicationName: Postman Playground applicationUrl: createdDate: '2023-11-22T11:06:07.000Z' event: false feedElementType: FeedItem hasVerifiedComment: false header: isRichText: messageSegments: - motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: reference: id: 005... url: /services/data/v58.0/chatter/users/005... text: Name type: EntityLink text: Name id: 0D5... isDeleteRestricted: false isSharable: false modifiedDate: '2023-11-22T11:06:07.000Z' originalFeedItem: originalFeedItemActor: parent: entityLabel: label: Account labelPlural: Accounts id: 001... motif: color: '5867E8' largeIconUrl: /img/icon/accounts64.png mediumIconUrl: /img/icon/accounts32.png smallIconUrl: /img/icon/accounts16.png svgIconUrl: mySubscription: name: Burlington Textiles Corp of America type: Account url: /services/data/v58.0/chatter/records/001... photoUrl: https:///profilephoto/729.../T relativeCreatedDate: Just now type: TextPost url: /services/data/v58.0/chatter/feed-elements/0D5... visibility: InternalUsers contentMediaType: application/json;charset=UTF-8 example: actor: additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: Firstname id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/729.../F mediumPhotoUrl: https:///profilephoto/729.../M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/729.../T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal body: isRichText: false messageSegments: - text: New Feed Item type: Text text: New Feed Item capabilities: associatedActions: platformActionGroups: [] bookmarks: isBookmarkedByCurrentUser: false chatterLikes: isLikedByCurrentUser: false likesMessage: myLike: page: currentPageToken: 0 currentPageUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/chatter-likes/items items: [] nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: total: 0 close: canContextUserUpdateIsClosed: true isClosed: false comments: page: currentPageToken: currentPageUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/comments/items items: [] nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: total: 0 edit: isEditRestricted: false isEditableByMeUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/edit/is-editable-by-me lastEditedBy: lastEditedDate: latestRevision: 1 relativeLastEditedDate: interactions: count: 0 mute: isMutedByMe: false readBy: isReadByMe: true lastReadDateByMe: '2023-11-22T11:06:07.000Z' page: currentPageToken: currentPageUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/read-by/items?pageSize=3 items: [] nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: total: 0 status: feedEntityStatus: Published isApprovableByMe: true topics: canAssignTopics: true items: [] upDownVote: downVoteCount: 0 myVote: None upVoteCount: 0 clientInfo: applicationName: Postman Playground applicationUrl: createdDate: '2023-11-22T11:06:07.000Z' event: false feedElementType: FeedItem hasVerifiedComment: false header: isRichText: messageSegments: - motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: reference: id: 005... url: /services/data/v58.0/chatter/users/005... text: Name type: EntityLink text: Name id: 0D5... isDeleteRestricted: false isSharable: false modifiedDate: '2023-11-22T11:06:07.000Z' originalFeedItem: originalFeedItemActor: parent: entityLabel: label: Account labelPlural: Accounts id: 001... motif: color: '5867E8' largeIconUrl: /img/icon/accounts64.png mediumIconUrl: /img/icon/accounts32.png smallIconUrl: /img/icon/accounts16.png svgIconUrl: mySubscription: name: Burlington Textiles Corp of America type: Account url: /services/data/v58.0/chatter/records/001... photoUrl: https:///profilephoto/729.../T relativeCreatedDate: Just now type: TextPost url: /services/data/v58.0/chatter/feed-elements/0D5... visibility: InternalUsers deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/chatter/feed-elements/batch: post: tags: - Batch - Elements - Feed - Post summary: Salesforce Feed Elements, Batch Post description: >- Post a batch of up to 500 feed elements. https://developer.salesforce.com/docs/atlas.en-us.chatterapi.meta/chatterapi/connect_resources_feed_element_batch_post.htm operationId: FeedElements,BatchPost parameters: [] requestBody: description: '' content: application/json: schema: $ref: '#/components/schemas/FeedElementsBatchPostRequest' examples: Feedelements,batchpostRequestExample: summary: Default FeedElements,BatchPost request x-microcks-default: true value: inputs: - {} required: true responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 22 Nov 2023 11:11:25 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/SuccessfulFeedElementsBatchPost' - examples: - hasErrors: true results: - result: actor: additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: Firstname id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/729.../F mediumPhotoUrl: https:///profilephoto/729.../M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/729.../T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: >- /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal body: isRichText: false messageSegments: - text: Post Number 1 type: Text text: Post Number 1 capabilities: associatedActions: platformActionGroups: [] bookmarks: isBookmarkedByCurrentUser: false chatterLikes: isLikedByCurrentUser: false likesMessage: myLike: page: currentPageToken: 0 currentPageUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/chatter-likes/items items: [] nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: total: 0 close: canContextUserUpdateIsClosed: true isClosed: false comments: page: currentPageToken: currentPageUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/comments/items items: [] nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: total: 0 edit: isEditRestricted: false isEditableByMeUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/edit/is-editable-by-me lastEditedBy: lastEditedDate: latestRevision: 1 relativeLastEditedDate: interactions: count: 0 mute: isMutedByMe: false readBy: isReadByMe: true lastReadDateByMe: '2023-11-22T11:11:25.000Z' page: currentPageToken: currentPageUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/read-by/items?pageSize=3 items: [] nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: total: 0 status: feedEntityStatus: Published isApprovableByMe: true topics: canAssignTopics: true items: [] upDownVote: downVoteCount: 0 myVote: None upVoteCount: 0 clientInfo: applicationName: Postman Playground applicationUrl: createdDate: '2023-11-22T11:11:25.000Z' event: false feedElementType: FeedItem hasVerifiedComment: false header: isRichText: messageSegments: - motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: reference: id: 005... url: >- /services/data/v58.0/chatter/users/005... text: Name type: EntityLink text: Name id: 0D5... isDeleteRestricted: false isSharable: false modifiedDate: '2023-11-22T11:11:25.000Z' originalFeedItem: originalFeedItemActor: parent: entityLabel: label: Account labelPlural: Accounts id: 001... motif: color: '5867E8' largeIconUrl: /img/icon/accounts64.png mediumIconUrl: /img/icon/accounts32.png smallIconUrl: /img/icon/accounts16.png svgIconUrl: mySubscription: name: Burlington Textiles Corp of America type: Account url: /services/data/v58.0/chatter/records/001... photoUrl: https:///profilephoto/729.../T relativeCreatedDate: Just now type: TextPost url: >- /services/data/v58.0/chatter/feed-elements/0D5... visibility: InternalUsers statusCode: 201 - result: actor: additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: Firstname id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/729.../F mediumPhotoUrl: https:///profilephoto/729.../M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/729.../T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: >- /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal body: isRichText: false messageSegments: - text: Post Number 2 type: Text text: Post Number 2 capabilities: associatedActions: platformActionGroups: [] bookmarks: isBookmarkedByCurrentUser: false chatterLikes: isLikedByCurrentUser: false likesMessage: myLike: page: currentPageToken: 0 currentPageUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/chatter-likes/items items: [] nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: total: 0 close: canContextUserUpdateIsClosed: true isClosed: false comments: page: currentPageToken: currentPageUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/comments/items items: [] nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: total: 0 edit: isEditRestricted: false isEditableByMeUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/edit/is-editable-by-me lastEditedBy: lastEditedDate: latestRevision: 1 relativeLastEditedDate: interactions: count: 0 mute: isMutedByMe: false readBy: isReadByMe: true lastReadDateByMe: '2023-11-22T11:11:25.000Z' page: currentPageToken: currentPageUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/read-by/items?pageSize=3 items: [] nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: total: 0 status: feedEntityStatus: Published isApprovableByMe: true topics: canAssignTopics: true items: [] upDownVote: downVoteCount: 0 myVote: None upVoteCount: 0 clientInfo: applicationName: Postman Playground applicationUrl: createdDate: '2023-11-22T11:11:25.000Z' event: false feedElementType: FeedItem hasVerifiedComment: false header: isRichText: messageSegments: - motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: reference: id: 005... url: >- /services/data/v58.0/chatter/users/005... text: Name type: EntityLink text: Name id: 0D5... isDeleteRestricted: false isSharable: true modifiedDate: '2023-11-22T11:11:25.000Z' originalFeedItem: originalFeedItemActor: parent: additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: Firstname id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/729.../F mediumPhotoUrl: https:///profilephoto/729.../M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/729.../T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: >- /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal photoUrl: https:///profilephoto/729.../T relativeCreatedDate: Just now type: TextPost url: >- /services/data/v58.0/chatter/feed-elements/0D5... visibility: AllUsers statusCode: 201 - result: - errorCode: INVALID_MARKUP message: >- Error while parsing Rich Text Content: The value of attribute "src" associated with an element type "img" must not contain the '<' character. statusCode: 400 contentMediaType: application/json;charset=UTF-8 example: hasErrors: true results: - result: actor: additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: Firstname id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/729.../F mediumPhotoUrl: https:///profilephoto/729.../M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/729.../T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: >- /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal body: isRichText: false messageSegments: - text: Post Number 1 type: Text text: Post Number 1 capabilities: associatedActions: platformActionGroups: [] bookmarks: isBookmarkedByCurrentUser: false chatterLikes: isLikedByCurrentUser: false likesMessage: myLike: page: currentPageToken: 0 currentPageUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/chatter-likes/items items: [] nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: total: 0 close: canContextUserUpdateIsClosed: true isClosed: false comments: page: currentPageToken: currentPageUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/comments/items items: [] nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: total: 0 edit: isEditRestricted: false isEditableByMeUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/edit/is-editable-by-me lastEditedBy: lastEditedDate: latestRevision: 1 relativeLastEditedDate: interactions: count: 0 mute: isMutedByMe: false readBy: isReadByMe: true lastReadDateByMe: '2023-11-22T11:11:25.000Z' page: currentPageToken: currentPageUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/read-by/items?pageSize=3 items: [] nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: total: 0 status: feedEntityStatus: Published isApprovableByMe: true topics: canAssignTopics: true items: [] upDownVote: downVoteCount: 0 myVote: None upVoteCount: 0 clientInfo: applicationName: Postman Playground applicationUrl: createdDate: '2023-11-22T11:11:25.000Z' event: false feedElementType: FeedItem hasVerifiedComment: false header: isRichText: messageSegments: - motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: reference: id: 005... url: /services/data/v58.0/chatter/users/005... text: Name type: EntityLink text: Name id: 0D5... isDeleteRestricted: false isSharable: false modifiedDate: '2023-11-22T11:11:25.000Z' originalFeedItem: originalFeedItemActor: parent: entityLabel: label: Account labelPlural: Accounts id: 001... motif: color: '5867E8' largeIconUrl: /img/icon/accounts64.png mediumIconUrl: /img/icon/accounts32.png smallIconUrl: /img/icon/accounts16.png svgIconUrl: mySubscription: name: Burlington Textiles Corp of America type: Account url: /services/data/v58.0/chatter/records/001... photoUrl: https:///profilephoto/729.../T relativeCreatedDate: Just now type: TextPost url: /services/data/v58.0/chatter/feed-elements/0D5... visibility: InternalUsers statusCode: 201 - result: actor: additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: Firstname id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/729.../F mediumPhotoUrl: https:///profilephoto/729.../M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/729.../T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: >- /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal body: isRichText: false messageSegments: - text: Post Number 2 type: Text text: Post Number 2 capabilities: associatedActions: platformActionGroups: [] bookmarks: isBookmarkedByCurrentUser: false chatterLikes: isLikedByCurrentUser: false likesMessage: myLike: page: currentPageToken: 0 currentPageUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/chatter-likes/items items: [] nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: total: 0 close: canContextUserUpdateIsClosed: true isClosed: false comments: page: currentPageToken: currentPageUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/comments/items items: [] nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: total: 0 edit: isEditRestricted: false isEditableByMeUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/edit/is-editable-by-me lastEditedBy: lastEditedDate: latestRevision: 1 relativeLastEditedDate: interactions: count: 0 mute: isMutedByMe: false readBy: isReadByMe: true lastReadDateByMe: '2023-11-22T11:11:25.000Z' page: currentPageToken: currentPageUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/read-by/items?pageSize=3 items: [] nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: total: 0 status: feedEntityStatus: Published isApprovableByMe: true topics: canAssignTopics: true items: [] upDownVote: downVoteCount: 0 myVote: None upVoteCount: 0 clientInfo: applicationName: Postman Playground applicationUrl: createdDate: '2023-11-22T11:11:25.000Z' event: false feedElementType: FeedItem hasVerifiedComment: false header: isRichText: messageSegments: - motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: reference: id: 005... url: /services/data/v58.0/chatter/users/005... text: Name type: EntityLink text: Name id: 0D5... isDeleteRestricted: false isSharable: true modifiedDate: '2023-11-22T11:11:25.000Z' originalFeedItem: originalFeedItemActor: parent: additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: Firstname id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/729.../F mediumPhotoUrl: https:///profilephoto/729.../M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/729.../T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: >- /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal photoUrl: https:///profilephoto/729.../T relativeCreatedDate: Just now type: TextPost url: /services/data/v58.0/chatter/feed-elements/0D5... visibility: AllUsers statusCode: 201 - result: - errorCode: INVALID_MARKUP message: >- Error while parsing Rich Text Content: The value of attribute "src" associated with an element type "img" must not contain the '<' character. statusCode: 400 deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/chatter/feed-elements/{FEED_ELEMENT_ID}: delete: tags: - Deletes - Element - Feed summary: Salesforce Feed Element - Delete description: >- Access, edit, or delete a feed element. Feed items are the only type of feed element that can be edited. https://developer.salesforce.com/docs/atlas.en-us.chatterapi.meta/chatterapi/connect_resources_feed_element_specific.htm operationId: FeedElement-Delete parameters: - name: FEED_ELEMENT_ID in: path description: '' required: true schema: type: string example: '500123' responses: '204': description: No Content headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 22 Nov 2023 11:13:51 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block Content-Security-Policy: content: text/plain: schema: type: string contentMediaType: text/plain example: upgrade-insecure-requests X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private content: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/chatter/feed-elements/{FEED_ELEMENT_ID}/capabilities/comments/items: post: tags: - Capability - Comments - Elements - Feed - Items summary: Salesforce Feed Elements Capability, Comments Items description: >- Access comments for a feed element, or add a comment to a feed element. To upload a binary file to attach to a comment, you must send it in a multipart/form-data request. To send the text of the comment, you can choose to include a JSON or XML rich input body part in the multipart/form-data request. Alternately, you can choose to pass the information in request parameter parts. For information about how to create the multipart/form-data message, see Uploading Binary Files. https://developer.salesforce.com/docs/atlas.en-us.chatterapi.meta/chatterapi/connect_resources_feed_element_capability_comments_items.htm#connect_resources_feed_element_capability_comments_items operationId: FeedElementsCapability,CommentsItems parameters: - name: text in: query description: '' required: true style: form explode: true schema: type: string examples: - New Comment example: example_value - name: FEED_ELEMENT_ID in: path description: '' required: true schema: type: string example: '500123' responses: '201': description: Created headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 22 Nov 2023 11:14:33 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/FeedElementsCapabilityCommentsItems' - examples: - body: isRichText: false messageSegments: - text: New Comment type: Text text: New Comment capabilities: edit: isEditRestricted: false isEditableByMeUrl: >- /services/data/v58.0/chatter/comments/0D7.../capabilities/edit/is-editable-by-me lastEditedBy: lastEditedDate: latestRevision: 1 relativeLastEditedDate: status: feedEntityStatus: Published isApprovableByMe: true upDownVote: downVoteCount: 0 myVote: None upVoteCount: 0 verified: isVerifiableByMe: false isVerified: false isVerifiedByAnonymized: lastVerifiedByUser: lastVerifiedDate: clientInfo: applicationName: Postman Playground applicationUrl: createdDate: '2023-11-22T11:14:33.000Z' feedElement: id: 0D5... url: /services/data/v58.0/chatter/feed-elements/0D5... id: 0D7... isDeleteRestricted: false likes: currentPageToken: currentPageUrl: /services/data/v58.0/chatter/comments/0D7.../likes items: [] nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: total: 0 likesMessage: moderationFlags: myLike: parent: id: 001... url: /services/data/v58.0/chatter/records/001... relativeCreatedDate: Just now threadLevel: 0 threadParentId: type: TextComment url: /services/data/v58.0/chatter/comments/0D7... user: additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: Firstname id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/729.../F mediumPhotoUrl: https:///profilephoto/729.../M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/729.../T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: >- /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal contentMediaType: application/json;charset=UTF-8 example: body: isRichText: false messageSegments: - text: New Comment type: Text text: New Comment capabilities: edit: isEditRestricted: false isEditableByMeUrl: >- /services/data/v58.0/chatter/comments/0D7.../capabilities/edit/is-editable-by-me lastEditedBy: lastEditedDate: latestRevision: 1 relativeLastEditedDate: status: feedEntityStatus: Published isApprovableByMe: true upDownVote: downVoteCount: 0 myVote: None upVoteCount: 0 verified: isVerifiableByMe: false isVerified: false isVerifiedByAnonymized: lastVerifiedByUser: lastVerifiedDate: clientInfo: applicationName: Postman Playground applicationUrl: createdDate: '2023-11-22T11:14:33.000Z' feedElement: id: 0D5... url: /services/data/v58.0/chatter/feed-elements/0D5... id: 0D7... isDeleteRestricted: false likes: currentPageToken: currentPageUrl: /services/data/v58.0/chatter/comments/0D7.../likes items: [] nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: total: 0 likesMessage: moderationFlags: myLike: parent: id: 001... url: /services/data/v58.0/chatter/records/001... relativeCreatedDate: Just now threadLevel: 0 threadParentId: type: TextComment url: /services/data/v58.0/chatter/comments/0D7... user: additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: Firstname id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/729.../F mediumPhotoUrl: https:///profilephoto/729.../M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/729.../T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/chatter/comments/{COMMENT_ID}: get: tags: - Comments summary: Salesforce Comment description: >- Get information about, edit, or delete a comment. To post a comment, use Feed Elements Capability, Comments Items. https://developer.salesforce.com/docs/atlas.en-us.chatterapi.meta/chatterapi/connect_resources_comments_specific.htm#connect_resources_comments_specific operationId: Comment parameters: - name: COMMENT_ID in: path description: '' required: true schema: type: string examples: - 0D7... example: '500123' - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 22 Nov 2023 11:20:42 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/SuccessfulComment' - examples: - body: isRichText: true messageSegments: - altText: htmlTag: p markupType: Paragraph text: '' type: MarkupBegin url: - text: Comment type: Text - htmlTag: p markupType: Paragraph text: '' type: MarkupEnd text: | Comment capabilities: edit: isEditRestricted: false isEditableByMeUrl: >- /services/data/v58.0/chatter/comments/0D7.../capabilities/edit/is-editable-by-me lastEditedBy: lastEditedDate: latestRevision: 1 relativeLastEditedDate: status: feedEntityStatus: Published isApprovableByMe: true upDownVote: downVoteCount: 0 myVote: None upVoteCount: 0 verified: isVerifiableByMe: false isVerified: false isVerifiedByAnonymized: lastVerifiedByUser: lastVerifiedDate: clientInfo: createdDate: '2023-11-22T11:19:50.000Z' feedElement: id: 0D5... url: /services/data/v58.0/chatter/feed-elements/0D5... id: 0D7... isDeleteRestricted: false likes: currentPageToken: currentPageUrl: /services/data/v58.0/chatter/comments/0D7.../likes items: [] nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: total: 0 likesMessage: moderationFlags: myLike: parent: id: 005... url: /services/data/v58.0/chatter/users/005... relativeCreatedDate: Just now threadLevel: 0 threadParentId: type: TextComment url: /services/data/v58.0/chatter/comments/0D7... user: additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: Firstname id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/729.../F mediumPhotoUrl: https:///profilephoto/729.../M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/729.../T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: >- /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal contentMediaType: application/json;charset=UTF-8 example: body: isRichText: true messageSegments: - altText: htmlTag: p markupType: Paragraph text: '' type: MarkupBegin url: - text: Comment type: Text - htmlTag: p markupType: Paragraph text: '' type: MarkupEnd text: | Comment capabilities: edit: isEditRestricted: false isEditableByMeUrl: >- /services/data/v58.0/chatter/comments/0D7.../capabilities/edit/is-editable-by-me lastEditedBy: lastEditedDate: latestRevision: 1 relativeLastEditedDate: status: feedEntityStatus: Published isApprovableByMe: true upDownVote: downVoteCount: 0 myVote: None upVoteCount: 0 verified: isVerifiableByMe: false isVerified: false isVerifiedByAnonymized: lastVerifiedByUser: lastVerifiedDate: clientInfo: createdDate: '2023-11-22T11:19:50.000Z' feedElement: id: 0D5... url: /services/data/v58.0/chatter/feed-elements/0D5... id: 0D7... isDeleteRestricted: false likes: currentPageToken: currentPageUrl: /services/data/v58.0/chatter/comments/0D7.../likes items: [] nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: total: 0 likesMessage: moderationFlags: myLike: parent: id: 005... url: /services/data/v58.0/chatter/users/005... relativeCreatedDate: Just now threadLevel: 0 threadParentId: type: TextComment url: /services/data/v58.0/chatter/comments/0D7... user: additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: Firstname id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/729.../F mediumPhotoUrl: https:///profilephoto/729.../M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/729.../T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK patch: tags: - Comments - Edit summary: Salesforce Comment - Edit description: >- Get information about, edit, or delete a comment. To post a comment, use Feed Elements Capability, Comments Items. https://developer.salesforce.com/docs/atlas.en-us.chatterapi.meta/chatterapi/connect_resources_comments_specific.htm#connect_resources_comments_specific operationId: Comment-Edit parameters: - name: COMMENT_ID in: path description: '' required: true schema: type: string examples: - 0D7... example: '500123' requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/Comment-EditRequest' - examples: - body: messageSegments: - type: Text text: Editing a comment contentMediaType: application/json example: body: messageSegments: - type: Text text: Editing a comment required: true responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 22 Nov 2023 11:22:36 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/SuccessfulComment-Edit' - examples: - body: isRichText: false messageSegments: - text: Editing a comment type: Text text: Editing a comment capabilities: edit: isEditRestricted: false isEditableByMeUrl: >- /services/data/v58.0/chatter/comments/0D7.../capabilities/edit/is-editable-by-me lastEditedBy: additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: Firstname id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: >- https:///profilephoto/7292o000000oAgZ/F mediumPhotoUrl: >- https:///profilephoto/7292o000000oAgZ/M photoVersionId: 729... smallPhotoUrl: >- https:///profilephoto/7292o000000oAgZ/T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: >- /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal lastEditedDate: '2023-11-22T11:22:36.000Z' latestRevision: 2 relativeLastEditedDate: Just now status: feedEntityStatus: Published isApprovableByMe: true upDownVote: downVoteCount: 0 myVote: None upVoteCount: 0 verified: isVerifiableByMe: false isVerified: false isVerifiedByAnonymized: lastVerifiedByUser: lastVerifiedDate: clientInfo: createdDate: '2023-11-22T11:19:50.000Z' feedElement: id: 0D5... url: /services/data/v58.0/chatter/feed-elements/0D5... id: 0D7... isDeleteRestricted: false likes: currentPageToken: currentPageUrl: /services/data/v58.0/chatter/comments/0D7.../likes items: [] nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: total: 0 likesMessage: moderationFlags: myLike: parent: id: 005... url: /services/data/v58.0/chatter/users/005... relativeCreatedDate: 2m ago threadLevel: 0 threadParentId: type: TextComment url: /services/data/v58.0/chatter/comments/0D7... user: additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: Firstname id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/7292o000000oAgZ/F mediumPhotoUrl: https:///profilephoto/7292o000000oAgZ/M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/7292o000000oAgZ/T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: >- /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal contentMediaType: application/json;charset=UTF-8 example: body: isRichText: false messageSegments: - text: Editing a comment type: Text text: Editing a comment capabilities: edit: isEditRestricted: false isEditableByMeUrl: >- /services/data/v58.0/chatter/comments/0D7.../capabilities/edit/is-editable-by-me lastEditedBy: additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: Firstname id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/7292o000000oAgZ/F mediumPhotoUrl: https:///profilephoto/7292o000000oAgZ/M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/7292o000000oAgZ/T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: >- /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal lastEditedDate: '2023-11-22T11:22:36.000Z' latestRevision: 2 relativeLastEditedDate: Just now status: feedEntityStatus: Published isApprovableByMe: true upDownVote: downVoteCount: 0 myVote: None upVoteCount: 0 verified: isVerifiableByMe: false isVerified: false isVerifiedByAnonymized: lastVerifiedByUser: lastVerifiedDate: clientInfo: createdDate: '2023-11-22T11:19:50.000Z' feedElement: id: 0D5... url: /services/data/v58.0/chatter/feed-elements/0D5... id: 0D7... isDeleteRestricted: false likes: currentPageToken: currentPageUrl: /services/data/v58.0/chatter/comments/0D7.../likes items: [] nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: total: 0 likesMessage: moderationFlags: myLike: parent: id: 005... url: /services/data/v58.0/chatter/users/005... relativeCreatedDate: 2m ago threadLevel: 0 threadParentId: type: TextComment url: /services/data/v58.0/chatter/comments/0D7... user: additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: Firstname id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/7292o000000oAgZ/F mediumPhotoUrl: https:///profilephoto/7292o000000oAgZ/M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/7292o000000oAgZ/T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK delete: tags: - Comments - Deletes summary: Salesforce Comment - Delete description: >- Get information about, edit, or delete a comment. https://developer.salesforce.com/docs/atlas.en-us.chatterapi.meta/chatterapi/connect_resources_comments_specific.htm#connect_resources_comments_specific operationId: Comment-Delete parameters: - name: COMMENT_ID in: path description: '' required: true schema: type: string example: '500123' responses: '204': description: No Content headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 22 Nov 2023 11:24:36 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block Content-Security-Policy: content: text/plain: schema: type: string contentMediaType: text/plain example: upgrade-insecure-requests X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private content: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/chatter/groups: get: tags: - Groups - Lists summary: Salesforce List of Groups description: >- A list of all the groups in the organization. Get information about groups or create a group. https://developer.salesforce.com/docs/atlas.en-us.chatterapi.meta/chatterapi/connect_resources_groups_ListOfGroups.htm operationId: ListofGroups parameters: [] responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 22 Nov 2023 11:25:52 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/SuccessfulListofGroups' - examples: - currentPageUrl: /services/data/v58.0/chatter/groups groups: - additionalLabel: announcement: bannerPhoto: bannerPhotoUrl: https:///profilephoto/0F9/B bannerPhotoVersionId: url: >- /services/data/v58.0/chatter/groups/0F9.../banner-photo canHaveChatterGuests: false community: description: Test group emailToChatterAddress: 0F9...@post.2o-i6mbeaq.eu25.chatter.salesforce.com fileCount: 0 id: 0F9... information: text: title: isArchived: false isAutoArchiveDisabled: false isBroadcast: false lastFeedElementPostDate: '2023-11-22T11:25:37.000Z' memberCount: 1 motif: color: 1B96FF largeIconUrl: /img/icon/groups64.png mediumIconUrl: /img/icon/groups32.png smallIconUrl: /img/icon/groups16.png svgIconUrl: myRole: GroupOwner mySubscription: id: 0FB... url: >- /services/data/v58.0/chatter/group-memberships/0FB... name: Test owner: additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Firstname firstName: Firstname id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Firstname outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: >- https:///profilephoto/7292o000000oAgZ/F mediumPhotoUrl: >- https:///profilephoto/7292o000000oAgZ/M photoVersionId: 729... smallPhotoUrl: >- https:///profilephoto/7292o000000oAgZ/T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: >- /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal pendingRequests: photo: fullEmailPhotoUrl: >- https:///img/userprofile/default_group_profile_200_v2.png?fromEmail=1 largePhotoUrl: https:///profilephoto/0F9/F mediumPhotoUrl: https:///profilephoto/0F9/M photoVersionId: smallPhotoUrl: https:///profilephoto/0F9/T standardEmailPhotoUrl: >- https:///img/userprofile/default_group_profile_45_v2.png?fromEmail=1 url: /services/data/v58.0/chatter/groups/0F9.../photo type: CollaborationGroup url: /services/data/v58.0/chatter/groups/0F9... visibility: PublicAccess nextPageUrl: previousPageUrl: contentMediaType: application/json;charset=UTF-8 example: currentPageUrl: /services/data/v58.0/chatter/groups groups: - additionalLabel: announcement: bannerPhoto: bannerPhotoUrl: https:///profilephoto/0F9/B bannerPhotoVersionId: url: /services/data/v58.0/chatter/groups/0F9.../banner-photo canHaveChatterGuests: false community: description: Test group emailToChatterAddress: 0F9...@post.2o-i6mbeaq.eu25.chatter.salesforce.com fileCount: 0 id: 0F9... information: text: title: isArchived: false isAutoArchiveDisabled: false isBroadcast: false lastFeedElementPostDate: '2023-11-22T11:25:37.000Z' memberCount: 1 motif: color: 1B96FF largeIconUrl: /img/icon/groups64.png mediumIconUrl: /img/icon/groups32.png smallIconUrl: /img/icon/groups16.png svgIconUrl: myRole: GroupOwner mySubscription: id: 0FB... url: /services/data/v58.0/chatter/group-memberships/0FB... name: Test owner: additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Firstname firstName: Firstname id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Firstname outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/7292o000000oAgZ/F mediumPhotoUrl: https:///profilephoto/7292o000000oAgZ/M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/7292o000000oAgZ/T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: >- /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal pendingRequests: photo: fullEmailPhotoUrl: >- https:///img/userprofile/default_group_profile_200_v2.png?fromEmail=1 largePhotoUrl: https:///profilephoto/0F9/F mediumPhotoUrl: https:///profilephoto/0F9/M photoVersionId: smallPhotoUrl: https:///profilephoto/0F9/T standardEmailPhotoUrl: >- https:///img/userprofile/default_group_profile_45_v2.png?fromEmail=1 url: /services/data/v58.0/chatter/groups/0F9.../photo type: CollaborationGroup url: /services/data/v58.0/chatter/groups/0F9... visibility: PublicAccess nextPageUrl: previousPageUrl: deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK post: tags: - Groups - Lists - Post summary: Salesforce List of Groups - Post description: >- A list of all the groups in the organization. Get information about groups or create a group. https://developer.salesforce.com/docs/atlas.en-us.chatterapi.meta/chatterapi/connect_resources_groups_ListOfGroups.htm operationId: ListofGroups-POST parameters: - name: name in: query description: '' required: true style: form explode: true schema: type: string examples: - New Chatter Group (Private Access) example: Example Title - name: visibility in: query description: >- PrivateAccess—Only members of the group can see posts to this group. PublicAccess—All users within the community can see posts to this group. Unlisted—Reserved for future use. required: true style: form explode: true schema: type: string examples: - PrivateAccess example: example_value - name: description in: query description: '' required: true style: form explode: true schema: type: string examples: - Created via API example: A sample description. - name: information in: query description: >- If the group is private, the “Information” section is visible only to members. required: true style: form explode: true schema: type: string examples: - Private Information example: example_value - name: isArchived in: query description: '' required: true style: form explode: true schema: type: boolean examples: - false example: true - name: isAutoArchiveDisabled in: query description: >- true if automatic archiving is turned off for the group, false otherwise. Defaults to false. If true, if there are no posts or comments for 90 days the group is archived. required: true style: form explode: true schema: type: boolean examples: - false example: true - name: isBroadcast in: query description: >- true if only group owners and managers can create posts in the group, false otherwise. required: true style: form explode: true schema: type: boolean examples: - false example: true - name: canHaveChatterGuests in: query description: '' required: true style: form explode: true schema: type: boolean examples: - true example: true responses: '201': description: Created headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 22 Nov 2023 11:29:04 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/SuccessfulListofGroups-POST' - examples: - additionalLabel: Private With Customers announcement: bannerPhoto: bannerPhotoUrl: https:///profilephoto/0F9/B bannerPhotoVersionId: url: >- /services/data/v58.0/chatter/groups/0F9.../banner-photo canHaveChatterGuests: true community: description: Created via API emailToChatterAddress: 0F9...@post.2o-i6mbeaq.eu25.chatter.salesforce.com fileCount: 0 id: 0F9... information: text: title: isArchived: false isAutoArchiveDisabled: false isBroadcast: false lastFeedElementPostDate: '2023-11-22T11:29:05.000Z' memberCount: 1 motif: color: 1B96FF largeIconUrl: /img/icon/groups64.png mediumIconUrl: /img/icon/groups32.png smallIconUrl: /img/icon/groups16.png svgIconUrl: myRole: GroupOwner mySubscription: id: 0FB... url: >- /services/data/v58.0/chatter/group-memberships/0FB... name: New Chatter Group (Private Access) owner: additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: Firstname id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/729.../F mediumPhotoUrl: https:///profilephoto/729.../M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/729.../T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: >- /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal pendingRequests: 0 photo: fullEmailPhotoUrl: >- https:///img/userprofile/default_group_profile_200_v2.png?fromEmail=1 largePhotoUrl: https:///profilephoto/0F9/F mediumPhotoUrl: https:///profilephoto/0F9/M photoVersionId: smallPhotoUrl: https:///profilephoto/0F9/T standardEmailPhotoUrl: >- https:///img/userprofile/default_group_profile_45_v2.png?fromEmail=1 url: /services/data/v58.0/chatter/groups/0F9.../photo type: CollaborationGroup url: /services/data/v58.0/chatter/groups/0F9... visibility: PrivateAccess contentMediaType: application/json;charset=UTF-8 example: additionalLabel: Private With Customers announcement: bannerPhoto: bannerPhotoUrl: https:///profilephoto/0F9/B bannerPhotoVersionId: url: /services/data/v58.0/chatter/groups/0F9.../banner-photo canHaveChatterGuests: true community: description: Created via API emailToChatterAddress: 0F9...@post.2o-i6mbeaq.eu25.chatter.salesforce.com fileCount: 0 id: 0F9... information: text: title: isArchived: false isAutoArchiveDisabled: false isBroadcast: false lastFeedElementPostDate: '2023-11-22T11:29:05.000Z' memberCount: 1 motif: color: 1B96FF largeIconUrl: /img/icon/groups64.png mediumIconUrl: /img/icon/groups32.png smallIconUrl: /img/icon/groups16.png svgIconUrl: myRole: GroupOwner mySubscription: id: 0FB... url: /services/data/v58.0/chatter/group-memberships/0FB... name: New Chatter Group (Private Access) owner: additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: Firstname id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/729.../F mediumPhotoUrl: https:///profilephoto/729.../M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/729.../T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal pendingRequests: 0 photo: fullEmailPhotoUrl: >- https:///img/userprofile/default_group_profile_200_v2.png?fromEmail=1 largePhotoUrl: https:///profilephoto/0F9/F mediumPhotoUrl: https:///profilephoto/0F9/M photoVersionId: smallPhotoUrl: https:///profilephoto/0F9/T standardEmailPhotoUrl: >- https:///img/userprofile/default_group_profile_45_v2.png?fromEmail=1 url: /services/data/v58.0/chatter/groups/0F9.../photo type: CollaborationGroup url: /services/data/v58.0/chatter/groups/0F9... visibility: PrivateAccess deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/chatter/groups/{GROUP_ID}/members/requests: get: tags: - Groups summary: Salesforce Group Members—private description: >- Request membership in a private group or get the status of requests to a join a private group. https://developer.salesforce.com/docs/atlas.en-us.chatterapi.meta/chatterapi/connect_resources_groups_GroupMembersRequests.htm operationId: GroupMembers—Private parameters: - name: GROUP_ID in: path description: '' required: true schema: type: string examples: - 0F9... example: '500123' responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 22 Nov 2023 11:47:04 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/SuccessfulGroupMembersPrivate' - examples: - requests: - createdDate: '2023-11-22T11:46:32.000Z' id: 0I5... lastUpdateDate: '2023-11-22T11:46:32.000Z' requestedGroup: id: 0F9... url: /services/data/v58.0/chatter/groups/0F9... responseMessage: status: Pending url: >- /services/data/v58.0/chatter/group-membership-requests/0I5... user: additionalLabel: communityNickname: User1700653511864742682 companyName: displayName: User Sample firstName: User id: 005... isActive: true isInThisCommunity: true lastName: Sample motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: User Sample outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///img/userprofile/default_profile_200_v2.png?fromEmail=1 largePhotoUrl: https:///profilephoto/005/F mediumPhotoUrl: https:///profilephoto/005/M photoVersionId: smallPhotoUrl: https:///profilephoto/005/T standardEmailPhotoUrl: >- https:///img/userprofile/default_profile_45_v2.png?fromEmail=1 url: >- /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal total: contentMediaType: application/json;charset=UTF-8 example: requests: - createdDate: '2023-11-22T11:46:32.000Z' id: 0I5... lastUpdateDate: '2023-11-22T11:46:32.000Z' requestedGroup: id: 0F9... url: /services/data/v58.0/chatter/groups/0F9... responseMessage: status: Pending url: >- /services/data/v58.0/chatter/group-membership-requests/0I5... user: additionalLabel: communityNickname: User1700653511864742682 companyName: displayName: User Sample firstName: User id: 005... isActive: true isInThisCommunity: true lastName: Sample motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: User Sample outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///img/userprofile/default_profile_200_v2.png?fromEmail=1 largePhotoUrl: https:///profilephoto/005/F mediumPhotoUrl: https:///profilephoto/005/M photoVersionId: smallPhotoUrl: https:///profilephoto/005/T standardEmailPhotoUrl: >- https:///img/userprofile/default_profile_45_v2.png?fromEmail=1 url: >- /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal total: deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK post: tags: - Groups - Post summary: Salesforce Group Members—private - Post description: >- Request membership in a private group or get the status of requests to a join a private group. https://developer.salesforce.com/docs/atlas.en-us.chatterapi.meta/chatterapi/connect_resources_groups_GroupMembersRequests.htm operationId: GroupMembers—Private-POST parameters: - name: GROUP_ID in: path description: '' required: true schema: type: string example: '500123' responses: '201': description: Created headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 22 Nov 2023 11:52:41 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/GroupMembersPrivate-POST' - examples: - createdDate: '2023-11-22T11:52:41.000Z' id: 0I5... lastUpdateDate: '2023-11-22T11:52:41.000Z' requestedGroup: id: 0F9... url: /services/data/v58.0/chatter/groups/0F9... responseMessage: status: Pending url: >- /services/data/v58.0/chatter/group-membership-requests/0I5... user: additionalLabel: communityNickname: User1700653511864742682 companyName: displayName: User Sample firstName: User id: 005... isActive: true isInThisCommunity: true lastName: Sample motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: User Sample outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///img/userprofile/default_profile_200_v2.png?fromEmail=1 largePhotoUrl: https:///profilephoto/005/F mediumPhotoUrl: https:///profilephoto/005/M photoVersionId: smallPhotoUrl: https:///profilephoto/005/T standardEmailPhotoUrl: >- https:///img/userprofile/default_profile_45_v2.png?fromEmail=1 url: >- /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal contentMediaType: application/json;charset=UTF-8 example: createdDate: '2023-11-22T11:52:41.000Z' id: 0I5... lastUpdateDate: '2023-11-22T11:52:41.000Z' requestedGroup: id: 0F9... url: /services/data/v58.0/chatter/groups/0F9... responseMessage: status: Pending url: /services/data/v58.0/chatter/group-membership-requests/0I5... user: additionalLabel: communityNickname: User1700653511864742682 companyName: displayName: User Sample firstName: User id: 005... isActive: true isInThisCommunity: true lastName: Sample motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: User Sample outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///img/userprofile/default_profile_200_v2.png?fromEmail=1 largePhotoUrl: https:///profilephoto/005/F mediumPhotoUrl: https:///profilephoto/005/M photoVersionId: smallPhotoUrl: https:///profilephoto/005/T standardEmailPhotoUrl: >- https:///img/userprofile/default_profile_45_v2.png?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/chatter/groups/group/{GROUP_ID}/invite: post: tags: - Groups - Invites summary: Salesforce Group Invites description: >- Invite internal and external users to join a group. https://developer.salesforce.com/docs/atlas.en-us.chatterapi.meta/chatterapi/connect_resources_groups_invites.htm#connect_resources_groups_invites operationId: GroupInvites parameters: - name: GROUP_ID in: path description: '' required: true schema: type: string example: '500123' requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/GroupInvitesRequest' - examples: - invitees: emails: - testemail1@sfdcpostman.com - testemail2@sfdcpostman.com message: >- Join this group to participate in the discussion about your favorite feature. contentMediaType: application/json example: invitees: emails: - testemail1@sfdcpostman.com - testemail2@sfdcpostman.com message: >- Join this group to participate in the discussion about your favorite feature. required: true responses: '201': description: Created headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 22 Nov 2023 11:49:28 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: type: string examples: - |- { "invitations": [ { "email": "testemail1@sfdcpostman.com", "status": "Invited", "userId": "" }, ... ] } contentMediaType: application/json;charset=UTF-8 example: |- { "invitations": [ { "email": "testemail1@sfdcpostman.com", "status": "Invited", "userId": "" }, ... ] } deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/chatter/groups/{GROUP_ID}/members: post: tags: - Groups - Members summary: Salesforce Group Members description: >- Members of a specified group. Get the members and add a member to a group. To add a member, the context user must be the group owner or moderator. https://developer.salesforce.com/docs/atlas.en-us.chatterapi.meta/chatterapi/connect_resources_groups_GroupMembers.htm operationId: GroupMembers parameters: - name: userId in: query description: '' required: true style: form explode: true schema: type: string examples: - example: '500123' - name: GROUP_ID in: path description: '' required: true schema: type: string example: '500123' responses: '201': description: Created headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 22 Nov 2023 11:31:07 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/SuccessfulGroupMembers' - examples: - id: 0FB... lastFeedAccessDate: role: StandardMember url: /services/data/v58.0/chatter/group-memberships/0FB... user: additionalLabel: communityNickname: integration1.4407085834085586E12 companyName: Salesforce displayName: Integration User firstName: Integration id: 005... isActive: true isInThisCommunity: true lastName: User motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Integration User outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///img/userprofile/default_profile_200_v2.png?fromEmail=1 largePhotoUrl: https:///profilephoto/005/F mediumPhotoUrl: https:///profilephoto/005/M photoVersionId: smallPhotoUrl: https:///profilephoto/005/T standardEmailPhotoUrl: >- https:///img/userprofile/default_profile_45_v2.png?fromEmail=1 url: >- /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal contentMediaType: application/json;charset=UTF-8 example: id: 0FB... lastFeedAccessDate: role: StandardMember url: /services/data/v58.0/chatter/group-memberships/0FB... user: additionalLabel: communityNickname: integration1.4407085834085586E12 companyName: Salesforce displayName: Integration User firstName: Integration id: 005... isActive: true isInThisCommunity: true lastName: User motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Integration User outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///img/userprofile/default_profile_200_v2.png?fromEmail=1 largePhotoUrl: https:///profilephoto/005/F mediumPhotoUrl: https:///profilephoto/005/M photoVersionId: smallPhotoUrl: https:///profilephoto/005/T standardEmailPhotoUrl: >- https:///img/userprofile/default_profile_45_v2.png?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/chatter/group-membership-requests/{CHATTER_GROUP_REQUEST_ID}: patch: tags: - Groups - Memberships summary: Salesforce Group Membership Requests—private description: >- Update the status of a request by a user to join a private group or get information about a request to join a private group. https://developer.salesforce.com/docs/atlas.en-us.chatterapi.meta/chatterapi/connect_resources_group_membership_requests.htm?search_text=group-membership-requests operationId: GroupMembershipRequests—Private parameters: - name: status in: query description: '' required: true style: form explode: true schema: type: string examples: - Accepted example: example_value - name: responseMessage in: query description: '' required: true style: form explode: true schema: type: string examples: - Welcome to the group! example: example_value - name: CHATTER_GROUP_REQUEST_ID in: path description: '' required: true schema: type: string example: '500123' responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 22 Nov 2023 11:50:19 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: >- #/components/schemas/SuccessfulGroupMembershipRequestsPrivate - examples: - createdDate: '2023-11-22T11:46:32.000Z' id: 0I5... lastUpdateDate: '2023-11-22T11:50:19.000Z' requestedGroup: id: 0F9... url: /services/data/v58.0/chatter/groups/0F9... responseMessage: status: Accepted url: >- /services/data/v58.0/chatter/group-membership-requests/0I5... user: additionalLabel: communityNickname: User1700653511864742682 companyName: displayName: User Sample firstName: User id: 005... isActive: true isInThisCommunity: true lastName: Sample motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: User Sample outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///img/userprofile/default_profile_200_v2.png?fromEmail=1 largePhotoUrl: https:///profilephoto/005/F mediumPhotoUrl: https:///profilephoto/005/M photoVersionId: smallPhotoUrl: https:///profilephoto/005/T standardEmailPhotoUrl: >- https:///img/userprofile/default_profile_45_v2.png?fromEmail=1 url: >- /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal contentMediaType: application/json;charset=UTF-8 example: createdDate: '2023-11-22T11:46:32.000Z' id: 0I5... lastUpdateDate: '2023-11-22T11:50:19.000Z' requestedGroup: id: 0F9... url: /services/data/v58.0/chatter/groups/0F9... responseMessage: status: Accepted url: /services/data/v58.0/chatter/group-membership-requests/0I5... user: additionalLabel: communityNickname: User1700653511864742682 companyName: displayName: User Sample firstName: User id: 005... isActive: true isInThisCommunity: true lastName: Sample motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: User Sample outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///img/userprofile/default_profile_200_v2.png?fromEmail=1 largePhotoUrl: https:///profilephoto/005/F mediumPhotoUrl: https:///profilephoto/005/M photoVersionId: smallPhotoUrl: https:///profilephoto/005/T standardEmailPhotoUrl: >- https:///img/userprofile/default_profile_45_v2.png?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/connect/user-profiles/me/photo: post: tags: - Photo - Users summary: Salesforce User Photo description: >- Get, post, and crop a user photo. To use an image from the Files page as a user photo, pass the file ID in the fileId property of the request body or in the fileId request parameter. Images uploaded on the User page don’t have a file ID and can’t be used as the fileId. To upload a binary file as the user photo, you must send it in a multipart/form-data message. For information about how to create the multipart/form-data message, see Uploading Binary Files. To display user profile photos in a feed, cache the user photos. Then use the photoVersionId property of the Photo response body to determine when you need to update a photo. This technique helps you avoid running over limits and may improve mobile client performance. operationId: UserPhoto parameters: [] requestBody: content: multipart/form-data: encoding: {} schema: required: - json - fileUpload type: object properties: json: allOf: - $ref: '#/components/schemas/json' - examples: - cropY: '0' cropX: '0' cropSize: '200' fileUpload: type: string contentEncoding: base64 contentMediaType: multipart/form-data examples: UserphotoRequestExample: summary: Default UserPhoto request x-microcks-default: true value: json: example_value fileUpload: example_value required: false responses: '201': description: Created headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 20 Nov 2023 16:15:44 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/SuccesfulUserPhoto' - examples: - fullEmailPhotoUrl: >- https:///img/userprofile/default_profile_200_v2.png?fromEmail=1 largePhotoUrl: https:///profilephoto/729.../F mediumPhotoUrl: https:///profilephoto/729.../M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/729.../T standardEmailPhotoUrl: >- https:///img/userprofile/default_profile_45_v2.png?fromEmail=1 url: >- /services/data/v58.0/connect/user-profiles/005.../photo contentMediaType: application/json;charset=UTF-8 example: fullEmailPhotoUrl: >- https:///img/userprofile/default_profile_200_v2.png?fromEmail=1 largePhotoUrl: https:///profilephoto/729.../F mediumPhotoUrl: https:///profilephoto/729.../M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/729.../T standardEmailPhotoUrl: >- https:///img/userprofile/default_profile_45_v2.png?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/chatter/users/me/messages: post: tags: - General - Messages - Users summary: Salesforce User Messages, General description: >- Returns all the messages for all the private conversations for the context user. Also used to search across all messages and post a message. To return all private conversations for the context user, see User Conversations, General. https://developer.salesforce.com/docs/atlas.en-us.chatterapi.meta/chatterapi/connect_resources_users_messages_general.htm operationId: UserMessages,General parameters: - name: text in: query description: '' required: true style: form explode: true schema: type: string examples: - This is a private message example: example_value - name: recipients in: query description: Comma-separated list of User IDs required: true style: form explode: true schema: type: string examples: - , example: example_value responses: '201': description: Created headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 20 Nov 2023 16:22:22 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/SuccessfulUserMessagesGeneral' - examples: - body: isRichText: messageSegments: [] text: This is a private message conversationId: 03M... conversationUrl: >- /services/data/v58.0/chatter/users/me/conversations/03M... id: 03J... recipients: - additionalLabel: communityNickname: automatedprocess companyName: Salesforce displayName: Automated Process firstName: Automated id: 005... isActive: true isInThisCommunity: true lastName: Process motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Automated Process outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///img/userprofile/default_profile_200_v2.png?fromEmail=1 largePhotoUrl: https:///profilephoto/005/F mediumPhotoUrl: https:///profilephoto/005/M photoVersionId: smallPhotoUrl: https:///profilephoto/005/T standardEmailPhotoUrl: >- https:///img/userprofile/default_profile_45_v2.png?fromEmail=1 url: >- /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: System - additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: FirstName id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/729.../F mediumPhotoUrl: https:///profilephoto/729.../M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/729.../T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: >- /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal sender: additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: Firstname id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/729.../F mediumPhotoUrl: https:///profilephoto/729.../M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/729.../T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: >- /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal sendingCommunity: sentDate: url: /services/data/v58.0/chatter/users/me/messages/03J... contentMediaType: application/json;charset=UTF-8 example: body: isRichText: messageSegments: [] text: This is a private message conversationId: 03M... conversationUrl: /services/data/v58.0/chatter/users/me/conversations/03M... id: 03J... recipients: - additionalLabel: communityNickname: automatedprocess companyName: Salesforce displayName: Automated Process firstName: Automated id: 005... isActive: true isInThisCommunity: true lastName: Process motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Automated Process outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///img/userprofile/default_profile_200_v2.png?fromEmail=1 largePhotoUrl: https:///profilephoto/005/F mediumPhotoUrl: https:///profilephoto/005/M photoVersionId: smallPhotoUrl: https:///profilephoto/005/T standardEmailPhotoUrl: >- https:///img/userprofile/default_profile_45_v2.png?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: System - additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: FirstName id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/729.../F mediumPhotoUrl: https:///profilephoto/729.../M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/729.../T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal sender: additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: Firstname id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/729.../F mediumPhotoUrl: https:///profilephoto/729.../M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/729.../T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal sendingCommunity: sentDate: url: /services/data/v58.0/chatter/users/me/messages/03J... deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/chatter/users/{USER_ID}/following: get: tags: - Following summary: Salesforce Following description: >- Returns a list of people, groups, records, topics, and files that the specified user is following. Also used to follow records. https://developer.salesforce.com/docs/atlas.en-us.chatterapi.meta/chatterapi/connect_resources_users_FollowingUsers.htm?search_text=following operationId: Following parameters: - name: USER_ID in: path description: '' required: true schema: type: string example: '500123' responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 20 Nov 2023 16:25:01 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/SuccessfulFollowing' - examples: - currentPageUrl: >- /services/data/v58.0/chatter/users/0052o00000DKQasAAH/following following: [] nextPageUrl: previousPageUrl: total: 0 contentMediaType: application/json;charset=UTF-8 example: currentPageUrl: >- /services/data/v58.0/chatter/users/0052o00000DKQasAAH/following following: [] nextPageUrl: previousPageUrl: total: 0 deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK post: tags: - Following - Post summary: Salesforce Following - Post description: >- Returns a list of people, groups, records, topics, and files that the specified user is following. Also used to follow records. https://developer.salesforce.com/docs/atlas.en-us.chatterapi.meta/chatterapi/connect_resources_users_FollowingUsers.htm?search_text=following operationId: Following-POST parameters: - name: subjectId in: query description: '' required: true style: form explode: true schema: type: string examples: - example: '500123' - name: USER_ID in: path description: '' required: true schema: type: string example: '500123' responses: '201': description: Created headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 20 Nov 2023 16:27:09 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/SuccessfulFollowing-POST' - examples: - community: id: 0E8... subject: entityLabel: label: Account labelPlural: Accounts id: 001... motif: color: '5867E8' largeIconUrl: /img/icon/accounts64.png mediumIconUrl: /img/icon/accounts32.png smallIconUrl: /img/icon/accounts16.png svgIconUrl: mySubscription: name: Exemple de comptes pour les autorisations type: Account url: /services/data/v58.0/chatter/records/001... subscriber: additionalLabel: communityNickname: integration1.4407085834085586E12 companyName: Salesforce displayName: Integration User firstName: Integration id: 005... isActive: true isInThisCommunity: true lastName: User motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Integration User outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///img/userprofile/default_profile_200_v2.png?fromEmail=1 largePhotoUrl: https:///profilephoto/005/F mediumPhotoUrl: https:///profilephoto/005/M photoVersionId: smallPhotoUrl: https:///profilephoto/005/T standardEmailPhotoUrl: >- https:///img/userprofile/default_profile_45_v2.png?fromEmail=1 url: >- /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal url: /services/data/v58.0/chatter/subscriptions/0E8... contentMediaType: application/json;charset=UTF-8 example: community: id: 0E8... subject: entityLabel: label: Account labelPlural: Accounts id: 001... motif: color: '5867E8' largeIconUrl: /img/icon/accounts64.png mediumIconUrl: /img/icon/accounts32.png smallIconUrl: /img/icon/accounts16.png svgIconUrl: mySubscription: name: Exemple de comptes pour les autorisations type: Account url: /services/data/v58.0/chatter/records/001... subscriber: additionalLabel: communityNickname: integration1.4407085834085586E12 companyName: Salesforce displayName: Integration User firstName: Integration id: 005... isActive: true isInThisCommunity: true lastName: User motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Integration User outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///img/userprofile/default_profile_200_v2.png?fromEmail=1 largePhotoUrl: https:///profilephoto/005/F mediumPhotoUrl: https:///profilephoto/005/M photoVersionId: smallPhotoUrl: https:///profilephoto/005/T standardEmailPhotoUrl: >- https:///img/userprofile/default_profile_45_v2.png?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal url: /services/data/v58.0/chatter/subscriptions/0E8... deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/chatter/subscriptions/{SUBSCRIPTION_ID}: delete: tags: - Deletes - Subscriptions summary: Salesforce Delete Subscription description: >- Information about the specified subscription. Also used to delete a subscription, for example, to unfollow a record or a topic. A subscription ID is returned as part of the response body for follower and following resources, for example, /records/recordId/followers. In addition, subscriptions IDs are also returned in many summary response bodies, such as group summary or user summary. https://developer.salesforce.com/docs/atlas.en-us.chatterapi.meta/chatterapi/connect_resources_subscriptions.htm operationId: DeleteSubscription parameters: - name: SUBSCRIPTION_ID in: path description: '' required: true schema: type: string examples: - 0E8... example: '500123' responses: '204': description: No Content headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 22 Nov 2023 11:34:47 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block Content-Security-Policy: content: text/plain: schema: type: string contentMediaType: text/plain example: upgrade-insecure-requests X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private content: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/connect/business-rules/expression-set/version/{expressionSetVersionId}/dependencies: get: tags: - Dependencies - Expression - Retrieves - Sets - Versions summary: Salesforce Retrieve Expression Set Version Dependencies description: >- [https://developer.salesforce.com/docs/atlas.en-us.industries_reference.meta/industries_reference/connect_resources_expression_set_dependencies.htm](https://developer.salesforce.com/docs/atlas.en-us.industries_reference.meta/industries_reference/connect_resources_expression_set_dependencies.htm) # Expression Set Version Dependencies (GET) Retrieve expression set version dependencies.Resource ``` /connect/business-rules/expression-set/version/${expressionSetVersionId}/dependencies ``` Resource Example ``` https://yourInstance.salesforce.com/services/data/v58.0/connect/business-rules/expression-set/version/9QARN000000016v4AA/dependencies ``` Available version 58.0 Requires Chatter No HTTP methods GET Response body for GET [Expression Set Version Dependency](https://developer.salesforce.com/docs/atlas.en-us.industries_reference.meta/industries_reference/connect_responses_expression_set_version_dependency_output.htm) operationId: Retrieveexpressionsetversiondependencies parameters: - name: expressionSetVersionId in: path description: 'Expression Set Version Id: For Example 9QLHo000000LBjEOAW' required: true schema: type: string examples: - 9QMHo000000LBnbOAG example: '500123' responses: '400': description: Bad Request headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 06 Sep 2023 14:28:18 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: type: array items: $ref: '#/components/schemas/Status400-BadRequest1' description: '' examples: - - errorCode: INVALID_ID_FIELD message: 'Invalid identifier: 9QLHo000000LBjJOAW' contentMediaType: application/json;charset=UTF-8 example: - errorCode: INVALID_ID_FIELD message: 'Invalid identifier: 9QLHo000000LBjJOAW' '404': description: Not Found headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 06 Sep 2023 14:29:34 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: type: array items: $ref: '#/components/schemas/Status404-RecordNotFound1' description: '' examples: - - errorCode: NOT_FOUND message: The requested resource does not exist contentMediaType: application/json;charset=UTF-8 example: - errorCode: NOT_FOUND message: The requested resource does not exist '500': description: Server Error headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 06 Sep 2023 14:26:46 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: type: array items: $ref: '#/components/schemas/Status500-UnexpectedError1' description: '' examples: - - errorCode: INTERNAL_ERROR message: Unexpected Error contentMediaType: application/json;charset=UTF-8 example: - errorCode: INTERNAL_ERROR message: Unexpected Error deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/connect/business-rules/expression-set: post: tags: - Creation - Expression - Sets summary: Salesforce Expression Set Creation description: >- [https://developer.salesforce.com/docs/atlas.en-us.246.0.industries_reference.meta/industries_reference/connect_resources_bre_create_expression_set.htm](https://developer.salesforce.com/docs/atlas.en-us.246.0.industries_reference.meta/industries_reference/connect_resources_bre_create_expression_set.htm) # Expression Set Creation (POST) Creates an expression set in Business Rules Engine. An expression set performs a series of calculations by using lookup tables and user-defined variables and constants.Resource ``` /connect/business-rules/expression-set ``` Resource Example ``` https://yourInstance.salesforce.com/services/data/v59.0/connect /business-rules/expression-set ``` Available version 58.0 Requires Chatter No HTTP methods POST Request body for POST Root XML tag JSON example ``` { "name": "CTX Mapping ES", "apiName": "CTX_Mapping_ES_1", "description": "...", "usageType": "Bre", "contextDefinitions": [ { "id": "11Oxx0000006PcLEAU" } ], "versions": [ { "name": "CTX_Mapping_ES_1 V1", "apiName": "CTX_Mapping_ES_1_V1", "description": "Sample CTX Mapping", "startDate": "2022-11-14T20:31:47.000+0000", "endDate": "2022-11-14T20:31:47.000+0000", "versionNumber": 1, "rank": 1, "enabled": true, "showExplExternally": false, "steps": [ { "name": "Condition1", "description": "Condition step for conditions w.r.t product", "sequenceNumber": 1, "resultIncluded": true, "stepType": "Condition", "conditionExpression": { "expression": "productName == 'iPhone' && productColor == 'Red'", "resultParameter": "condition_output__1" } } ], "variables": [ { "name": "productName", "collection": false, "dataType": "Text", "description": "productName", "input": true, "output": false, "type": "Variable" }, { "name": "productColor", "collection": false, "dataType": "Text", "description": "productColor", "input": true, "output": false, "type": "Variable" }, { "name": "condition_output__1", "dataType": "Boolean", "description": "condition_output__1", "input": false, "output": true, "resultStep": "Condition1", "type": "Variable" } ] } ] } ``` Properties | Name | Type | Description | Required or Optional | Available Version | | --- | --- | --- | --- | --- | | apiName | String | Unique name of the expression set. | Required | 58.0 | | context​Definitions | [Context Definition Input](https://developer.salesforce.com/docs/atlas.en-us.industries_reference.meta/industries_reference/connect_requests_context_definition_input.htm) | List of context definitions in an expression set. | Optional | 58.0 | | description | String | Description of the expression set. | Optional | 58.0 | | name | String | Name of the expression set. | Required | 58.0 | | usage​Type | String | Usage type of the expression set.

Valid values are:

- AiAccelerator​SubscriberChurn​Prediction—Used for Industries Einstein

- Bre—Used for Business Rules Engine

- CustomLoyalty—Used for Loyalty Management

- DefaultPricing—Used for Pricing Plans in Enterprise Product Catalog (EPC) by Communications Cloud

- Qualification—Used for Industries Communications, Media, and Energy (CME)

- RecordAlert—Used for Financial Services Cloud

- ShipAndDebit—Used for Manufacturing Cloud

- TierProcessing—Used for Loyalty Management

- TransactionJournal—Used for Loyalty Management

- WarrantyClaim—Used for Manufacturing Cloud | Required | 58.0 | | versions | [Expression Set Version Input](https://developer.salesforce.com/docs/atlas.en-us.industries_reference.meta/industries_reference/connect_requests_expression_set_version.htm)\[\] | List of the expression set versions. | Optional | 58.0 | Response body for POST [Expression Set Output](https://developer.salesforce.com/docs/atlas.en-us.industries_reference.meta/industries_reference/connect_responses_expression_set_output.htm) operationId: ExpressionSetCreation parameters: [] requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/ExpressionSetCreationRequest' - examples: - apiName: myExpressionSet2 contextDefinitions: [] name: myExpressionSet3 usageType: Bre versions: - apiName: myExpressionSet_V1 enabled: false id: 9QMHo000000LBjOOAW name: myExpressionSet V1 showExplExternally: false startDate: '2023-09-06T10:35:11.000Z' steps: [] variables: [] versionNumber: 1 contentMediaType: application/json example: apiName: myExpressionSet2 contextDefinitions: [] name: myExpressionSet3 usageType: Bre versions: - apiName: myExpressionSet_V1 enabled: false id: 9QMHo000000LBjOOAW name: myExpressionSet V1 showExplExternally: false startDate: '2023-09-06T10:35:11.000Z' steps: [] variables: [] versionNumber: 1 required: true responses: '201': description: Created headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 06 Sep 2023 10:35:10 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: >- #/components/schemas/Status201-SuccessCreatedOnlyMandatoryFields - examples: - apiName: myExpressionSet contextDefinitions: [] id: 9QLHo000000LBjJOAW name: myExpressionSet usageType: Bre versions: - apiName: myExpressionSet_V1 enabled: false id: 9QMHo000000LBjOOAW name: myExpressionSet V1 showExplExternally: false startDate: '2023-09-06T10:35:11.000Z' steps: [] variables: [] versionNumber: 1 contentMediaType: application/json;charset=UTF-8 example: apiName: myExpressionSet contextDefinitions: [] id: 9QLHo000000LBjJOAW name: myExpressionSet usageType: Bre versions: - apiName: myExpressionSet_V1 enabled: false id: 9QMHo000000LBjOOAW name: myExpressionSet V1 showExplExternally: false startDate: '2023-09-06T10:35:11.000Z' steps: [] variables: [] versionNumber: 1 '400': description: Bad Request headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 06 Sep 2023 10:31:10 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: type: array items: $ref: '#/components/schemas/Status400-MissingMandatoryBodyField1' description: '' examples: - - errorCode: INVALID_INPUT message: Specify a value for name parameter and try again. contentMediaType: application/json;charset=UTF-8 example: - errorCode: INVALID_INPUT message: Specify a value for name parameter and try again. '500': description: Server Error headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 06 Sep 2023 10:21:45 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: type: array items: $ref: '#/components/schemas/Status500-ErrorNoBody1' description: '' examples: - - message: >- An unexpected error occurred. Please include this ErrorId if you contact support: 675649159-184801 (-177293139) errorCode: UNKNOWN_EXCEPTION contentMediaType: application/json;charset=UTF-8 example: - message: >- An unexpected error occurred. Please include this ErrorId if you contact support: 675649159-184801 (-177293139) errorCode: UNKNOWN_EXCEPTION deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/connect/business-rules/expression-set/{expressionSetId}: get: tags: - Expression - Retrieves - Sets summary: Salesforce Expression Set Retrieve description: >- # Expression Set Retrieve and Delete (DELETE, GET) Endpoints to read, and delete expression set.Resource ``` /connect/business-rules/expression-set/${expressionSetId} ``` Resource Example ``` https://yourInstance.salesforce.com/services/data/v59.0/connect /business-rules/expressionSet/$11Oxx0000006PcLEAU ``` Available version 58.0 Requires Chatter No HTTP methods DELETE, GET Request body for GET Root XML tag JSON example ``` { "name": "CTX Mapping ES", "apiName": "CTX_Mapping_ES_1", "description": "...", "usageType": "Bre", "contextDefinitions": [ { "id": "11Oxx0000006PcLEAU" } ], "versions": [ { "name": "CTX_Mapping_ES_1 V1", "apiName": "CTX_Mapping_ES_1_V1", "description": "Sample CTX Mapping", "startDate": "2022-11-14T20:31:47.000+0000", "endDate": "2022-11-14T20:31:47.000+0000", "versionNumber": 1, "rank": 1, "enabled": true, "showExplExternally": false, "steps": [ { "name": "Condition1", "description": "Condition step for conditions w.r.t product", "sequenceNumber": 1, "resultIncluded": true, "stepType": "Condition", "conditionExpression": { "expression": "productName == 'iPhone' && productColor == 'Red'", "resultParameter": "condition_output__1" } } ], "variables": [ { "name": "productName", "collection": false, "dataType": "Text", "description": "productName", "input": true, "output": false, "type": "Variable" }, { "name": "productColor", "collection": false, "dataType": "Text", "description": "productColor", "input": true, "output": false, "type": "Variable" }, { "name": "condition_output__1", "dataType": "Boolean", "description": "condition_output__1", "input": false, "output": true, "resultStep": "Condition1", "type": "Variable" } ] } ] } ``` Properties | Name | Type | Description | Required or Optional | Available Version | | --- | --- | --- | --- | --- | | apiName | String | Unique name of the expression set. | Required | 58.0 | | context​Definitions | [Context Definition Input](https://developer.salesforce.com/docs/atlas.en-us.industries_reference.meta/industries_reference/connect_requests_context_definition_input.htm) | List of context definitions in an expression set. | Optional | 58.0 | | description | String | Description of the expression set. | Optional | 58.0 | | name | String | Name of the expression set. | Required | 58.0 | | usage​Type | String | Usage type of the expression set.

Valid values are:

\- AiAccelerator​SubscriberChurn​Prediction—Used for Industries Einstein

\- Bre—Used for Business Rules Engine

\- CustomLoyalty—Used for Loyalty Management

\- DefaultPricing—Used for Pricing Plans in Enterprise Product Catalog (EPC) by Communications Cloud

\- Qualification—Used for Industries Communications, Media, and Energy (CME)

\- RecordAlert—Used for Financial Services Cloud

\- ShipAndDebit—Used for Manufacturing Cloud

\- TierProcessing—Used for Loyalty Management

\- TransactionJournal—Used for Loyalty Management

\- WarrantyClaim—Used for Manufacturing Cloud | Required | 58.0 | | versions | [Expression Set Version Input](https://developer.salesforce.com/docs/atlas.en-us.industries_reference.meta/industries_reference/connect_requests_expression_set_version.htm)\[\] | List of the expression set versions. | Optional | 58.0 | Response body for GET[Expression Set Output](https://developer.salesforce.com/docs/atlas.en-us.industries_reference.meta/industries_reference/connect_responses_expression_set_output.htm) operationId: ExpressionSetRetrieve parameters: - name: expressionSetId in: path description: 'Expression Set Id: For Example 9QLHo000000LBjEOAW' required: true schema: type: string examples: - 9QLHo000000LBngOAG example: '500123' responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 06 Sep 2023 09:34:42 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/Status200-RecordFound' - examples: - apiName: myExpressionSet contextDefinitions: [] id: 9QLHo000000LBjEOAW name: myExpressionSet usageType: Bre versions: - apiName: myExpressionSet_V1 description: myExpressionSet V1 Description enabled: true id: 9QMHo000000LBjJOAW name: myExpressionSet V1 rank: 1 showExplExternally: true startDate: '2023-09-06T09:27:06.000Z' steps: - actionType: AssignParameterValues assignment: assignedParameter: condition_output__1 expression: 'true' description: my Description name: myCalculation resultIncluded: true sequenceNumber: 1 shouldExposeConditionDetails: false shouldExposeExecPathMsgOnly: true shouldShowExplExternally: false stepType: BusinessKnowledgeModel variables: - collection: false dataType: Boolean description: condition_output__1 input: false name: condition_output__1 output: true type: Variable value: 'False' - collection: false dataType: Boolean description: condition_output__2 input: false name: condition_output__2 output: false type: Variable value: 'False' versionNumber: 1 contentMediaType: application/json;charset=UTF-8 example: apiName: myExpressionSet contextDefinitions: [] id: 9QLHo000000LBjEOAW name: myExpressionSet usageType: Bre versions: - apiName: myExpressionSet_V1 description: myExpressionSet V1 Description enabled: true id: 9QMHo000000LBjJOAW name: myExpressionSet V1 rank: 1 showExplExternally: true startDate: '2023-09-06T09:27:06.000Z' steps: - actionType: AssignParameterValues assignment: assignedParameter: condition_output__1 expression: 'true' description: my Description name: myCalculation resultIncluded: true sequenceNumber: 1 shouldExposeConditionDetails: false shouldExposeExecPathMsgOnly: true shouldShowExplExternally: false stepType: BusinessKnowledgeModel variables: - collection: false dataType: Boolean description: condition_output__1 input: false name: condition_output__1 output: true type: Variable value: 'False' - collection: false dataType: Boolean description: condition_output__2 input: false name: condition_output__2 output: false type: Variable value: 'False' versionNumber: 1 '400': description: Bad Request headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 06 Sep 2023 10:29:39 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: type: array items: $ref: '#/components/schemas/Status400-PreviouslyDeletedRecord1' description: '' examples: - - errorCode: INVALID_INPUT message: The expression set id is not available. contentMediaType: application/json;charset=UTF-8 example: - errorCode: INVALID_INPUT message: The expression set id is not available. '404': description: Not Found headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 06 Sep 2023 09:56:59 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: type: array items: $ref: '#/components/schemas/Status404-RecordNotFound1' description: '' examples: - - errorCode: NOT_FOUND message: The requested resource does not exist contentMediaType: application/json;charset=UTF-8 example: - errorCode: NOT_FOUND message: The requested resource does not exist deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK patch: tags: - Expression - Sets - Update summary: Salesforce Expression Set Update description: >- # Expression Set Update (PATCH) Endpoints to read, and update expression set.Resource ``` /connect/business-rules/expression-set/${expressionSetId} ``` Resource Example ``` https://yourInstance.salesforce.com/services/data/v59.0/connect /business-rules/expressionSet/$11Oxx0000006PcLEAU ``` Available version 58.0 Requires Chatter No HTTP methods DELETE, GET, PATCH Response body for GET [Expression Set Output](https://developer.salesforce.com/docs/atlas.en-us.industries_reference.meta/industries_reference/connect_responses_expression_set_output.htm) Request body for PATCH Root XML tag JSON example ``` { "name": "CTX Mapping ES", "apiName": "CTX_Mapping_ES_1", "description": "...", "usageType": "Bre", "contextDefinitions": [ { "id": "11Oxx0000006PcLEAU" } ], "versions": [ { "name": "CTX_Mapping_ES_1 V1", "apiName": "CTX_Mapping_ES_1_V1", "description": "Sample CTX Mapping", "startDate": "2022-11-14T20:31:47.000+0000", "endDate": "2022-11-14T20:31:47.000+0000", "versionNumber": 1, "rank": 1, "enabled": true, "showExplExternally": false, "steps": [ { "name": "Condition1", "description": "Condition step for conditions w.r.t product", "sequenceNumber": 1, "resultIncluded": true, "stepType": "Condition", "conditionExpression": { "expression": "productName == 'iPhone' && productColor == 'Red'", "resultParameter": "condition_output__1" } } ], "variables": [ { "name": "productName", "collection": false, "dataType": "Text", "description": "productName", "input": true, "output": false, "type": "Variable" }, { "name": "productColor", "collection": false, "dataType": "Text", "description": "productColor", "input": true, "output": false, "type": "Variable" }, { "name": "condition_output__1", "dataType": "Boolean", "description": "condition_output__1", "input": false, "output": true, "resultStep": "Condition1", "type": "Variable" } ] } ] } ``` Properties | Name | Type | Description | Required or Optional | Available Version | | --- | --- | --- | --- | --- | | apiName | String | Unique name of the expression set. | Required | 58.0 | | context​Definitions | [Context Definition Input](https://developer.salesforce.com/docs/atlas.en-us.industries_reference.meta/industries_reference/connect_requests_context_definition_input.htm) | List of context definitions in an expression set. | Optional | 58.0 | | description | String | Description of the expression set. | Optional | 58.0 | | name | String | Name of the expression set. | Required | 58.0 | | usage​Type | String | Usage type of the expression set.

Valid values are:

- AiAccelerator​SubscriberChurn​Prediction—Used for Industries Einstein

- Bre—Used for Business Rules Engine

- CustomLoyalty—Used for Loyalty Management

- DefaultPricing—Used for Pricing Plans in Enterprise Product Catalog (EPC) by Communications Cloud

- Qualification—Used for Industries Communications, Media, and Energy (CME)

- RecordAlert—Used for Financial Services Cloud

- ShipAndDebit—Used for Manufacturing Cloud

- TierProcessing—Used for Loyalty Management

- TransactionJournal—Used for Loyalty Management

- WarrantyClaim—Used for Manufacturing Cloud | Required | 58.0 | | versions | [Expression Set Version Input](https://developer.salesforce.com/docs/atlas.en-us.industries_reference.meta/industries_reference/connect_requests_expression_set_version.htm)\[\] | List of the expression set versions. | Optional | 58.0 | Response body for PATCH [Expression Set Output](https://developer.salesforce.com/docs/atlas.en-us.industries_reference.meta/industries_reference/connect_responses_expression_set_output.htm) operationId: ExpressionSetUpdate parameters: - name: expressionSetId in: path description: 'Expression Set Id: For Example 9QLHo000000LBjEOAW' required: true schema: type: string examples: - 9QLHo000000LBjJOAW example: '500123' requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/ExpressionSetUpdateRequest' - examples: - apiName: myExpressionSet contextDefinitions: [] name: myExpressionSet2 usageType: Bre versions: - apiName: myExpressionSet_V1 enabled: false id: 9QMHo000000LBjOOAW name: myExpressionSet V1 showExplExternally: false startDate: '2023-09-06T10:35:11.000Z' steps: [] variables: [] versionNumber: 1 contentMediaType: application/json example: apiName: myExpressionSet contextDefinitions: [] name: myExpressionSet2 usageType: Bre versions: - apiName: myExpressionSet_V1 enabled: false id: 9QMHo000000LBjOOAW name: myExpressionSet V1 showExplExternally: false startDate: '2023-09-06T10:35:11.000Z' steps: [] variables: [] versionNumber: 1 required: true responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 06 Sep 2023 10:48:19 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/Status200-SuccessfullyUpdated' - examples: - apiName: myExpressionSet contextDefinitions: [] id: 9QLHo000000LBjJOAW name: myExpressionSet2 usageType: Bre versions: - apiName: myExpressionSet_V1 enabled: false id: 9QMHo000000LBjOOAW name: myExpressionSet V1 showExplExternally: false startDate: '2023-09-06T10:35:11.000Z' steps: [] variables: [] versionNumber: 1 contentMediaType: application/json;charset=UTF-8 example: apiName: myExpressionSet contextDefinitions: [] id: 9QLHo000000LBjJOAW name: myExpressionSet2 usageType: Bre versions: - apiName: myExpressionSet_V1 enabled: false id: 9QMHo000000LBjOOAW name: myExpressionSet V1 showExplExternally: false startDate: '2023-09-06T10:35:11.000Z' steps: [] variables: [] versionNumber: 1 '400': description: Bad Request headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 06 Sep 2023 10:44:53 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: type: array items: $ref: '#/components/schemas/Status400-UnrecognizedBodyField1' description: '' examples: - - errorCode: JSON_PARSER_ERROR message: Unrecognized field "id" at [line:4, column:12] contentMediaType: application/json;charset=UTF-8 example: - errorCode: JSON_PARSER_ERROR message: Unrecognized field "id" at [line:4, column:12] '404': description: Not Found headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 06 Sep 2023 10:46:00 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: type: array items: $ref: '#/components/schemas/Status404-RecordNotFound1' description: '' examples: - - errorCode: NOT_FOUND message: The requested resource does not exist contentMediaType: application/json;charset=UTF-8 example: - errorCode: NOT_FOUND message: The requested resource does not exist '500': description: Server Error headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 06 Sep 2023 10:43:16 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: type: array items: $ref: '#/components/schemas/Status500-ErrorNoBody1' description: '' examples: - - message: >- An unexpected error occurred. Please include this ErrorId if you contact support: 1895340064-166877 (-1526419893) errorCode: UNKNOWN_EXCEPTION contentMediaType: application/json;charset=UTF-8 example: - message: >- An unexpected error occurred. Please include this ErrorId if you contact support: 1895340064-166877 (-1526419893) errorCode: UNKNOWN_EXCEPTION deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK delete: tags: - Deletes - Expression - Sets summary: Salesforce Expression Set Delete description: >- # Expression Set Retrieve and Delete (DELETE, GET) Endpoints to read, and delete expression set.Resource ``` /connect/business-rules/expression-set/${expressionSetId} ``` Resource Example ``` https://yourInstance.salesforce.com/services/data/v59.0/connect /business-rules/expressionSet/$11Oxx0000006PcLEAU ``` Available version 58.0 Requires Chatter No HTTP methods DELETE, GET Request body for GET Root XML tag JSON example ``` { "name": "CTX Mapping ES", "apiName": "CTX_Mapping_ES_1", "description": "...", "usageType": "Bre", "contextDefinitions": [ { "id": "11Oxx0000006PcLEAU" } ], "versions": [ { "name": "CTX_Mapping_ES_1 V1", "apiName": "CTX_Mapping_ES_1_V1", "description": "Sample CTX Mapping", "startDate": "2022-11-14T20:31:47.000+0000", "endDate": "2022-11-14T20:31:47.000+0000", "versionNumber": 1, "rank": 1, "enabled": true, "showExplExternally": false, "steps": [ { "name": "Condition1", "description": "Condition step for conditions w.r.t product", "sequenceNumber": 1, "resultIncluded": true, "stepType": "Condition", "conditionExpression": { "expression": "productName == 'iPhone' && productColor == 'Red'", "resultParameter": "condition_output__1" } } ], "variables": [ { "name": "productName", "collection": false, "dataType": "Text", "description": "productName", "input": true, "output": false, "type": "Variable" }, { "name": "productColor", "collection": false, "dataType": "Text", "description": "productColor", "input": true, "output": false, "type": "Variable" }, { "name": "condition_output__1", "dataType": "Boolean", "description": "condition_output__1", "input": false, "output": true, "resultStep": "Condition1", "type": "Variable" } ] } ] } ``` Properties | Name | Type | Description | Required or Optional | Available Version | | --- | --- | --- | --- | --- | | apiName | String | Unique name of the expression set. | Required | 58.0 | | context​Definitions | [Context Definition Input](https://developer.salesforce.com/docs/atlas.en-us.industries_reference.meta/industries_reference/connect_requests_context_definition_input.htm) | List of context definitions in an expression set. | Optional | 58.0 | | description | String | Description of the expression set. | Optional | 58.0 | | name | String | Name of the expression set. | Required | 58.0 | | usage​Type | String | Usage type of the expression set.

Valid values are:

\- AiAccelerator​SubscriberChurn​Prediction—Used for Industries Einstein

\- Bre—Used for Business Rules Engine

\- CustomLoyalty—Used for Loyalty Management

\- DefaultPricing—Used for Pricing Plans in Enterprise Product Catalog (EPC) by Communications Cloud

\- Qualification—Used for Industries Communications, Media, and Energy (CME)

\- RecordAlert—Used for Financial Services Cloud

\- ShipAndDebit—Used for Manufacturing Cloud

\- TierProcessing—Used for Loyalty Management

\- TransactionJournal—Used for Loyalty Management

\- WarrantyClaim—Used for Manufacturing Cloud | Required | 58.0 | | versions | [Expression Set Version Input](https://developer.salesforce.com/docs/atlas.en-us.industries_reference.meta/industries_reference/connect_requests_expression_set_version.htm)\[\] | List of the expression set versions. | Optional | 58.0 | Response body for GET [Expression Set Output](https://developer.salesforce.com/docs/atlas.en-us.industries_reference.meta/industries_reference/connect_responses_expression_set_output.htm) operationId: ExpressionSetDelete parameters: - name: expressionSetId in: path description: 'Expression Set Id: For Example 9QLHo000000LBjEOAW' required: true schema: type: string examples: - 9QLHo000000LBjEOA example: '500123' responses: '204': description: No Content headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 06 Sep 2023 10:27:12 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block Content-Security-Policy: content: text/plain: schema: type: string contentMediaType: text/plain example: upgrade-insecure-requests X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private content: {} '400': description: Bad Request headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 06 Sep 2023 10:23:24 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: type: array items: $ref: >- #/components/schemas/Status400-ActiveExpressionCanNotBeDeleted1 description: '' examples: - - errorCode: INVALID_INPUT message: >- An enabled Expression Set Version cannot be updated/deleted. contentMediaType: application/json;charset=UTF-8 example: - errorCode: INVALID_INPUT message: An enabled Expression Set Version cannot be updated/deleted. '404': description: Not Found headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 06 Sep 2023 09:56:59 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: type: array items: $ref: '#/components/schemas/Status404-RecordNotFound1' description: '' examples: - - errorCode: NOT_FOUND message: The requested resource does not exist contentMediaType: application/json;charset=UTF-8 example: - errorCode: NOT_FOUND message: The requested resource does not exist deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/connect/business-rules/expressionset/{expressionSetAPIName}: post: tags: - Expression - Sets summary: Salesforce Expression Set Invocation description: "[https://developer.salesforce.com/docs/atlas.en-us.246.0.industries_reference.meta/industries_reference/connect_resources_bre_expression_set.htm](https://developer.salesforce.com/docs/atlas.en-us.246.0.industries_reference.meta/industries_reference/connect_resources_bre_expression_set.htm)\n\ \n**WATCH OUT**: path **expressionSet** has no dash [gjeffcock@salesforce.com](https://gjeffcock@salesforce.com)\n\n# Expression Set Invocation (POST)\n\nInvokes expression sets in Business Rule Engine.Resource\n\n```\n/connect/business-rules/expressionSet/${expressionSetName}\n\n ```\n\nResource Example\n\n```\nhttps://yourInstance.salesforce.com/services/data/vXX.X/connect\n/business-rules/expressionSet/${expressionSetName}\n\ \n ```\n\nAvailable version\n\n55.0\n\nRequires Chatter\n\nNo\n\nHTTP methods\n\nPOST\n\nRequest body for POST\n\nJSON example 1\n\n```\n{\n \"inputs\": [\n {\n \"age\": \"25\",\n \ \ \"state\": \"CA\"\n \"PatientId\":\"001xx000003GYjnAAG\"\n }\n \n ],\n \"options\": {\n \"effectiveDate\": \"2022-12-03T10:15:30Z\",\n \"useDatesOnly\": \"true\"\n }\n}\n\n\ \ ```\n\nJSON example 2\n\n```\n{\n \"inputs\": [\n {\n \"age\": \"25\",\n \"state\": \"CA\"\n \"PatientId\":\"001xx000003GYjnAAG\"\n \"__actionContextCode\":\"001xx000003GYjnAAG\"\ \ }\n \n ],\n \"options\": {\n \"effectiveDate\": \"2022-12-03T10:15:30Z\",\n \"useDatesOnly\": \"true\"\n }\n}\n\n ```\n\nNote\n\nYou can use more than one actionContextCode for multiple sets of inputs, passed in a single API call.\n\nProperties\n\n| Name | Type | Description | Required or Optional | Available Version |\n| --- | --- | --- | --- | --- |\n| inputs | Map\\[\\] | List of inputs passed to an expression set. An input may contain multiple variables.

Note

If the expression set uses a field alias as a variable, append Id to the object alias to which the field alias belongs, and pass the ID of the source object linked to the object alias. | Required | 55.0 |\n| options | [Expression Set Options Input](https://developer.salesforce.com/docs/atlas.en-us.industries_reference.meta/industries_reference/connect_requests_options.htm) | The options for executing an expression set. | Optional | 55.0 |\n\nResponse body for POST\n\n[Business Rules Result](https://developer.salesforce.com/docs/atlas.en-us.industries_reference.meta/industries_reference/connect_responses_business_rules_result.htm)" operationId: ExpressionSetInvocation parameters: - name: expressionSetAPIName in: path description: >- The API name of an expression set is unique within your Salesforce instance. required: true schema: type: string example: example_value requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/ExpressionSetInvocationRequest' - examples: - inputs: - {} options: {} contentMediaType: application/json example: inputs: - {} options: {} required: true responses: '201': description: Created headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Thu, 07 Sep 2023 08:05:45 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/Status201-Success' - examples: - aggregationResults: results: {} executionId: 33045b23-8970-4fbe-a80c-8f4302592566 outputs: - results: output: 1 contentMediaType: application/json;charset=UTF-8 example: aggregationResults: results: {} executionId: 33045b23-8970-4fbe-a80c-8f4302592566 outputs: - results: output: 1 '400': description: Bad Request headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Thu, 07 Sep 2023 08:03:38 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: type: array items: $ref: '#/components/schemas/Status400-InvalidExpressionSetName1' description: '' examples: - - errorCode: INVALID_INPUT message: Specify a valid expressionSetName and try again. contentMediaType: application/json;charset=UTF-8 example: - errorCode: INVALID_INPUT message: Specify a valid expressionSetName and try again. '500': description: Server Error headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Thu, 07 Sep 2023 07:48:43 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: type: array items: $ref: '#/components/schemas/Status500-EmptyBodyButRecordExist1' description: '' examples: - - message: >- An unexpected error occurred. Please include this ErrorId if you contact support: 597330588-4312 (-1669188241) errorCode: UNKNOWN_EXCEPTION contentMediaType: application/json;charset=UTF-8 example: - message: >- An unexpected error occurred. Please include this ErrorId if you contact support: 597330588-4312 (-1669188241) errorCode: UNKNOWN_EXCEPTION deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/connect/business-rules/decision-matrices/{matrixUniqueName}: post: tags: - Table summary: Salesforce Lookup Table description: >- # Decision Matrix (Lookup Table) Performs a lookup on decision matrix rows based on the input values provided, and returns the row’s output.Resource ``` /connect/business-rules/decision-matrices/${matrixName} ``` Resource Example ``` https://yourInstance.salesforce.com/services/data/vXX.X/connect /business-rules/decision-matrices/InsurancePremium ``` Available version 55.0 Requires Chatter No HTTP methods POST Request body for POST JSON example ``` { "inputs": [ { "input": [ { "name": "premium", "value": "2400" } ] } ], "options": { "effectiveDate": "2022-12-03T10:15:30Z" } } ``` Here, premium is a column header in the matrix, and 2400 is a value of a cell in the column.Properties | Name | Type | Description | Required or Optional | Available Version | | --- | --- | --- | --- | --- | | inputs | [Decision Matrix Input](https://developer.salesforce.com/docs/atlas.en-us.industries_reference.meta/industries_reference/connect_requests_decision_matrix_input.htm) | List of inputs passed to a decision matrix. An input may contain multiple variables. | Required | 55.0 | | options | [Decision Matrix Options Input](https://developer.salesforce.com/docs/atlas.en-us.industries_reference.meta/industries_reference/connect_requests_decision_matrix_options.htm) | The lookup options for a decision matrix. | Optional | 55.0 | Response body for POST [Decision Matrix Lookup Result](https://developer.salesforce.com/docs/atlas.en-us.industries_reference.meta/industries_reference/connect_responses_bre_decision_matrix_lookup_result.htm) operationId: LookupTable parameters: - name: matrixUniqueName in: path description: >- The value of Unique Name is the unique identifier of the record, which is sourced from the name of a decision matrix. required: true schema: type: string examples: - myDecisionMatrix example: example_value requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/LookupTableRequest' - examples: - inputs: - input: - name: myColumnInput value: One options: {} contentMediaType: application/json example: inputs: - input: - name: myColumnInput value: One options: {} required: true responses: '201': description: Created headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Thu, 07 Sep 2023 12:12:26 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/Status201-AcceptedButWarning' - examples: - outputs: - error: >- Looks like there isn’t any output for the specified input parameters in the lookup table. results: [] contentMediaType: application/json;charset=UTF-8 example: outputs: - error: >- Looks like there isn’t any output for the specified input parameters in the lookup table. results: [] '400': description: Bad Request headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Thu, 07 Sep 2023 11:50:19 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: type: array items: $ref: '#/components/schemas/Status400-MatrixNotFound1' description: '' examples: - - errorCode: INVALID_INPUT message: Specify a valid matrixName and try again. contentMediaType: application/json;charset=UTF-8 example: - errorCode: INVALID_INPUT message: Specify a valid matrixName and try again. '401': description: Unauthorized headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Thu, 07 Sep 2023 11:49:04 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private WWW-Authenticate: content: text/plain: schema: type: string contentMediaType: text/plain example: Token Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: type: array items: $ref: '#/components/schemas/Status401-Unauthorized1' description: '' examples: - - message: Session expired or invalid errorCode: INVALID_SESSION_ID contentMediaType: application/json;charset=UTF-8 example: - message: Session expired or invalid errorCode: INVALID_SESSION_ID deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/connect/business-rules/decision-models/export: post: tags: - Decision - Exports - Models - Notation summary: Salesforce Decision Model Notation Export description: >- # Decision Model Notation Export (POST) Export decision matrix data to a file in the [DMN (Decision Model Notation)](https://www.omg.org/dmn/#:~:text=DMN%20is%20a%20modeling%20language,monitor%20their%20application;%20business%20analysts.) format, an easily readable format for business rules designed by Object Management Group.Resource ``` /connect/business-rules/decision-models/export ``` Resource Example ``` https://yourInstance.salesforce.com/services/data/v59.0/connect/business-rules/decision-models/export ``` Available version 58.0 Requires Chatter No HTTP methods POST Request body for POST JSON example ``` { "decisionModelEntityIds":[ “0lNRO00000004f72AA”, “0lNRO000000rfn27AA” ] } ``` Properties | Name | Type | Description | Required or Optional | Available Version | | --- | --- | --- | --- | --- | | decisionModelEntityIds | String\[\] | A list of decision matrix version IDs to export data from. | Required | 58.0 | Response body for POST [Decision Model Export Output](https://developer.salesforce.com/docs/atlas.en-us.industries_reference.meta/industries_reference/connect_responses_decision_model_export_output.htm) # Decision Model Export Output Output representation of a completed DMN (Decision Model Notation) export request.JSON example ``` { "message":"OK", "success":true, "errors":[ { "errorCode":"BAD_REQUEST", "errorMessage":"We couldn’t find this record. Specify a valid ID for decisionModelEntityIds parameter.", "recordId":"0lNRO00000004fsdfAA" } ] } ``` | Property Name | Type | Description | Filter Group and Version | Available Version | | --- | --- | --- | --- | --- | | errors | [Decision Model Export Error](https://developer.salesforce.com/docs/atlas.en-us.industries_reference.meta/industries_reference/connect_responses_decision_model_export_error.htm)\[\] | List of errors corresponding to a failed export request. | Small, 58.0 | 58.0 | | message | String | Response message from the completed export request. | Small, 58.0 | 58.0 | | success | Boolean | Indicates whether the export request was successful (true) or not (false). | Small, 58.0 | 58.0 | operationId: DecisionModelNotationExport parameters: [] requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/DecisionModelNotationExportRequest' - examples: - decisionModelEntityIds: - 0lNHo000000LEvfMAG contentMediaType: application/json example: decisionModelEntityIds: - 0lNHo000000LEvfMAG required: true responses: '201': description: Created headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Tue, 19 Sep 2023 12:01:33 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/Status201-BadRequest' - examples: - errors: - errorCode: BAD_REQUEST errorMessage: >- We couldn’t find this record. Specify a valid ID for decisionModelEntityIds parameter. recordId: 0lNRO00000004f72AA - errorCode: BAD_REQUEST errorMessage: >- We couldn’t find this record. Specify a valid ID for decisionModelEntityIds parameter. recordId: 0lNRO000000rfn27AA message: OK success: true contentMediaType: application/json;charset=UTF-8 example: errors: - errorCode: BAD_REQUEST errorMessage: >- We couldn’t find this record. Specify a valid ID for decisionModelEntityIds parameter. recordId: 0lNRO00000004f72AA - errorCode: BAD_REQUEST errorMessage: >- We couldn’t find this record. Specify a valid ID for decisionModelEntityIds parameter. recordId: 0lNRO000000rfn27AA message: OK success: true '500': description: Server Error headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Tue, 19 Sep 2023 12:02:44 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: type: array items: $ref: '#/components/schemas/Status500-EmptyBody1' description: '' examples: - - message: >- An unexpected error occurred. Please include this ErrorId if you contact support: 1291449758-100210 (-239130079) errorCode: UNKNOWN_EXCEPTION contentMediaType: application/json;charset=UTF-8 example: - message: >- An unexpected error occurred. Please include this ErrorId if you contact support: 1291449758-100210 (-239130079) errorCode: UNKNOWN_EXCEPTION deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/connect/business-rules/decision-table/lookup/{decisionTableId}: post: tags: - Invoke summary: Salesforce Invoke description: >- # Invoke Decision Tables Invoke a decision table by passing multiple input conditions within the same request.Resource ``` /connect/business-rules/decision-table/lookup/${decisionTableId} ``` Resource example ``` https://yourInstance.salesforce.com/services/data/v59.0/connect /business-rules/decision-table/lookup/${0lDD2000000004NMAQ} ``` Available version 58.0 Requires Chatter No HTTP methods POST Request body for POST JSON example ``` { "datasetLinkName" : "transactionMapping", “conditions” :[ { “conditionsList”: [ { "fieldName": "Product__c", "value": "Nike", "operator": "Matches" //Operator is optional }, { "fieldName": "Price__c", "value": 1000, "operator": "GreaterThan" } ] }, { “conditionsList”: [ { "fieldName": "Product__c", "value": "Adidas", "operator": "Matches" //Operator is optional }, { "fieldName": "Price__c", "value": 1500, "operator": "GreaterThan" } ] ``` Properties | Name | Type | Description | Required or Optional | Available Version | | --- | --- | --- | --- | --- | | conditions | [Decision Table Condition List](https://developer.salesforce.com/docs/atlas.en-us.industries_reference.meta/industries_reference/connect_requests_decision_table_condition_list_input.htm) | The list of decision table conditions on which the decision table executes and provides outcomes. | Required | 58.0 | | datasetLinkName | String | The API name of the dataset link provided as an input for the decision table execution. | Optional | 58.0 | Response body for POST [Decision Table Bulk Outcome](https://developer.salesforce.com/docs/atlas.en-us.industries_reference.meta/industries_reference/connect_responses_decision_table_bulk_outcome.htm) # Decision Table Bulk Outcome Output representation of the decision table bulk look-up. | Property Name | Type | Description | Filter Group and Version | Available Version | | --- | --- | --- | --- | --- | | outputs | [Decision Table Outcome](https://developer.salesforce.com/docs/atlas.en-us.industries_reference.meta/industries_reference/connect_responses_decision_table_outcome.htm) | List of the output of the Decision Table bulk lookup. | Small, 58.0 | 58.0 | operationId: Invoke parameters: - name: decisionTableId in: path description: Decision Table Id required: true schema: type: string examples: - 0lDHo0000008Po3 example: '500123' requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/InvokeRequest' - examples: - datasetLinkName: transactionMapping conditions: - conditionsList: - fieldName: Product__c value: Nike operator: Matches - fieldName: Price__c value: 1000 operator: GreaterThan - conditionsList: - fieldName: Product__c value: Adidas operator: Matches - fieldName: Price__c value: 1500 operator: GreaterThan contentMediaType: application/json example: datasetLinkName: transactionMapping conditions: - conditionsList: - fieldName: Product__c value: Nike operator: Matches - fieldName: Price__c value: 1000 operator: GreaterThan - conditionsList: - fieldName: Product__c value: Adidas operator: Matches - fieldName: Price__c value: 1500 operator: GreaterThan required: true responses: '201': description: Created headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Tue, 19 Sep 2023 14:17:24 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/Status201-Error' - examples: - outputs: - errorCode: 400 errorMessage: Specify valid name for Data set Link outcomeList: [] outcomeType: successStatus: false - errorCode: 400 errorMessage: Specify valid name for Data set Link outcomeList: [] outcomeType: successStatus: false contentMediaType: application/json;charset=UTF-8 example: outputs: - errorCode: 400 errorMessage: Specify valid name for Data set Link outcomeList: [] outcomeType: successStatus: false - errorCode: 400 errorMessage: Specify valid name for Data set Link outcomeList: [] outcomeType: successStatus: false '400': description: Bad Request headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Tue, 19 Sep 2023 14:16:11 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: type: array items: $ref: '#/components/schemas/Status400-InvalidOperation1' description: '' examples: - - errorCode: INVALID_OPERATION message: >- Can't execute decision table which is not in Active state. contentMediaType: application/json;charset=UTF-8 example: - errorCode: INVALID_OPERATION message: Can't execute decision table which is not in Active state. '404': description: Not Found headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Tue, 19 Sep 2023 14:11:45 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: type: array items: $ref: '#/components/schemas/Status404-NotFound1' description: '' examples: - - errorCode: NOT_FOUND message: The requested resource does not exist contentMediaType: application/json;charset=UTF-8 example: - errorCode: NOT_FOUND message: The requested resource does not exist deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/connect/business-rules/decision-table/definitions: post: tags: - Create - Table summary: Salesforce Create Table description: >- # Decision Table Definitions (POST) Create a decision table definition. A decision table definition contains all the details required to create a decision table.Resource ``` /connect/business-rules/decision-table/definitions ``` Resource Example ``` https://yourInstance.salesforce.com/services/data/v59.0/connect/business-rules/decision-table/definitions ``` Available version 58.0 Requires Chatter No HTTP methods POST JSON example for a single object source ``` { "setupName":"Product Qualificiation eligibility", "fullName":"ProductQualificationEligibility", "description":"Eligiblity of Products using Qualification Rules", "usageType":"ProductEligibility", "sourceType":"SingleSobject", "sourceObject":"AccountFeed", "status":"Draft", "decisionResultPolicy":"UniqueValues", "collectOperator":"Count", "conditionType":"Any", "conditionCriteria":"1 OR 2 OR 3", "parameters":[ { "fieldName":"IsDeleted", "usage":"INPUT", "operator":"Equals", "sequence":"1" }, { "fieldName":"Id", "usage":"INPUT", "operator":"Equals", "sequence":"2" }, { "fieldName":"Title", "usage":"INPUT", "operator":"Equals", "sequence":"3" }, { "fieldName":"CreatedById", "usage":"OUTPUT" } ] } ``` JSON example for a multi-object source ``` { "setupName":"Jumbo Pricing Definition", "fullName":"JumboPricingDefinition", "description":"Join all the DT definitions into one jumbo pricing definition", "usageType":"ProductEligibility", "type":"LowVolume", "sourceType":"MultipleSobjects", "sourceObject":"AccountFeed", "status":"Draft", "decisionResultPolicy":"UniqueValues", "collectOperator":"Count", "sourceconditionLogic":"1 AND 2 AND 3", "conditionType":"Any", "conditionCriteria":"1 OR 2 OR 3 OR 4 OR 5", "parameters":[ { "fieldName":"IsDeleted", "usage":"INPUT", "operator":"Equals", "sequence":"1", "columnMapping":"IsDeleted" }, { "fieldName":"Id", "usage":"INPUT", "operator":"Equals", "sequence":"2", "columnMapping":"Id" }, { "fieldName":"Title", "usage":"INPUT", "operator":"Equals", "sequence":"3", "columnMapping":"Title" }, { "fieldName":"OldvalNumber", "usage":"INPUT", "operator":"Equals", "sequence":"4", "columnMapping":"AccountHistory.OldvalNumber" }, { "fieldName":"OldvalString", "usage":"INPUT", "operator":"Equals", "sequence":"5", "columnMapping":"AccountHistory.OldvalString" }, { "fieldName":"CreatedById", "usage":"OUTPUT", "columnMapping":"CreatedById" }, { "fieldName":"NewvalNumber", "usage":"OUTPUT", "columnMapping":"AccountHistory.NewvalNumber" }, { "fieldName":"NewvalString", "usage":"OUTPUT", "columnMapping":"AccountHistory.NewvalString" } ] "sourceCriteria":[ { "sourceFieldName":"OldvalString", "value":"5", "operator":"Equals", "valueType":"Parameter", "sequenceNumber":"1" } ] } ``` Request body for POSTProperties | Name | Type | Description | Required or Optional | Available Version | | --- | --- | --- | --- | --- | | collectOperator | String | Operator to apply a filter to outputs. Possible values are:

\- Count

\- Maximum

\- Minimum

\- None

\- Sum | Optional | 58.0 | | conditionCriteria | String | Custom logic applied on the decision table columns to decide how the input fields are processed. | Optional

Required when the condition type is Custom. | 58.0 | | conditionType | String | Condition logic for input fields. Possible values are:

\- All

\- Any

\- Custom | Optional | 58.0 | | description | String | Description of the decision table. | Optional | 58.0 | | decisionResultPolicy | String | Results policy to filter results of the decision table. Possible values are:

\- AnyValue

\- CollectOperator

\- FirstMatch

\- OutputOrder

\- Priority

\- RuleOrder

\- UniqueValues | Optional | | | fullName | String | Unique name of the rule definition. | Required | 58.0 | | isSetCollectOperator | Boolean | For internal use only.

Indicates whether the collectOperator is enabled (true) or not (false). | Optional | 58.0 | | isSetConditionCriteria | Boolean | For internal use only.

Indicates whether the conditionCriteria field is enabled (true) or not (false). | Optional | 58.0 | | isSetConditionType | Boolean | For internal use only.

Indicates whether the conditionType field is enabled (true) or not (false). | Optional | 58.0 | | isSetDescription | Boolean | For internal use only.

Indicates whether the description field is enabled (true) or not (false). | Optional | 58.0 | | isSetDecisionResultPolicy | Boolean | For internal use only.

Indicates whether the DecisionResultPolicy field is enabled (true) or not (false). | Optional | 58.0 | | isSetFullName | Boolean | For internal use only.

Indicates whether the FullName field is enabled (true) or not (false). | Optional | 58.0 | | isSetParameters | Boolean | For internal use only. Indicates whether the parameters field is enabled (true) or not (false). | Optional | 58.0 | | isSetSetupName | Boolean | For internal use only.

Indicates whether the setupName field is enabled (true) or not (false). | Optional | 58.0 | | isSetSourceconditionLogic | Boolean | For internal use only.

Indicates whether the sourceConditionLogic field is enabled (true) or not (false). | Optional | 58.0 | | isSetSourceCriteria | Boolean | For internal use only.

Indicates whether the sourceCriteria field is enabled (true) or not (false). | Optional | 58.0 | | isSetSourceObject | Boolean | For internal use only.

Indicates whether the sourceObject field is enabled (true) or not (false). | Optional | 58.0 | | isSetSourceType | Boolean | For internal use only.

Indicates whether the sourceType is enabled (true) or not (false). | Optional | 58.0 | | isSetType | Boolean | For internal use only.

Indicates whether the type field is enabled (true) or not (false). | Optional | 58.0 | | isSetUsageType | Boolean | For internal use only.

Indicates whether the UsageType field is enabled (true) or not (false). | Optional | 58.0 | | parameters | [Decision Table Parameter Input](https://developer.salesforce.com/docs/atlas.en-us.industries_reference.meta/industries_reference/connect_requests_decision_table_parameter_input.htm)\[\] | Array of input and output fields for the decision table. | Optional | 58.0 | | setupName | String | Name of the decision table. | Required | 58.0 | | sourceconditionLogic | String | Custom logic to filter the decision table rows. | Optional | 58.0 | | sourceCriteria | [Decision Table Source Criteria Input](https://developer.salesforce.com/docs/atlas.en-us.industries_reference.meta/industries_reference/connect_requests_decision_table_source_criteria_input.htm)\[\] | Output array representation of source filters for the decision table rows, such as, fieldName, operators, valueType, and more. | Optional | 58.0 | | sourceObject | String | Object containing business rules for the decision table to read. | Required | 58.0 | | sourceType | String | Type of source to obtain decision table data. Possible values are:

\- CsvUpload

\- MultipleSobjects

\- SingleSobject | Required | 58.0 | | status | String | Status of the decision table. Possible values are:

\- ActivationInProgress

\- ActivationInProgress

\- Draft

\- Inactive | Required | 58.0 | | type | String | Type of the decision table. Possible values are:

\- HighVolume

\- LowVolume | Optional | 58.0 | | usageType | String | Process type that uses the decision table. Possible values are:

\- Pricing

\- ProductEligibility | Optional | 58.0 | Response body for POST [Decision Table Output](https://developer.salesforce.com/docs/atlas.en-us.industries_reference.meta/industries_reference/connect_responses_decision_table_output.htm) # Decision Table Output Output representation of the decision table details.JSON example for GET, POST, and PATCH ``` { "code":"200", "decisionTable":{ "collectOperator":"Count", "conditionCriteria":"1 OR 2 OR 3", "conditionType":"Any", "decisionResultPolicy":"UniqueValues", "description":"Eligiblity of Products using Qualification Rules", "id":"0lDxx00000000BJ", "parameters":[ { "fieldName":"IsDeleted", "isGroupByField":false, "isPriority":false, "operator":"Equals", "sequence":1, "usage":"Input" }, { "fieldName":"CreatedById", "isGroupByField":false, "isPriority":false, "usage":"Output" }, { "fieldName":"Title", "isGroupByField":false, "isPriority":false, "operator":"Equals", "sequence":3, "usage":"Input" }, { "fieldName":"Id", "isGroupByField":false, "isPriority":false, "operator":"Equals", "sequence":2, "usage":"Input" } ], "setupName":"Product Qualificiation eligibility3", "sourceCriteria":[ ], "sourceObject":"AccountFeed", "sourceType":"SingleSobject", "sourceconditionLogic":"1 AND 2 AND 3", "status":"Draft" }, "isSuccess":true, "message":"" } ``` JSON example for DELETE ``` { "code":"200", "isSuccess":true, "message":"" } ``` | Property Name | Type | Description | Filter Group and Version | Available Version | | --- | --- | --- | --- | --- | | code | String | Response code from the API request. | Small, 58.0 | 58.0 | | decisionTable | [Decision Table Definition Output](https://developer.salesforce.com/docs/atlas.en-us.industries_reference.meta/industries_reference/connect_responses_decision_table_definition_output.htm) | Details of the decision table definition associated with the decision table. | Small, 58.0 | 58.0 | | isSuccess | Boolean | Indicates whether the API request is successful (true) or not (false). | Small, 58.0 | 58.0 | | message | String | Error message when the API request fails. | Small, 58.0 | 58.0 | operationId: CreateTable parameters: [] requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/CreateTableRequest' - examples: - setupName: Product Qualificiation eligibility fullName: ProductQualificationEligibility description: Eligiblity of Products using Qualification Rules sourceObject: AccountFeed status: Draft conditionType: Any conditionCriteria: 1 OR 2 OR 3 parameters: - fieldName: IsDeleted usage: INPUT operator: Equals sequence: '1' - fieldName: Id usage: INPUT operator: Equals sequence: '2' - fieldName: Title usage: INPUT operator: Equals sequence: '3' - fieldName: CreatedById usage: OUTPUT contentMediaType: application/json example: setupName: Product Qualificiation eligibility fullName: ProductQualificationEligibility description: Eligiblity of Products using Qualification Rules sourceObject: AccountFeed status: Draft conditionType: Any conditionCriteria: 1 OR 2 OR 3 parameters: - fieldName: IsDeleted usage: INPUT operator: Equals sequence: '1' - fieldName: Id usage: INPUT operator: Equals sequence: '2' - fieldName: Title usage: INPUT operator: Equals sequence: '3' - fieldName: CreatedById usage: OUTPUT required: true responses: '201': description: Created headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Tue, 19 Sep 2023 12:41:36 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/Status201-Success4' - examples: - code: '200' decisionTable: id: 0lDHo0000008Pnt parameters: [] sourceCriteria: [] isSuccess: true message: '' contentMediaType: application/json;charset=UTF-8 example: code: '200' decisionTable: id: 0lDHo0000008Pnt parameters: [] sourceCriteria: [] isSuccess: true message: '' deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/connect/business-rules/decision-table/definitions/{decisionTableId}: get: tags: - Get - Table summary: Salesforce Get Table description: >- # Decision Table Definitions ( GET) Get details of a decision table definition. Resource ``` /connect/business-rules/decision-table/definitions/${decisionTableId} ``` Resource Example ``` https://yourInstance.salesforce.com/services/data/v59.0/connect/business-rules/decision-table/definitions/0lDxx00000002Ur ``` Available version 58.0 Requires Chatter No HTTP methods GET Response body for GET [Decision Table Output](https://developer.salesforce.com/docs/atlas.en-us.industries_reference.meta/industries_reference/connect_responses_decision_table_output.htm) # Decision Table Output Output representation of the decision table details.JSON example for GET, POST, and PATCH ``` { "code":"200", "decisionTable":{ "collectOperator":"Count", "conditionCriteria":"1 OR 2 OR 3", "conditionType":"Any", "decisionResultPolicy":"UniqueValues", "description":"Eligiblity of Products using Qualification Rules", "id":"0lDxx00000000BJ", "parameters":[ { "fieldName":"IsDeleted", "isGroupByField":false, "isPriority":false, "operator":"Equals", "sequence":1, "usage":"Input" }, { "fieldName":"CreatedById", "isGroupByField":false, "isPriority":false, "usage":"Output" }, { "fieldName":"Title", "isGroupByField":false, "isPriority":false, "operator":"Equals", "sequence":3, "usage":"Input" }, { "fieldName":"Id", "isGroupByField":false, "isPriority":false, "operator":"Equals", "sequence":2, "usage":"Input" } ], "setupName":"Product Qualificiation eligibility3", "sourceCriteria":[ ], "sourceObject":"AccountFeed", "sourceType":"SingleSobject", "sourceconditionLogic":"1 AND 2 AND 3", "status":"Draft" }, "isSuccess":true, "message":"" } ``` JSON example for DELETE ``` { "code":"200", "isSuccess":true, "message":"" } ``` | Property Name | Type | Description | Filter Group and Version | Available Version | | --- | --- | --- | --- | --- | | code | String | Response code from the API request. | Small, 58.0 | 58.0 | | decisionTable | [Decision Table Definition Output](https://developer.salesforce.com/docs/atlas.en-us.industries_reference.meta/industries_reference/connect_responses_decision_table_definition_output.htm) | Details of the decision table definition associated with the decision table. | Small, 58.0 | 58.0 | | isSuccess | Boolean | Indicates whether the API request is successful (true) or not (false). | Small, 58.0 | 58.0 | | message | String | Error message when the API request fails. | Small, 58.0 | 58.0 | operationId: GetTable parameters: - name: decisionTableId in: path description: Decision Table Id required: true schema: type: string examples: - 0lDHo0000008Po3 example: '500123' responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Tue, 19 Sep 2023 13:05:06 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/Status200-Success' - examples: - code: '200' decisionTable: conditionCriteria: 1 OR 2 OR 3 conditionType: Any description: Eligiblity of Products using Qualification Rules id: 0lDHo0000008Pnt parameters: - fieldName: IsDeleted isGroupByField: false operator: Equals sequence: 1 usage: Input - fieldName: CreatedById isGroupByField: false usage: Output - fieldName: Title isGroupByField: false operator: Equals sequence: 3 usage: Input - fieldName: Id isGroupByField: false operator: Equals sequence: 2 usage: Input setupName: Product Qualificiation eligibility sourceCriteria: [] sourceObject: AccountFeed status: Active isSuccess: true message: '' contentMediaType: application/json;charset=UTF-8 example: code: '200' decisionTable: conditionCriteria: 1 OR 2 OR 3 conditionType: Any description: Eligiblity of Products using Qualification Rules id: 0lDHo0000008Pnt parameters: - fieldName: IsDeleted isGroupByField: false operator: Equals sequence: 1 usage: Input - fieldName: CreatedById isGroupByField: false usage: Output - fieldName: Title isGroupByField: false operator: Equals sequence: 3 usage: Input - fieldName: Id isGroupByField: false operator: Equals sequence: 2 usage: Input setupName: Product Qualificiation eligibility sourceCriteria: [] sourceObject: AccountFeed status: Active isSuccess: true message: '' '400': description: Bad Request headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Tue, 19 Sep 2023 13:20:33 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: type: array items: $ref: '#/components/schemas/Status400-InstanceNotFound1' description: '' examples: - - errorCode: INVALID_ID_FIELD message: >- We couldn’t find a record with that ID. Specify a valid decisionTableId and try again. contentMediaType: application/json;charset=UTF-8 example: - errorCode: INVALID_ID_FIELD message: >- We couldn’t find a record with that ID. Specify a valid decisionTableId and try again. deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK delete: tags: - Deletes - Table summary: Salesforce Delete Table description: >- # Decision Table Definitions ( DELETE) Delete a decision table definition associated with a decision table. Resource ``` /connect/business-rules/decision-table/definitions/${decisionTableId} ``` Resource Example ``` https://yourInstance.salesforce.com/services/data/v59.0/connect/business-rules/decision-table/definitions/0lDxx00000002Ur ``` Available version 58.0 Requires Chatter No HTTP methods DELETE Response body for DELETE [Decision Table Output](https://developer.salesforce.com/docs/atlas.en-us.industries_reference.meta/industries_reference/connect_responses_decision_table_output.htm) # Decision Table Output Output representation of the decision table details.JSON example for GET, POST, and PATCH ``` { "code":"200", "decisionTable":{ "collectOperator":"Count", "conditionCriteria":"1 OR 2 OR 3", "conditionType":"Any", "decisionResultPolicy":"UniqueValues", "description":"Eligiblity of Products using Qualification Rules", "id":"0lDxx00000000BJ", "parameters":[ { "fieldName":"IsDeleted", "isGroupByField":false, "isPriority":false, "operator":"Equals", "sequence":1, "usage":"Input" }, { "fieldName":"CreatedById", "isGroupByField":false, "isPriority":false, "usage":"Output" }, { "fieldName":"Title", "isGroupByField":false, "isPriority":false, "operator":"Equals", "sequence":3, "usage":"Input" }, { "fieldName":"Id", "isGroupByField":false, "isPriority":false, "operator":"Equals", "sequence":2, "usage":"Input" } ], "setupName":"Product Qualificiation eligibility3", "sourceCriteria":[ ], "sourceObject":"AccountFeed", "sourceType":"SingleSobject", "sourceconditionLogic":"1 AND 2 AND 3", "status":"Draft" }, "isSuccess":true, "message":"" } ``` JSON example for DELETE ``` { "code":"200", "isSuccess":true, "message":"" } ``` | Property Name | Type | Description | Filter Group and Version | Available Version | | --- | --- | --- | --- | --- | | code | String | Response code from the API request. | Small, 58.0 | 58.0 | | decisionTable | [Decision Table Definition Output](https://developer.salesforce.com/docs/atlas.en-us.industries_reference.meta/industries_reference/connect_responses_decision_table_definition_output.htm) | Details of the decision table definition associated with the decision table. | Small, 58.0 | 58.0 | | isSuccess | Boolean | Indicates whether the API request is successful (true) or not (false). | Small, 58.0 | 58.0 | | message | String | Error message when the API request fails. | Small, 58.0 | 58.0 | operationId: DeleteTable parameters: - name: decisionTableId in: path description: Decision Table Id required: true schema: type: string examples: - 0lDHo0000008Pny example: '500123' responses: '204': description: No Content headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Tue, 19 Sep 2023 13:36:22 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block Content-Security-Policy: content: text/plain: schema: type: string contentMediaType: text/plain example: upgrade-insecure-requests X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private content: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK patch: tags: - Table - Update summary: Salesforce Update Table description: >- # Decision Table Definitions ( DELETE) Delete a decision table definition associated with a decision table. Resource ``` /connect/business-rules/decision-table/definitions/${decisionTableId} ``` Resource Example ``` https://yourInstance.salesforce.com/services/data/v59.0/connect/business-rules/decision-table/definitions/0lDxx00000002Ur ``` Available version 58.0 Requires Chatter No HTTP methods DELETE Response body for DELETE [Decision Table Output](https://developer.salesforce.com/docs/atlas.en-us.industries_reference.meta/industries_reference/connect_responses_decision_table_output.htm) # Decision Table Output Output representation of the decision table details.JSON example for GET, POST, and PATCH ``` { "code":"200", "decisionTable":{ "collectOperator":"Count", "conditionCriteria":"1 OR 2 OR 3", "conditionType":"Any", "decisionResultPolicy":"UniqueValues", "description":"Eligiblity of Products using Qualification Rules", "id":"0lDxx00000000BJ", "parameters":[ { "fieldName":"IsDeleted", "isGroupByField":false, "isPriority":false, "operator":"Equals", "sequence":1, "usage":"Input" }, { "fieldName":"CreatedById", "isGroupByField":false, "isPriority":false, "usage":"Output" }, { "fieldName":"Title", "isGroupByField":false, "isPriority":false, "operator":"Equals", "sequence":3, "usage":"Input" }, { "fieldName":"Id", "isGroupByField":false, "isPriority":false, "operator":"Equals", "sequence":2, "usage":"Input" } ], "setupName":"Product Qualificiation eligibility3", "sourceCriteria":[ ], "sourceObject":"AccountFeed", "sourceType":"SingleSobject", "sourceconditionLogic":"1 AND 2 AND 3", "status":"Draft" }, "isSuccess":true, "message":"" } ``` JSON example for DELETE ``` { "code":"200", "isSuccess":true, "message":"" } ``` | Property Name | Type | Description | Filter Group and Version | Available Version | | --- | --- | --- | --- | --- | | code | String | Response code from the API request. | Small, 58.0 | 58.0 | | decisionTable | [Decision Table Definition Output](https://developer.salesforce.com/docs/atlas.en-us.industries_reference.meta/industries_reference/connect_responses_decision_table_definition_output.htm) | Details of the decision table definition associated with the decision table. | Small, 58.0 | 58.0 | | isSuccess | Boolean | Indicates whether the API request is successful (true) or not (false). | Small, 58.0 | 58.0 | | message | String | Error message when the API request fails. | Small, 58.0 | 58.0 | operationId: UpdateTable parameters: - name: decisionTableId in: path description: Decision Table Id required: true schema: type: string examples: - 0lDHo0000008Po3 example: '500123' requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/UpdateTableRequest' - examples: - setupName: Product Qualificiation eligibility fullName: ProductQualificationEligibility description: Eligiblity of Products using Qualification Rules usageType: ProductEligibility sourceType: SingleSobject sourceObject: AccountFeed status: Draft decisionResultPolicy: UniqueValues collectOperator: Count conditionType: Any conditionCriteria: 1 OR 2 OR 3 parameters: - fieldName: IsDeleted usage: INPUT operator: Equals sequence: '1' - fieldName: Id usage: INPUT operator: Equals sequence: '2' - fieldName: Title usage: INPUT operator: Equals sequence: '3' - fieldName: CreatedById usage: OUTPUT contentMediaType: application/json example: setupName: Product Qualificiation eligibility fullName: ProductQualificationEligibility description: Eligiblity of Products using Qualification Rules usageType: ProductEligibility sourceType: SingleSobject sourceObject: AccountFeed status: Draft decisionResultPolicy: UniqueValues collectOperator: Count conditionType: Any conditionCriteria: 1 OR 2 OR 3 parameters: - fieldName: IsDeleted usage: INPUT operator: Equals sequence: '1' - fieldName: Id usage: INPUT operator: Equals sequence: '2' - fieldName: Title usage: INPUT operator: Equals sequence: '3' - fieldName: CreatedById usage: OUTPUT required: true responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Tue, 19 Sep 2023 14:02:00 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/Status200-Success2' - examples: - code: '200' isSuccess: true message: '' contentMediaType: application/json;charset=UTF-8 example: code: '200' isSuccess: true message: '' deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/connect/business-rules/decision-table/{decisionTableId}: post: tags: - Table summary: Salesforce Lookup Table description: >- # Decision Table (Lookup Table) Performs a lookup on a decision table.Resource ``` /connect/business-rules/decision-table/${decisionTableId} ``` Resource Example ``` https://yourInstance.salesforce.com/services/data/v55.0/connect /decision-table/0lDB0000000TNQzMAO ``` Available version 55.0 Requires Chatter No HTTP methods POST Request body for POST JSON example ``` { "conditions" : { "conditionsList" : [ { "fieldName": "state__c", "value": "MH" }, { "fieldName": "validity__c", "value": 30 } ] } } ``` Properties | Name | Type | Description | Required or Optional | Available Version | | --- | --- | --- | --- | --- | | conditions | [Decision Table Condition](https://developer.salesforce.com/docs/atlas.en-us.industries_reference.meta/industries_reference/connect_requests_decision_table_condition.htm)\[\] | The list of decision table conditions on which the decision table executes and provides outcomes. | Required | 55.0 | | datasetLinkName | String | The API name of the dataset link provided as an input for the decision table execution. | Optional | 55.0 | Response body for POST [Decision Table Outcome](https://developer.salesforce.com/docs/atlas.en-us.industries_reference.meta/industries_reference/connect_responses_decision_table_outcome.htm) # Decision Table Outcome Output representation of the decision table execution.JSON example ``` { "errorCode" : null, "errorMessage" : null, "outcomeList" : [ { "values" : { "amount__c" : "399", "Name" : "MH 005" } }, { "values" : { "amount__c" : "499", "Name" : "MH 006" } }, { "values" : { "amount__c" : "379", "Name" : "MH 007" } }, { "values" : { "amount__c" : "1498", "Name" : "MH 008" } }, { "values" : { "amount__c" : "98", "Name" : "MH 009" } }, { "values" : { "amount__c" : "251", "Name" : "MH 010" } } ], "outcomeType" : "Multiple Matches", "successStatus" : true } ``` | Property Name | Type | Description | Filter Group and Version | Available Version | | --- | --- | --- | --- | --- | | errorCode | Integer | The error code if transaction fails for any reason. | Small, 55.0 | 55.0 | | errorMessage | String | The error message if transaction fails for any reason. | Small, 55.0 | 55.0 | | outcomeList | [Decision Table Outcome Item](https://developer.salesforce.com/docs/atlas.en-us.industries_reference.meta/industries_reference/connect_responses_decision_table_outcome_item.htm)\[\] | Outcome list that stores two or more outcomes provided by the decision table. | Small, 55.0 | 55.0 | | outcomeType | String | The outcome type after the request is successful. | Small, 55.0 | 55.0 | | successStatus | Boolean | Indicates the status of the decision table execution. | Small, 55.0 | 55.0 | operationId: PostLookupTable parameters: - name: decisionTableId in: path description: Decision Table Id required: true schema: type: string examples: - 0lDHo0000008Pnt example: '500123' requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/LookupTableRequest1' - examples: - conditions: conditionsList: - fieldName: IsDeleted value: true contentMediaType: application/json example: conditions: conditionsList: - fieldName: IsDeleted value: true required: true responses: '201': description: Created headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Tue, 19 Sep 2023 13:22:05 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/Status201-Success5' - examples: - errorCode: errorMessage: outcomeList: [] outcomeType: No Match successStatus: true contentMediaType: application/json;charset=UTF-8 example: errorCode: errorMessage: outcomeList: [] outcomeType: No Match successStatus: true '400': description: Bad Request headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Tue, 19 Sep 2023 12:16:33 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: type: array items: $ref: '#/components/schemas/Status400-BadRequest1' description: '' examples: - - errorCode: INVALID_ID_FIELD message: 'Invalid identifier: 0lIHo000000LFC6MAO' contentMediaType: application/json;charset=UTF-8 example: - errorCode: INVALID_ID_FIELD message: 'Invalid identifier: 0lIHo000000LFC6MAO' '500': description: Server Error headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Tue, 19 Sep 2023 12:31:01 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: type: array items: $ref: '#/components/schemas/Status500-UnknownException1' description: '' examples: - - message: >- An unexpected error occurred. Please include this ErrorId if you contact support: 1716762391-743375 (1633993601) errorCode: UNKNOWN_EXCEPTION contentMediaType: application/json;charset=UTF-8 example: - message: >- An unexpected error occurred. Please include this ErrorId if you contact support: 1716762391-743375 (1633993601) errorCode: UNKNOWN_EXCEPTION deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/connect/business-rules/lookup-tables: get: tags: - Retrieves - Tables summary: Salesforce Retrieve Lookup Tables description: >- # Lookup Tables (GET) Retrieve lookup tables.Resource ``` /connect/business-rules/lookup-tables ``` Resource example ``` https://yourInstance.salesforce.com/services/data/v59.0/connect/business-rules/lookup-tables?searchKey=D&usageType=Bre&lookupTypes=DecisionTable,DecisionMatrix ``` ``` https://yourInstance.salesforce.com/services/data/v59.0/connect/business-rules/lookup-tables?searchKey=D&usageType=Bre ``` Available version59.0Requires ChatterNoHTTP methodsGETRequest parameters for GET | Parameter Name | Type | Description | Required or Optional | Available Version | | --- | --- | --- | --- | --- | | lookupTypes | String | Type of lookup table. Valid values are:

- DecisionMatrix

- DecisionTable | Optional | 59.0 | | searchKey | String | The search text entered by the user to retrieve a list of lookup tables. | Required | 59.0 | | usageType | String | Usage type of the lookup table. Valid values are:

- AiAccelerator​SubscriberChurn​Prediction—Used for Industries Einstein

- Bre—Used for Business Rules Engine

- CustomLoyalty—Used for Loyalty Management

- DefaultPricing—Used for Pricing Plans in Enterprise Product Catalog (EPC) by Communications Cloud

- Qualification—Used for Industries Communications, Media, and Energy (CME)

- RecordAlert—Used for Financial Services Cloud

- ShipAndDebit—Used for Manufacturing Cloud

- TierProcessing—Used for Loyalty Management

- TransactionJournal—Used for Loyalty Management

- WarrantyClaim—Used for Manufacturing Cloud | Required | 59.0 | Response body for GET[Lookup Tables Result List](https://developer.salesforce.com/docs/atlas.en-us.industries_reference.meta/industries_reference/connect_responses_lookup_tables_result_list.htm) operationId: Retrievelookuptables parameters: - name: searchKey in: query description: '' required: true style: form explode: true schema: type: string examples: - my example: example_value - name: usageType in: query description: '' required: true style: form explode: true schema: type: string examples: - Bre example: example_value - name: lookupTypes in: query description: >- Optional: Type of lookup table. Valid values are: DecisionMatrix, DecisionTable required: true style: form explode: true schema: type: string examples: - DecisionTable example: example_value responses: '404': description: Not Found headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 06 Sep 2023 08:56:11 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: type: array items: $ref: >- #/components/schemas/404-BecauseVersion59.0NotPresentInTargetOrg1 description: '' examples: - - errorCode: NOT_FOUND message: The requested resource does not exist contentMediaType: application/json;charset=UTF-8 example: - errorCode: NOT_FOUND message: The requested resource does not exist deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/commerce/webstores//carts/{webCartId}/cart-items: post: tags: - Add - Cart - Item summary: Salesforce Add an Item to a Cart operationId: Addanitemtoacart parameters: - name: effectiveAccountId in: query description: '' required: true style: form explode: true schema: type: string examples: - example: '500123' - name: webCartId in: path description: '' required: true schema: type: string examples: - 'null' example: '500123' requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/AddanitemtoacartRequest' - examples: - productId: quantity: 3 type: Product contentMediaType: application/json example: productId: quantity: 3 type: Product required: true responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/connect/fundraising/gifts: post: tags: - Create - Gifts summary: Salesforce Create Gifts description: >- Create gift transactions with related new or matched donor, optional transaction designations, and payment instrument metadata. Supports custom fields for the donor account and gift transaction. ## Required Attributes: - donor.donorType ("individual" or "organization") - donor.lastName || donor.organizationName - gift.amount - gift.receivedDate - git.status - paymentInstrument.type All other attributes are optional can be left as an empty string or just removed from the request body entirely. The only exceptions to this are: - CustomFields collections - These cannot be left in the request body as an empty collection or with an empty string for the FieldName. ## Validated Property Formats (an empty string is considered valid) - DateTime - YYYY-MM-DDTHH:MM:SSZ - Date - YYYY-MM-DD - Email - a valid formatted email address ### Other Attributes: - OutreachSource -- This is optional. Be sure to create the OutreachSourceCode record in the system if passing a value - Will accept either an OutreachSourceCode.id (SalesforceId) or an OutreachSourceCode.Code. ### Custom Fields: - The field_value can be a text string (inc. for a date data-type) or a numeric value (without quotes) - Do not include an empty collection or an empty fieldName in the request body operationId: CreateGifts parameters: [] requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/CreateGiftsRequest' - examples: - processingOptions: donorOptions: defaultUpdateLogic: update_all gifts: - amount: 150.25 currencyIsoCode: USD receivedDate: '2024-07-06T00:00:00.000Z' donorCoverAmount: 0.25 transactionStatus: Unpaid commitmentId: paymentIdentifier: '1234' gatewayTransactionFee: 0.75 processorTransactionFee: 0.45 processorReference: cls-1247586928747 gatewayReference: 102656693ac3ca6e0cdafbfe89ab99 lastGatewayResponseCode: invalid_cvc lastGatewayErrorMessage: >- The card’s security code is invalid. Check the card’s security code or use a different card. lastGatewayProcessedDateTime: '2023-07-06T21:57:51.000Z' campaign: id: outreachSourceCode: id: sourceCode: AnimalEmailCampaign2023 donor: donorType: individual id: organizationName: firstName: Test lastName: Donor phone: 510-434-8920 email: test.user@example.com address: - addressType: mailing street: 123 Main Street city: Oakland state: CA postalCode: '94610' country: US accountCustomFields: - fieldName: string fieldValue: string paymentInstrument: type: credit card accountHolderName: test donor expiryMonth: '10' expiryYear: '2027' last4: '4585' cardBrand: visa bankName: chase digitalWalletProvider: apple pay bankAccountHolderType: primary bankAccountType: checking bankAccountNumber: '123456' bankCode: HBUK gatewayName: stripe processorName: test processor processorPaymentReference: string gatewayReference: string designations: - designationId: percent: 10 amount: 150.25 giftTransactionCustomFields: - fieldName: string fieldValue: string - amount: 250 currencyIsoCode: USD receivedDate: '2024-07-06T00:00:00.000Z' donorCoverAmount: 0.25 transactionStatus: Unpaid commitmentId: paymentIdentifier: '1234' gatewayTransactionFee: 0.75 processorTransactionFee: 0.45 processorReference: cls-1247586928747 gatewayReference: 102656693ac3ca6e0cdafbfe89ab99 lastGatewayResponseCode: invalid_cvc lastGatewayErrorMessage: >- The card’s security code is invalid. Check the card’s security code or use a different card. lastGatewayProcessedDateTime: '2023-07-06T21:57:51.000Z' campaign: id: outreachSourceCode: id: sourceCode: AnimalEmailCampaign2023 donor: donorType: individual id: organizationName: firstName: Test lastName: Donor phone: 510-434-8920 email: test.user@example.com address: - addressType: mailing street: 123 Main Street city: Oakland state: CA postalCode: '94610' country: US accountCustomFields: - fieldName: string fieldValue: string paymentInstrument: type: credit card accountHolderName: test donor expiryMonth: '10' expiryYear: '2027' last4: '4585' cardBrand: visa bankName: chase digitalWalletProvider: apple pay bankAccountHolderType: primary bankAccountType: checking bankAccountNumber: '123456' bankCode: HBUK gatewayName: stripe processorName: test processor processorPaymentReference: string gatewayReference: string designations: - designationId: percent: 10 amount: 150.25 giftTransactionCustomFields: - fieldName: string fieldValue: string contentMediaType: application/json example: processingOptions: donorOptions: defaultUpdateLogic: update_all gifts: - amount: 150.25 currencyIsoCode: USD receivedDate: '2024-07-06T00:00:00.000Z' donorCoverAmount: 0.25 transactionStatus: Unpaid commitmentId: paymentIdentifier: '1234' gatewayTransactionFee: 0.75 processorTransactionFee: 0.45 processorReference: cls-1247586928747 gatewayReference: 102656693ac3ca6e0cdafbfe89ab99 lastGatewayResponseCode: invalid_cvc lastGatewayErrorMessage: >- The card’s security code is invalid. Check the card’s security code or use a different card. lastGatewayProcessedDateTime: '2023-07-06T21:57:51.000Z' campaign: id: outreachSourceCode: id: sourceCode: AnimalEmailCampaign2023 donor: donorType: individual id: organizationName: firstName: Test lastName: Donor phone: 510-434-8920 email: test.user@example.com address: - addressType: mailing street: 123 Main Street city: Oakland state: CA postalCode: '94610' country: US accountCustomFields: - fieldName: string fieldValue: string paymentInstrument: type: credit card accountHolderName: test donor expiryMonth: '10' expiryYear: '2027' last4: '4585' cardBrand: visa bankName: chase digitalWalletProvider: apple pay bankAccountHolderType: primary bankAccountType: checking bankAccountNumber: '123456' bankCode: HBUK gatewayName: stripe processorName: test processor processorPaymentReference: string gatewayReference: string designations: - designationId: percent: 10 amount: 150.25 giftTransactionCustomFields: - fieldName: string fieldValue: string - amount: 250 currencyIsoCode: USD receivedDate: '2024-07-06T00:00:00.000Z' donorCoverAmount: 0.25 transactionStatus: Unpaid commitmentId: paymentIdentifier: '1234' gatewayTransactionFee: 0.75 processorTransactionFee: 0.45 processorReference: cls-1247586928747 gatewayReference: 102656693ac3ca6e0cdafbfe89ab99 lastGatewayResponseCode: invalid_cvc lastGatewayErrorMessage: >- The card’s security code is invalid. Check the card’s security code or use a different card. lastGatewayProcessedDateTime: '2023-07-06T21:57:51.000Z' campaign: id: outreachSourceCode: id: sourceCode: AnimalEmailCampaign2023 donor: donorType: individual id: organizationName: firstName: Test lastName: Donor phone: 510-434-8920 email: test.user@example.com address: - addressType: mailing street: 123 Main Street city: Oakland state: CA postalCode: '94610' country: US accountCustomFields: - fieldName: string fieldValue: string paymentInstrument: type: credit card accountHolderName: test donor expiryMonth: '10' expiryYear: '2027' last4: '4585' cardBrand: visa bankName: chase digitalWalletProvider: apple pay bankAccountHolderType: primary bankAccountType: checking bankAccountNumber: '123456' bankCode: HBUK gatewayName: stripe processorName: test processor processorPaymentReference: string gatewayReference: string designations: - designationId: percent: 10 amount: 150.25 giftTransactionCustomFields: - fieldName: string fieldValue: string required: true responses: '201': description: Created headers: {} content: application/json: schema: allOf: - $ref: '#/components/schemas/Status201-CreateGiftSuccess' - examples: - successes: 2 failures: 0 notProcessed: 0 details: - success: true links: account: href: >- /services/data/vXX.X/sobjects/sObject/ id: gifttransaction: href: >- /services/data/vXX.X/sobjects/sObject/ id: giftcommitment: href: >- /services/data/vXX.X/sobjects/sObject/ id: paymentinstrument: href: >- /services/data/vXX.X/sobjects/sObject/ id: gifttransactiondesignation: - href: >- /services/data/vXX.X/sobjects/sObject/ id: - success: true links: account: href: >- /services/data/vXX.X/sobjects/sObject/ id: gifttransaction: href: >- /services/data/vXX.X/sobjects/sObject/ id: giftcommitment: href: >- /services/data/vXX.X/sobjects/sObject/ id: paymentinstrument: href: >- /services/data/vXX.X/sobjects/sObject/ id: gifttransactiondesignation: - href: >- /services/data/vXX.X/sobjects/sObject/ id: contentMediaType: application/json example: successes: 2 failures: 0 notProcessed: 0 details: - success: true links: account: href: >- /services/data/vXX.X/sobjects/sObject/ id: gifttransaction: href: >- /services/data/vXX.X/sobjects/sObject/ id: giftcommitment: href: >- /services/data/vXX.X/sobjects/sObject/ id: paymentinstrument: href: >- /services/data/vXX.X/sobjects/sObject/ id: gifttransactiondesignation: - href: >- /services/data/vXX.X/sobjects/sObject/ id: - success: true links: account: href: >- /services/data/vXX.X/sobjects/sObject/ id: gifttransaction: href: >- /services/data/vXX.X/sobjects/sObject/ id: giftcommitment: href: >- /services/data/vXX.X/sobjects/sObject/ id: paymentinstrument: href: >- /services/data/vXX.X/sobjects/sObject/ id: gifttransactiondesignation: - href: >- /services/data/vXX.X/sobjects/sObject/ id: '400': description: Bad Request headers: {} content: application/json: schema: type: string examples: - |2- // Even if the JSON request is valid, this is an example of a 400 error code that will be returned if duplicate matching rules are not active. Any non 200 error code would have a similar response structure. { "errorCode": "UNKNOWN_EXCEPTION", "message": "Provide active duplicate matching rules on Account and Person Account for donor matching. -- industries.fundraisingops.connect.impl.validator.ValidatorUtil.validateMatchingMethod(ValidatorUtil.java:103)" } contentMediaType: application/json example: |2- // Even if the JSON request is valid, this is an example of a 400 error code that will be returned if duplicate matching rules are not active. Any non 200 error code would have a similar response structure. { "errorCode": "UNKNOWN_EXCEPTION", "message": "Provide active duplicate matching rules on Account and Person Account for donor matching. -- industries.fundraisingops.connect.impl.validator.ValidatorUtil.validateMatchingMethod(ValidatorUtil.java:103)" } default: description: '' headers: {} content: application/json: schema: allOf: - $ref: >- #/components/schemas/Status201-CreateGiftSuccessWithExternalIds - examples: - successes: 2 failures: 0 notProcessed: 0 details: - success: true links: account: href: >- /services/data/vXX.X/sobjects/sObject/ id: gifttransaction: href: >- /services/data/vXX.X/sobjects/sObject/ id: giftcommitment: href: >- /services/data/vXX.X/sobjects/sObject/ id: paymentinstrument: href: >- /services/data/vXX.X/sobjects/sObject/ id: gifttransactiondesignation: - href: >- /services/data/vXX.X/sobjects/sObject/ id: - success: true links: account: href: >- /services/data/vXX.X/sobjects/sObject/ id: gifttransaction: href: >- /services/data/vXX.X/sobjects/sObject/ id: giftcommitment: href: >- /services/data/vXX.X/sobjects/sObject/ id: paymentinstrument: href: >- /services/data/vXX.X/sobjects/sObject/ id: gifttransactiondesignation: - href: >- /services/data/vXX.X/sobjects/sObject/ id: contentMediaType: application/json example: successes: 2 failures: 0 notProcessed: 0 details: - success: true links: account: href: >- /services/data/vXX.X/sobjects/sObject/ id: gifttransaction: href: >- /services/data/vXX.X/sobjects/sObject/ id: giftcommitment: href: >- /services/data/vXX.X/sobjects/sObject/ id: paymentinstrument: href: >- /services/data/vXX.X/sobjects/sObject/ id: gifttransactiondesignation: - href: >- /services/data/vXX.X/sobjects/sObject/ id: - success: true links: account: href: >- /services/data/vXX.X/sobjects/sObject/ id: gifttransaction: href: >- /services/data/vXX.X/sobjects/sObject/ id: giftcommitment: href: >- /services/data/vXX.X/sobjects/sObject/ id: paymentinstrument: href: >- /services/data/vXX.X/sobjects/sObject/ id: gifttransactiondesignation: - href: >- /services/data/vXX.X/sobjects/sObject/ id: deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/connect/fundraising/transactions/payment-updates: post: tags: - Gift - Payments - Transaction - Update summary: Salesforce Update Gift Transaction Payments description: |- Update the gateway and processor metadata for gift transactions. ## Required Attributes: - giftTransactionId - transactionStatus operationId: UpdateGiftTransactionPayments parameters: [] requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/UpdateGiftTransactionPaymentsRequest' - examples: - updates: - giftTransactionId: transactionStatus: Paid processorReference: string gatewayReference: string lastGatewayResponseCode: invalid_cvc lastGatewayErrorMessage: >- The card’s security code is invalid. Check the card’s security code or use a different card. lastGatewayProcessedDateTime: '2023-07-06T21:57:51.000Z' processorTransactionFee: 0.5 gatewayTransactionFee: 0.25 donorCoverAmount: 10.5 - giftTransactionId: transactionStatus: Paid processorReference: string gatewayReference: string lastGatewayResponseCode: invalid_cvc lastGatewayErrorMessage: >- The card’s security code is invalid. Check the card’s security code or use a different card. lastGatewayProcessedDateTime: '2023-07-06T21:57:51.000Z' processorTransactionFee: 1 gatewayTransactionFee: 0.45 donorCoverAmount: 20 contentMediaType: application/json example: updates: - giftTransactionId: transactionStatus: Paid processorReference: string gatewayReference: string lastGatewayResponseCode: invalid_cvc lastGatewayErrorMessage: >- The card’s security code is invalid. Check the card’s security code or use a different card. lastGatewayProcessedDateTime: '2023-07-06T21:57:51.000Z' processorTransactionFee: 0.5 gatewayTransactionFee: 0.25 donorCoverAmount: 10.5 - giftTransactionId: transactionStatus: Paid processorReference: string gatewayReference: string lastGatewayResponseCode: invalid_cvc lastGatewayErrorMessage: >- The card’s security code is invalid. Check the card’s security code or use a different card. lastGatewayProcessedDateTime: '2023-07-06T21:57:51.000Z' processorTransactionFee: 1 gatewayTransactionFee: 0.45 donorCoverAmount: 20 required: true responses: '201': description: Created headers: {} content: application/json: schema: allOf: - $ref: >- #/components/schemas/Status201-UpdateTransactionPaymentSuccess - examples: - successes: 2 failures: 0 notProcessed: 0 details: - success: true links: gifttransaction: href: >- /services/data/vXX.X/sobjects/sObject/ id: - success: true links: gifttransaction: href: >- /services/data/vXX.X/sobjects/sObject/ id: contentMediaType: application/json example: successes: 2 failures: 0 notProcessed: 0 details: - success: true links: gifttransaction: href: >- /services/data/vXX.X/sobjects/sObject/ id: - success: true links: gifttransaction: href: >- /services/data/vXX.X/sobjects/sObject/ id: '400': description: Bad Request headers: {} content: application/json: schema: allOf: - $ref: >- #/components/schemas/Status201-UpdateTransactionPaymentWithExternalIds1 - examples: - successes: 1 failures: 0 notProcessed: 0 details: - success: true links: gifttransaction: href: >- /services/data/vXX.X/sobjects/sObject/ id: contentMediaType: application/json example: successes: 1 failures: 0 notProcessed: 0 details: - success: true links: gifttransaction: href: >- /services/data/vXX.X/sobjects/sObject/ id: deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/connect/fundraising/commitments: post: tags: - Create summary: Salesforce Create Commitments description: >- Create gift transactions with related new or matched donors, optional transaction designations, and payment instrument metadata. Supports custom fields for the donor account and gift transaction. ## Required Attributes: - commitments.amount - commitments.transactionPeriod - commitments.startDate - donor.donorType ("individual" or "organization") - donor.lastName - donor.organization - paymentinstrument.type All other attributes are optional can be left as an empty string or just removed from the request body entirely. The only exceptions to this are: - CustomFields collections - These cannot be left in the request body as an empty collection or wit an empty string for the FieldName. ### Validated Property Formats (an empty string is considered valid) - DateTime - YYYY-MM-DDTHH:MM:SSZ - Date - YYYY-MM-DD - Email - a valid formatted email address #### Other Attributes - OutreachSource -- This is optional. Be sure to create the OutreachSourceCode record in the system if passing a value - Will accept **either** an OutreachSourceCode.id (SalesforceId) or an OutreachSourceCode.Code. #### Custom fields - The field_value can be a text string (inc. for a date data-type) or a numeric value (without quotes) - Do not include an empty collection or an empty fieldName in the request body operationId: CreateCommitments parameters: [] requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/CreateCommitmentsRequest' - examples: - processingOptions: donorOptions: defaultUpdateLogic: update_all commitments: - amount: 150.25 currencyIsoCode: USD transactionPeriod: monthly transactionInterval: 3 transactionDay: '5' startDate: '2024-07-06T00:00:00.000Z' endDate: '2024-08-06T00:00:00.000Z' campaign: id: outreachSourceCode: id: sourceCode: AnimalEmailCampaign2023 donor: donorType: individual id: firstName: Test lastName: Donor phone: 510-434-8920 email: test.donor@salesforce.com address: - addressType: mailing street: 123 Main Street city: Oakland state: CA postalCode: '94610' country: US accountCustomFields: - fieldName: fieldValue: string paymentInstrument: type: credit card accountHolderName: test donor expiryMonth: '10' expiryYear: '2026' last4: '4585' cardBrand: visa bankName: chase digitalWalletProvider: apple pay bankAccountHolderType: primary bankAccountType: checking bankAccountNumber: '123456' bankCode: HBUK gatewayName: stripe processorName: test processor processorPaymentReference: string gatewayReference: string designations: - designationId: percent: 10 firstTransaction: amount: 150.25 receivedDate: '2024-07-06T00:00:00.000Z' donorCoverAmount: 0.25 transactionStatus: Unpaid gatewayTransactionFee: 0.75 processorTransactionFee: 0.45 processorReference: cls-1247586928747 gatewayReference: 102656693ac3ca6e0cdafbfe89ab99 lastGatewayResponseCode: invalid_cvc lastGatewayErrorMessage: >- The card’s security code is invalid. Check the card’s security code or use a different card. lastGatewayProcessedDateTime: '2023-07-06T21:57:51.000Z' giftCommitmentCustomFields: - fieldName: fieldValue: string giftCommitmentScheduleCustomFields: - fieldName: fieldValue: string contentMediaType: application/json example: processingOptions: donorOptions: defaultUpdateLogic: update_all commitments: - amount: 150.25 currencyIsoCode: USD transactionPeriod: monthly transactionInterval: 3 transactionDay: '5' startDate: '2024-07-06T00:00:00.000Z' endDate: '2024-08-06T00:00:00.000Z' campaign: id: outreachSourceCode: id: sourceCode: AnimalEmailCampaign2023 donor: donorType: individual id: firstName: Test lastName: Donor phone: 510-434-8920 email: test.donor@salesforce.com address: - addressType: mailing street: 123 Main Street city: Oakland state: CA postalCode: '94610' country: US accountCustomFields: - fieldName: fieldValue: string paymentInstrument: type: credit card accountHolderName: test donor expiryMonth: '10' expiryYear: '2026' last4: '4585' cardBrand: visa bankName: chase digitalWalletProvider: apple pay bankAccountHolderType: primary bankAccountType: checking bankAccountNumber: '123456' bankCode: HBUK gatewayName: stripe processorName: test processor processorPaymentReference: string gatewayReference: string designations: - designationId: percent: 10 firstTransaction: amount: 150.25 receivedDate: '2024-07-06T00:00:00.000Z' donorCoverAmount: 0.25 transactionStatus: Unpaid gatewayTransactionFee: 0.75 processorTransactionFee: 0.45 processorReference: cls-1247586928747 gatewayReference: 102656693ac3ca6e0cdafbfe89ab99 lastGatewayResponseCode: invalid_cvc lastGatewayErrorMessage: >- The card’s security code is invalid. Check the card’s security code or use a different card. lastGatewayProcessedDateTime: '2023-07-06T21:57:51.000Z' giftCommitmentCustomFields: - fieldName: fieldValue: string giftCommitmentScheduleCustomFields: - fieldName: fieldValue: string required: true responses: '201': description: Created headers: {} content: application/json: schema: allOf: - $ref: '#/components/schemas/Status201-CreateCommitmentSuccess' - examples: - successes: 1 failures: 0 notProcessed: 0 details: - success: true links: giftcommitment: href: >- /services/data/vXX.X/sobjects/sObject/ id: giftcommitmentschedule: href: >- /services/data/vXX.X/sobjects/sObject/ id: giftdefaultdesignation: - href: >- /services/data/vXX.X/sobjects/sObject/ id: gifttransaction: href: >- /services/data/vXX.X/sobjects/sObject/ id: paymentinstrument: href: >- /services/data/vXX.X/sobjects/sObject/ id: account: href: >- /services/data/vXX.X/sobjects/sObject/ id: - success: true links: giftcommitment: href: >- /services/data/vXX.X/sobjects/sObject/ id: giftcommitmentschedule: href: >- /services/data/vXX.X/sobjects/sObject/ id: giftdefaultdesignation: - href: >- /services/data/vXX.X/sobjects/sObject/ id: gifttransaction: href: >- /services/data/vXX.X/sobjects/sObject/ id: paymentinstrument: href: >- /services/data/vXX.X/sobjects/sObject/ id: account: href: >- /services/data/vXX.X/sobjects/sObject/ id: contentMediaType: application/json example: successes: 1 failures: 0 notProcessed: 0 details: - success: true links: giftcommitment: href: >- /services/data/vXX.X/sobjects/sObject/ id: giftcommitmentschedule: href: >- /services/data/vXX.X/sobjects/sObject/ id: giftdefaultdesignation: - href: >- /services/data/vXX.X/sobjects/sObject/ id: gifttransaction: href: >- /services/data/vXX.X/sobjects/sObject/ id: paymentinstrument: href: >- /services/data/vXX.X/sobjects/sObject/ id: account: href: >- /services/data/vXX.X/sobjects/sObject/ id: - success: true links: giftcommitment: href: >- /services/data/vXX.X/sobjects/sObject/ id: giftcommitmentschedule: href: >- /services/data/vXX.X/sobjects/sObject/ id: giftdefaultdesignation: - href: >- /services/data/vXX.X/sobjects/sObject/ id: gifttransaction: href: >- /services/data/vXX.X/sobjects/sObject/ id: paymentinstrument: href: >- /services/data/vXX.X/sobjects/sObject/ id: account: href: >- /services/data/vXX.X/sobjects/sObject/ id: '400': description: Bad Request headers: {} content: application/json: schema: type: string examples: - |2- // Even if the JSON request is valid, this is an example of a 400 error code that will be returned if duplicate matching rules are not active. Any non 200 error code would have a similar response structure. { "errorCode": "UNKNOWN_EXCEPTION", "message": "Provide active duplicate matching rules on Account and Person Account for donor matching. -- industries.fundraisingops.connect.impl.validator.ValidatorUtil.validateMatchingMethod(ValidatorUtil.java:103)" } contentMediaType: application/json example: |2- // Even if the JSON request is valid, this is an example of a 400 error code that will be returned if duplicate matching rules are not active. Any non 200 error code would have a similar response structure. { "errorCode": "UNKNOWN_EXCEPTION", "message": "Provide active duplicate matching rules on Account and Person Account for donor matching. -- industries.fundraisingops.connect.impl.validator.ValidatorUtil.validateMatchingMethod(ValidatorUtil.java:103)" } default: description: '' headers: {} content: application/json: schema: allOf: - $ref: >- #/components/schemas/Status201-CreateCommitmentSuccessWithExternalIds - examples: - successes: 2 failures: 0 notProcessed: 0 details: - success: true links: giftcommitment: href: >- /services/data/vXX.X/sobjects/sObject/ id: giftcommitmentschedule: href: >- /services/data/vXX.X/sobjects/sObject/ id: giftdefaultdesignation: - href: >- /services/data/vXX.X/sobjects/sObject/ id: gifttransaction: href: >- /services/data/vXX.X/sobjects/sObject/ id: paymentinstrument: href: >- /services/data/vXX.X/sobjects/sObject/ id: account: href: >- /services/data/vXX.X/sobjects/sObject/ id: - success: true links: giftcommitment: href: >- /services/data/vXX.X/sobjects/sObject/ id: giftcommitmentschedule: href: >- /services/data/vXX.X/sobjects/sObject/ id: giftdefaultdesignation: - href: >- /services/data/vXX.X/sobjects/sObject/ id: gifttransaction: href: >- /services/data/vXX.X/sobjects/sObject/ id: paymentinstrument: href: >- /services/data/vXX.X/sobjects/sObject/ id: account: href: >- /services/data/vXX.X/sobjects/sObject/ id: contentMediaType: application/json example: successes: 2 failures: 0 notProcessed: 0 details: - success: true links: giftcommitment: href: >- /services/data/vXX.X/sobjects/sObject/ id: giftcommitmentschedule: href: >- /services/data/vXX.X/sobjects/sObject/ id: giftdefaultdesignation: - href: >- /services/data/vXX.X/sobjects/sObject/ id: gifttransaction: href: >- /services/data/vXX.X/sobjects/sObject/ id: paymentinstrument: href: >- /services/data/vXX.X/sobjects/sObject/ id: account: href: >- /services/data/vXX.X/sobjects/sObject/ id: - success: true links: giftcommitment: href: >- /services/data/vXX.X/sobjects/sObject/ id: giftcommitmentschedule: href: >- /services/data/vXX.X/sobjects/sObject/ id: giftdefaultdesignation: - href: >- /services/data/vXX.X/sobjects/sObject/ id: gifttransaction: href: >- /services/data/vXX.X/sobjects/sObject/ id: paymentinstrument: href: >- /services/data/vXX.X/sobjects/sObject/ id: account: href: >- /services/data/vXX.X/sobjects/sObject/ id: deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/connect/fundraising/commitments/{commitmentId}: patch: tags: - Update summary: Salesforce Update Commitments description: >- Modify the schedule or payment instrument metadata on an existing active gift commitment. ## Required Attributes: - {commitmentId} - amount - transactionPeriod (Monthly, Weekly, Yearly, etc.) - startDate - paymentInstrument.type All other attributes are optional can be left as an empty string or just removed from the request body entirely. The only exceptions to this are: - CustomFields collections - These cannot be left in the request body as an empty collection or with an empty string for the FieldName. ## Validated Property Formats (an empty string is considered valid) - DateTime - YYYY-MM-DDTHH:MM:SSZ - Date - YYYY-MM-DD - Email - a valid formatted email address ### Other Attributes - OutreachSource -- This is optional. Be sure to create the OutreachSourceCode record in the system if passing a value - Will accept either an OutreachSourceCode.id (SalesforceId) or an OutreachSourceCode.Code. ### Custom Fields - The field_value can be a text string (inc. for a date data-type) or a numeric value (without quotes) - Do not include an empty collection or an empty fieldName in the request body operationId: UpdateCommitments parameters: - name: commitmentId in: path description: '' required: true schema: type: string example: '500123' requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/UpdateCommitmentsRequest' - examples: - amount: 150.25 transactionPeriod: monthly transactionInterval: 3 transactionDay: '5' startDate: '2024-07-06T00:00:00.000Z' endDate: '2024-07-06T00:00:00.000Z' campaign: id: outreachSourceCode: id: sourceCode: AnimalEmailCampaign2023 donor: donorType: individual organizationName: mini cat town firstName: David lastName: Taylor phone: 510-434-8920 email: davidtaylor@salesforce.com address: - addressType: mailing street: 123 Main Street city: Oakland state: CA postalCode: '94610' country: US accountCustomFields: - fieldName: string fieldValue: string paymentInstrument: type: credit card accountHolderName: david taylor expiryMonth: '10' expiryYear: '2026' last4: '4585' cardBrand: visa bankName: chase digitalWalletProvider: apple pay bankAccountHolderType: primary bankAccountType: checking bankAccountNumber: '123456' bankCode: HBUK gatewayName: stripe processorName: classy processorPaymentReference: string gatewayReference: string giftCommitmentCustomFields: - fieldName: string fieldValue: string giftCommitmentScheduleCustomFields: - fieldName: string fieldValue: string contentMediaType: application/json example: amount: 150.25 transactionPeriod: monthly transactionInterval: 3 transactionDay: '5' startDate: '2024-07-06T00:00:00.000Z' endDate: '2024-07-06T00:00:00.000Z' campaign: id: outreachSourceCode: id: sourceCode: AnimalEmailCampaign2023 donor: donorType: individual organizationName: mini cat town firstName: David lastName: Taylor phone: 510-434-8920 email: davidtaylor@salesforce.com address: - addressType: mailing street: 123 Main Street city: Oakland state: CA postalCode: '94610' country: US accountCustomFields: - fieldName: string fieldValue: string paymentInstrument: type: credit card accountHolderName: david taylor expiryMonth: '10' expiryYear: '2026' last4: '4585' cardBrand: visa bankName: chase digitalWalletProvider: apple pay bankAccountHolderType: primary bankAccountType: checking bankAccountNumber: '123456' bankCode: HBUK gatewayName: stripe processorName: classy processorPaymentReference: string gatewayReference: string giftCommitmentCustomFields: - fieldName: string fieldValue: string giftCommitmentScheduleCustomFields: - fieldName: string fieldValue: string required: true responses: '200': description: OK headers: {} content: application/json: schema: allOf: - $ref: '#/components/schemas/Status200-UpdateCommitmentSuccess' - examples: - success: true links: giftcommitment: href: >- /services/data/vXX.X/sobjects/sObject/ id: giftcommitmentschedule: href: >- /services/data/vXX.X/sobjects/sObject/ id: contentMediaType: application/json example: success: true links: giftcommitment: href: >- /services/data/vXX.X/sobjects/sObject/ id: giftcommitmentschedule: href: >- /services/data/vXX.X/sobjects/sObject/ id: '400': description: Bad Request headers: {} content: application/json: schema: type: string examples: - |2- // Even if the JSON request is valid, this is an example of a 400 error code that will be returned if duplicate matching rules are not active. Any non 200 error code would have a similar response structure. { "errorCode": "UNKNOWN_EXCEPTION", "message": "Provide active duplicate matching rules on Account and Person Account for donor matching. -- industries.fundraisingops.connect.impl.validator.ValidatorUtil.validateMatchingMethod(ValidatorUtil.java:103)" } contentMediaType: application/json example: |2- // Even if the JSON request is valid, this is an example of a 400 error code that will be returned if duplicate matching rules are not active. Any non 200 error code would have a similar response structure. { "errorCode": "UNKNOWN_EXCEPTION", "message": "Provide active duplicate matching rules on Account and Person Account for donor matching. -- industries.fundraisingops.connect.impl.validator.ValidatorUtil.validateMatchingMethod(ValidatorUtil.java:103)" } deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/connect/fundraising/commitments/payment-updates: post: tags: - Commitment - Payments - Update summary: Salesforce Update Commitment Payments description: >- Update the future payment instrument metadata for active gift commitments. ## Required Attributes: - giftCommitmentId - paymentInstrument.type operationId: UpdateCommitmentPayments parameters: [] requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/UpdateCommitmentPaymentsRequest' - examples: - updates: - giftCommitmentId: paymentInstrument: type: credit card accountHolderName: test donor 1 expiryMonth: '10' expiryYear: '2026' last4: '4585' cardBrand: visa bankName: chase digitalWalletProvider: apple pay bankAccountHolderType: primary bankAccountType: checking bankAccountNumber: '123456' bankCode: HBUK gatewayName: stripe processorName: classy processorPaymentReference: string gatewayReference: string - giftCommitmentId: paymentInstrument: type: credit card accountHolderName: test donor 2 expiryMonth: '10' expiryYear: '2026' last4: '4585' cardBrand: visa bankName: chase digitalWalletProvider: apple pay bankAccountHolderType: primary bankAccountType: checking bankAccountNumber: '123456' bankCode: HBUK gatewayName: stripe processorName: test processor processorPaymentReference: string gatewayReference: string contentMediaType: application/json example: updates: - giftCommitmentId: paymentInstrument: type: credit card accountHolderName: test donor 1 expiryMonth: '10' expiryYear: '2026' last4: '4585' cardBrand: visa bankName: chase digitalWalletProvider: apple pay bankAccountHolderType: primary bankAccountType: checking bankAccountNumber: '123456' bankCode: HBUK gatewayName: stripe processorName: classy processorPaymentReference: string gatewayReference: string - giftCommitmentId: paymentInstrument: type: credit card accountHolderName: test donor 2 expiryMonth: '10' expiryYear: '2026' last4: '4585' cardBrand: visa bankName: chase digitalWalletProvider: apple pay bankAccountHolderType: primary bankAccountType: checking bankAccountNumber: '123456' bankCode: HBUK gatewayName: stripe processorName: test processor processorPaymentReference: string gatewayReference: string required: true responses: '200': description: OK headers: {} content: application/json: schema: allOf: - $ref: '#/components/schemas/Status201-UpdateCommitmentSuccess' - examples: - successes: 2 failures: 0 notProcessed: 0 details: - success: true links: giftcommitment: href: >- /services/data/vXX.X/sobjects/sObject/ id: paymentinstrument: href: >- /services/data/vXX.X/sobjects/sObject/ id: - success: true links: giftcommitment: href: >- /services/data/vXX.X/sobjects/sObject/ id: paymentinstrument: href: >- /services/data/vXX.X/sobjects/sObject/ id: contentMediaType: application/json example: successes: 2 failures: 0 notProcessed: 0 details: - success: true links: giftcommitment: href: >- /services/data/vXX.X/sobjects/sObject/ id: paymentinstrument: href: >- /services/data/vXX.X/sobjects/sObject/ id: - success: true links: giftcommitment: href: >- /services/data/vXX.X/sobjects/sObject/ id: paymentinstrument: href: >- /services/data/vXX.X/sobjects/sObject/ id: '201': description: Created headers: {} content: application/json: schema: allOf: - $ref: >- #/components/schemas/Status200-UpdateCommitmentRequestValidationFailure1 - examples: - successes: 1 failures: 1 notProcessed: 0 details: - success: false errors: field: id message: - success: true links: giftcommitment: href: >- /services/data/vXX.X/sobjects/sObject/ id: paymentinstrument: href: >- /services/data/vXX.X/sobjects/sObject/ id: contentMediaType: application/json example: successes: 1 failures: 1 notProcessed: 0 details: - success: false errors: field: id message: - success: true links: giftcommitment: href: >- /services/data/vXX.X/sobjects/sObject/ id: paymentinstrument: href: >- /services/data/vXX.X/sobjects/sObject/ id: '400': description: Bad Request headers: {} content: application/json: schema: type: string examples: - |2- // Even if the JSON request is valid, this is an example of a 400 error code that will be returned if duplicate matching rules are not active. Any non 200 error code would have a similar response structure. { "errorCode": "UNKNOWN_EXCEPTION", "message": "Provide active duplicate matching rules on Account and Person Account for donor matching. -- industries.fundraisingops.connect.impl.validator.ValidatorUtil.validateMatchingMethod(ValidatorUtil.java:103)" } contentMediaType: application/json example: |2- // Even if the JSON request is valid, this is an example of a 400 error code that will be returned if duplicate matching rules are not active. Any non 200 error code would have a similar response structure. { "errorCode": "UNKNOWN_EXCEPTION", "message": "Provide active duplicate matching rules on Account and Person Account for donor matching. -- industries.fundraisingops.connect.impl.validator.ValidatorUtil.validateMatchingMethod(ValidatorUtil.java:103)" } deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/einstein/prompt-templates/{PROMPT_TEMPLATE_API_NAME}/generations: post: tags: - Based - Generate - Prompts - Response - Templates summary: Salesforce Generate Response Based on Prompt Template description: >- Generates a response based on the specified prompt template and input parameters ([documentation](https://developer.salesforce.com/docs/atlas.en-us.chatterapi.meta/chatterapi/connect_resources_prompt_template.htm)). operationId: GenerateResponseBasedonPromptTemplate parameters: - name: PROMPT_TEMPLATE_API_NAME in: path description: API name of the prompt template to invoke required: true schema: type: string example: example_value requestBody: description: '' content: text/plain: schema: type: string examples: - |- { "isPreview": "false", "inputParams": { "valueMap": { } }, "additionalConfig": { "numGenerations": 1, "temperature": 0, "frequencyPenalty": 0.0, "presencePenalty": 0.0, "additionalParameters": {}, "applicationName": "PromptBuilderPreview" } } contentMediaType: text/plain example: |- { "isPreview": "false", "inputParams": { "valueMap": { } }, "additionalConfig": { "numGenerations": 1, "temperature": 0, "frequencyPenalty": 0.0, "presencePenalty": 0.0, "additionalParameters": {}, "applicationName": "PromptBuilderPreview" } } required: true responses: '201': description: Created headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 27 Mar 2024 10:30:55 GMT Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked Connection: content: text/plain: schema: type: string contentMediaType: text/plain example: keep-alive Set-Cookie: content: text/plain: schema: type: string contentMediaType: text/plain example: >- CookieConsentPolicy=0:1; path=/; expires=Thu, 27-Mar-2025 10:30:46 GMT; Max-Age=31536000; secure Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Origin-Trial: content: text/plain: schema: type: string contentMediaType: text/plain example: >- AqlAE64ET63tVSana3qdVkfkPAgyUhY8GwcehUlpqv067CevOpumeNUlx9YouLkBxJ0CT+EwIb8/SiNbF2NGvwYAAABfeyJvcmlnaW4iOiJodHRwczovL3NhbGVzZm9yY2UuY29tOjQ0MyIsImZlYXR1cmUiOiJUcGNkIiwiZXhwaXJ5IjoxNzM1MzQzOTk5LCJpc1N1YmRvbWFpbiI6dHJ1ZX0= Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Server: content: text/plain: schema: type: string contentMediaType: text/plain example: sfdcedge X-SFDC-Request-Id: content: text/plain: schema: type: string contentMediaType: text/plain example: 7070edfcd5d02a0d047af20b8dccf83e content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/GenerateResponseBasedonPromptTemplate' - examples: - generations: - parameters: '{finish_reason=stop, index=0, logprobs=null}' responseId: 893db990-7acb-4845-ad65-54d82606ca65 text: |- { "twitter": "🌟 Exciting new listing! Explore our luxurious property, [Provide:{PROPERTY NAME}], featuring [Provide:{BEDS}] beds, [Provide:{BATHS}] baths, and an asking price of [Provide:{ASKING PRICE}]. Click the link for a sneak peek! [Provide:{PICTURE}]", "linkedin": "🌟🌟 Don't miss out on this incredible opportunity! Discover the stunning property, [Provide:{PROPERTY NAME}], offering [Provide:{BEDS}] beds, [Provide:{BATHS}] baths, and an asking price of [Provide:{ASKING PRICE}]. Click the link below to see more! [Provide:{PICTURE}]", "blockkit": { "blocks": [ { "type": "section", "text": { "type": "mrkdwn", "text": "*Luxury Property Alert!* \n\n🌟🌟🌟\n\nIntroducing [Provide:{PROPERTY NAME}], a magnificent home with [Provide:{BEDS}] beds and [Provide:{BATHS}] baths. Priced at [Provide:{ASKING PRICE}]." }, "accessory": { "type": "image", "image_url": "[Provide:{PICTURE}]", "alt_text": "Luxury Property" } }, { "type": "divider" }, { "type": "actions", "elements": [ { "type": "button", "text": { "type": "plain_text", "text": "View Property", "emoji": true }, "url": "https://d1q000001ewauuaq-dev-ed.develop.lightning.force.com/[Provide:{RECORD ID}]" } ] } ] } } parameters: prompt: "You're the community manager for Dreamhouse, a real estate agency that sells luxury properties. \nCreate social media posts for twitter, linkedin and slack (block kit format) describing the property.\n\nInstructions:\n"""\nUse clear, concise, and straightforward language using the active voice and strictly avoiding the use of filler words and phrases and redundant language.\nMake sure the response is valid JSON.\nWhen you generate the posts, include the name of the property, [Provide:{PROPERTY NAME}], and explain the characteristics of the house, such as [Provide:{BATHS}], [Provide:{BEDS}]and[Provide:{ASKING PRICE}]. Also include a link to the picture of the property, [Provide:{PICTURE}]. \n\n\ The twitter post should include emojis.\nThe linkedin post should include several emojis and bullets, and also have a special output formatting: Text render environment only supports Unicode and emoji. Use symbols from Unicode’s Mathematical Alphanumeric Symbols block liberally to produce facsimiles of bold, italics, line separation, and other formatting. Examples for a sample sentence:\n\nitalics sans: 𝘛𝘩𝘦 𝘘𝘶𝘪𝘤𝘬 𝘉𝘳𝘰𝘸𝘯 𝘍𝘰𝘹 𝘑𝘶𝘮𝘱𝘦𝘥 𝘖𝘷𝘦𝘳 𝘵𝘩𝘦 𝘭𝘢𝘻𝘺 𝘥𝘰𝘨.\nbold sans: 𝗧𝗵𝗲 𝗤𝘂𝗶𝗰𝗸 𝗕𝗿𝗼𝘄𝗻 𝗙𝗼𝘅 𝗝𝘂𝗺𝗽𝗲𝗱 𝗢𝘃𝗲𝗿 𝘁𝗵𝗲 𝗹𝗮𝘇𝘆 𝗱𝗼𝗴.\nbold italic sans: 𝙏𝙝𝙚 𝙌𝙪𝙞𝙘𝙠 𝘽𝙧𝙤𝙬𝙣 𝙁𝙤𝙭 𝙅𝙪𝙢𝙥𝙚𝙙 𝙊𝙫𝙚𝙧 𝙩𝙝𝙚 𝙡𝙖𝙯𝙮 𝙙𝙤𝙜.\nitalics serif: 𝑇ℎ𝑒 𝑄𝑢𝑖𝑐𝑘 𝐵𝑟𝑜𝑤𝑛 𝐹𝑜𝑥 𝐽𝑢𝑚𝑝𝑒𝑑 𝑂𝑣𝑒𝑟 𝑡ℎ𝑒 𝑙𝑎𝑧𝑦 𝑑𝑜𝑔.\n\nThe block kit code should be valid block kit code.\nWhen you generate the block kit code:\ \ \n- Add several sections. \n- Include the name of the property, [Provide:{PROPERTY NAME}], and explain the characteristics of the house, such as [Provide:{BATHS}], [Provide:{BEDS}] and [Provide:{ASKING PRICE}]. \n- Include a the picture of the property, which image_url is [Provide:{PICTURE}]. \n- Include a button which url points to https://d1q000001ewauuaq-dev-ed.develop.lightning.force.com/[Provide:{RECORD ID}]\n- Include emoticons so the post is more visual.\n\nExample of block kit code:\n\n{\n "blocks": [\n {\n "type": "section",\n\ \ "text": {\n "type": "mrkdwn",\n "text": "Hello, Assistant to the Regional Manager Dwight! *Michael Scott* wants to know where you'd like to take the Paper Company investors to dinner tonight.\n\n *Please select a restaurant:*"\n }\n },\n \ \ {\n "type": "divider"\n },\n {\n "type": "section",\n "text": {\n \ \ "type": "mrkdwn",\n "text": "*Farmhouse Thai Cuisine*\n:star::star::star::star: 1528 reviews\n They do have some vegan options, like the roti and curry, plus they have a ton of salad stuff and noodles can be ordered without meat!! They have something for everyone here"\n },\n \ \ "accessory": {\n "type": "image",\n "image_url": "https://s3-media3.fl.yelpcdn.com/bphoto/c7ed05m9lC2EmA3Aruue7A/o.jpg",\n\ \ "alt_text": "alt text for image"\n }\n },\n {\n "type": "section",\n "text": {\n "type": "mrkdwn",\n "text": "*Kin Khao*\n:star::star::star::star: 1638 reviews\n The sticky rice also goes wonderfully with the caramelized pork belly, which is absolutely melt-in-your-mouth and so soft."\n },\n "accessory": {\n "type": "image",\n "image_url": "https://s3-media2.fl.yelpcdn.com/bphoto/korel-1YjNtFtJlMTaC26A/o.jpg",\n "alt_text": "alt text for image"\n }\n },\n {\n "type": "section",\n "text": {\n "type": "mrkdwn",\n "text": "*Ler Ros*\n:star::star::star::star: 2082 reviews\n I would really recommend the Yum Koh Moo Yang - Spicy lime dressing and roasted quick marinated pork shoulder, basil leaves, chili & rice powder."\n },\n "accessory": {\n "type": "image",\n\ \ "image_url": "https://s3-media2.fl.yelpcdn.com/bphoto/DawwNigKJ2ckPeDeDM7jAg/o.jpg",\n "alt_text": "alt text for image"\n }\n },\n {\n "type": "divider"\n },\n {\n "type": "actions",\n \ \ "elements": [\n {\n "type": "button",\n "text": {\n "type": "plain_text",\n "text": "Farmhouse",\n "emoji": true\n },\n \ \ "value": "click_me_123"\n },\n {\n "type": "button",\n "text": {\n "type": "plain_text",\n "text": "Kin Khao",\n "emoji": true\n\ \ },\n "value": "click_me_123",\n "url": "https://google.com"\n },\n\ \ {\n "type": "button",\n "text": {\n "type": "plain_text",\n\ \ "text": "Ler Ros",\n "emoji": true\n },\n "value": "click_me_123",\n\ \ "url": "https://google.com"\n }\n ]\n }\n ]\n}\n\nThe response should have the next format:\n{\n "twitter": [here goes the twitter post, that should have less than 280 characters],\n "linkedin": [here goes the linkedin post, that should have between 1500 and 2000 characters], \n\ \ "blockkit": [here goes the block kit post], \n}\n\n"""\n\nNow generate the posts.\n\n\n" promptTemplateDevName: Generate_Social_Media_Posts requestId: chatcmpl-97KqPl1TEiOgMdnKKPQ9aVs7rPJGr contentMediaType: application/json;charset=UTF-8 example: generations: - parameters: '{finish_reason=stop, index=0, logprobs=null}' responseId: 893db990-7acb-4845-ad65-54d82606ca65 text: |- { "twitter": "🌟 Exciting new listing! Explore our luxurious property, [Provide:{PROPERTY NAME}], featuring [Provide:{BEDS}] beds, [Provide:{BATHS}] baths, and an asking price of [Provide:{ASKING PRICE}]. Click the link for a sneak peek! [Provide:{PICTURE}]", "linkedin": "🌟🌟 Don't miss out on this incredible opportunity! Discover the stunning property, [Provide:{PROPERTY NAME}], offering [Provide:{BEDS}] beds, [Provide:{BATHS}] baths, and an asking price of [Provide:{ASKING PRICE}]. Click the link below to see more! [Provide:{PICTURE}]", "blockkit": { "blocks": [ { "type": "section", "text": { "type": "mrkdwn", "text": "*Luxury Property Alert!* \n\n🌟🌟🌟\n\nIntroducing [Provide:{PROPERTY NAME}], a magnificent home with [Provide:{BEDS}] beds and [Provide:{BATHS}] baths. Priced at [Provide:{ASKING PRICE}]." }, "accessory": { "type": "image", "image_url": "[Provide:{PICTURE}]", "alt_text": "Luxury Property" } }, { "type": "divider" }, { "type": "actions", "elements": [ { "type": "button", "text": { "type": "plain_text", "text": "View Property", "emoji": true }, "url": "https://d1q000001ewauuaq-dev-ed.develop.lightning.force.com/[Provide:{RECORD ID}]" } ] } ] } } parameters: prompt: "You're the community manager for Dreamhouse, a real estate agency that sells luxury properties. \nCreate social media posts for twitter, linkedin and slack (block kit format) describing the property.\n\nInstructions:\n"""\nUse clear, concise, and straightforward language using the active voice and strictly avoiding the use of filler words and phrases and redundant language.\nMake sure the response is valid JSON.\nWhen you generate the posts, include the name of the property, [Provide:{PROPERTY NAME}], and explain the characteristics of the house, such as [Provide:{BATHS}], [Provide:{BEDS}]and[Provide:{ASKING PRICE}]. Also include a link to the picture of the property, [Provide:{PICTURE}]. \n\nThe twitter post should include emojis.\nThe linkedin post should include several emojis and bullets, and also have a special output formatting: Text render environment only supports Unicode and emoji. Use symbols from Unicode’s Mathematical Alphanumeric Symbols block liberally to produce facsimiles of bold, italics, line separation, and other formatting. Examples for a sample sentence:\n\nitalics sans: 𝘛𝘩𝘦 𝘘𝘶𝘪𝘤𝘬 𝘉𝘳𝘰𝘸𝘯 𝘍𝘰𝘹 𝘑𝘶𝘮𝘱𝘦𝘥 𝘖𝘷𝘦𝘳 𝘵𝘩𝘦 𝘭𝘢𝘻𝘺 𝘥𝘰𝘨.\nbold sans: 𝗧𝗵𝗲 𝗤𝘂𝗶𝗰𝗸 𝗕𝗿𝗼𝘄𝗻 𝗙𝗼𝘅 𝗝𝘂𝗺𝗽𝗲𝗱 𝗢𝘃𝗲𝗿 𝘁𝗵𝗲 𝗹𝗮𝘇𝘆 𝗱𝗼𝗴.\nbold italic sans: 𝙏𝙝𝙚 𝙌𝙪𝙞𝙘𝙠 𝘽𝙧𝙤𝙬𝙣 𝙁𝙤𝙭 𝙅𝙪𝙢𝙥𝙚𝙙 𝙊𝙫𝙚𝙧 𝙩𝙝𝙚 𝙡𝙖𝙯𝙮 𝙙𝙤𝙜.\nitalics serif: 𝑇ℎ𝑒 𝑄𝑢𝑖𝑐𝑘 𝐵𝑟𝑜𝑤𝑛 𝐹𝑜𝑥 𝐽𝑢𝑚𝑝𝑒𝑑 𝑂𝑣𝑒𝑟 𝑡ℎ𝑒 𝑙𝑎𝑧𝑦 𝑑𝑜𝑔.\n\nThe block kit code should be valid block kit code.\nWhen you generate the block kit code: \n- Add several sections. \n- Include the name of the property, [Provide:{PROPERTY NAME}], and explain the characteristics of the house, such as [Provide:{BATHS}], [Provide:{BEDS}] and [Provide:{ASKING PRICE}]. \n- Include a the picture of the property, which image_url is [Provide:{PICTURE}]. \n- Include a button which url points to https://d1q000001ewauuaq-dev-ed.develop.lightning.force.com/[Provide:{RECORD ID}]\n- Include emoticons so the post is more visual.\n\nExample of block kit code:\n\n{\n "blocks": [\n {\n "type": "section",\n \ \ "text": {\n "type": "mrkdwn",\n "text": "Hello, Assistant to the Regional Manager Dwight! *Michael Scott* wants to know where you'd like to take the Paper Company investors to dinner tonight.\n\n *Please select a restaurant:*"\n }\n },\n {\n\ \ "type": "divider"\n },\n {\n "type": "section",\n "text": {\n "type": "mrkdwn",\n "text": "*Farmhouse Thai Cuisine*\n:star::star::star::star: 1528 reviews\n They do have some vegan options, like the roti and curry, plus they have a ton of salad stuff and noodles can be ordered without meat!! They have something for everyone here"\n },\n "accessory": {\n\ \ "type": "image",\n "image_url": "https://s3-media3.fl.yelpcdn.com/bphoto/c7ed05m9lC2EmA3Aruue7A/o.jpg",\n \ \ "alt_text": "alt text for image"\n }\n },\n {\n "type": "section",\n "text": {\n "type": "mrkdwn",\n "text": "*Kin Khao*\n:star::star::star::star: 1638 reviews\n The sticky rice also goes wonderfully with the caramelized pork belly, which is absolutely melt-in-your-mouth and so soft."\n },\n "accessory": {\n "type": "image",\n "image_url": "https://s3-media2.fl.yelpcdn.com/bphoto/korel-1YjNtFtJlMTaC26A/o.jpg",\n "alt_text": "alt text for image"\n }\n },\n {\n "type": "section",\n "text": {\n "type": "mrkdwn",\n\ \ "text": "*Ler Ros*\n:star::star::star::star: 2082 reviews\n I would really recommend the Yum Koh Moo Yang - Spicy lime dressing and roasted quick marinated pork shoulder, basil leaves, chili & rice powder."\n },\n "accessory": {\n "type": "image",\n \ \ "image_url": "https://s3-media2.fl.yelpcdn.com/bphoto/DawwNigKJ2ckPeDeDM7jAg/o.jpg",\n "alt_text": "alt text for image"\n\ \ }\n },\n {\n "type": "divider"\n },\n {\n "type": "actions",\n "elements": [\n {\n "type": "button",\n "text": {\n "type": "plain_text",\n\ \ "text": "Farmhouse",\n "emoji": true\n },\n "value": "click_me_123"\n\ \ },\n {\n "type": "button",\n "text": {\n "type": "plain_text",\n\ \ "text": "Kin Khao",\n "emoji": true\n },\n "value": "click_me_123",\n\ \ "url": "https://google.com"\n },\n {\n "type": "button",\n \ \ "text": {\n "type": "plain_text",\n "text": "Ler Ros",\n "emoji": true\n },\n "value": "click_me_123",\n "url": "https://google.com"\n }\n\ \ ]\n }\n ]\n}\n\nThe response should have the next format:\n{\n "twitter": [here goes the twitter post, that should have less than 280 characters],\n "linkedin": [here goes the linkedin post, that should have between 1500 and 2000 characters], \n "blockkit": [here goes the block kit post], \n}\n\n"""\n\nNow generate the posts.\n\n\n" promptTemplateDevName: Generate_Social_Media_Posts requestId: chatcmpl-97KqPl1TEiOgMdnKKPQ9aVs7rPJGr deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/einstein/ai-evaluations/runs: post: tags: - Agent - Runs - Tests summary: Salesforce Run Agent Test description: >- Generates a response based on the specified prompt template and input parameters ([documentation](https://developer.salesforce.com/docs/atlas.en-us.chatterapi.meta/chatterapi/connect_resources_prompt_template.htm)). operationId: Runagenttest parameters: [] requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/RunagenttestRequest' - examples: - aiEvaluationDefinitionName: contentMediaType: application/json example: aiEvaluationDefinitionName: required: true responses: '201': description: Created headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 10 Sep 2025 13:46:14 GMT Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked Connection: content: text/plain: schema: type: string contentMediaType: text/plain example: keep-alive Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=183/5000000 Set-Cookie: content: text/plain: schema: type: string contentMediaType: text/plain example: >- CookieConsentPolicy=0:1; path=/; expires=Thu, 10-Sep-2026 13:46:14 GMT; Max-Age=31536000; secure X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Server: content: text/plain: schema: type: string contentMediaType: text/plain example: sfdcedge X-SFDC-Request-Id: content: text/plain: schema: type: string contentMediaType: text/plain example: 543c8913aa732b136328d39c8546b5ac X-Request-Id: content: text/plain: schema: type: string contentMediaType: text/plain example: 543c8913aa732b136328d39c8546b5ac content: application/json: schema: allOf: - $ref: '#/components/schemas/Runagenttest' - examples: - runId: 4KBAU0000002oK54AI status: NEW contentMediaType: application/json example: runId: 4KBAU0000002oK54AI status: NEW deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/einstein/ai-evaluations/runs/{runId}: get: tags: - Get - Status - Tests summary: Salesforce Get Test Status description: >- Generates a response based on the specified prompt template and input parameters ([documentation](https://developer.salesforce.com/docs/atlas.en-us.chatterapi.meta/chatterapi/connect_resources_prompt_template.htm)). operationId: Getteststatus parameters: - name: runId in: path description: Evaluation ID required: true schema: type: string example: '500123' responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 10 Sep 2025 13:46:26 GMT Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked Connection: content: text/plain: schema: type: string contentMediaType: text/plain example: keep-alive Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Set-Cookie: content: text/plain: schema: type: string contentMediaType: text/plain example: >- CookieConsentPolicy=0:1; path=/; expires=Thu, 10-Sep-2026 13:46:26 GMT; Max-Age=31536000; secure Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=183/5000000 Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Server: content: text/plain: schema: type: string contentMediaType: text/plain example: sfdcedge X-SFDC-Request-Id: content: text/plain: schema: type: string contentMediaType: text/plain example: 9c6b1b17f16e5e4b538e836eb8def249 X-Request-Id: content: text/plain: schema: type: string contentMediaType: text/plain example: 9c6b1b17f16e5e4b538e836eb8def249 X-SFDC-Edge-Cache: content: text/plain: schema: type: string contentMediaType: text/plain example: MISS content: application/json: schema: allOf: - $ref: '#/components/schemas/Getteststatus' - examples: - startTime: '2025-09-10T13:46:14.000Z' status: IN_PROGRESS contentMediaType: application/json example: startTime: '2025-09-10T13:46:14.000Z' status: IN_PROGRESS deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/einstein/ai-evaluations/runs/{runId}/results: get: tags: - Get - Results - Tests summary: Salesforce Get Test Results description: >- Generates a response based on the specified prompt template and input parameters ([documentation](https://developer.salesforce.com/docs/atlas.en-us.chatterapi.meta/chatterapi/connect_resources_prompt_template.htm)). operationId: Gettestresults parameters: - name: runId in: path description: Evaluation ID required: true schema: type: string example: '500123' responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 10 Sep 2025 13:48:41 GMT Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked Connection: content: text/plain: schema: type: string contentMediaType: text/plain example: keep-alive X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff Set-Cookie: content: text/plain: schema: type: string contentMediaType: text/plain example: >- CookieConsentPolicy=0:1; path=/; expires=Thu, 10-Sep-2026 13:48:38 GMT; Max-Age=31536000; secure Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=185/5000000 X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Server: content: text/plain: schema: type: string contentMediaType: text/plain example: sfdcedge X-SFDC-Request-Id: content: text/plain: schema: type: string contentMediaType: text/plain example: 238f419aa5f27f4e5a4cb714c7dfde45 X-Request-Id: content: text/plain: schema: type: string contentMediaType: text/plain example: 238f419aa5f27f4e5a4cb714c7dfde45 X-SFDC-Edge-Cache: content: text/plain: schema: type: string contentMediaType: text/plain example: MISS content: application/json: schema: allOf: - $ref: '#/components/schemas/Gettestresults' - examples: - endTime: '2025-09-10T13:48:31.000Z' startTime: '2025-09-10T13:46:14.000Z' status: COMPLETED subjectName: Employee_agent_tests testCases: - endTime: '2025-09-10T13:46:30.000Z' generatedData: actionsSequence: '[]' invokedActions: '[[]]' outcome: >- To check the weather forecast at the resort, please provide the date you'd like to check. sessionId: 019933e0-8597-70de-912b-359082a322b2 topic: Customer_Service_Assistant_16jAU0000003zGf inputs: contextVariables: {} conversationHistory: [] utterance: What's the weather forecast at the resort? startTime: '2025-09-10T13:46:14.000Z' status: COMPLETED testNumber: 1 testResults: - actualValue: '[]' endTime: '2025-09-10T13:46:31.000Z' errorCode: 0 expectedValue: '[]' metricLabel: actions_assertion name: actions_assertion result: PASS score: 1 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - actualValue: >- To check the weather forecast at the resort, please provide the date you'd like to check. endTime: '2025-09-10T13:46:31.000Z' errorCode: 0 expectedValue: >- Please provide a future date to check the weather forecast. metricExplainability: >- The BOT RESPONSE correctly prompts the user for the necessary information (a future date) to provide the weather forecast, aligning well with the EXPECTED RESPONSE. It is clear and does not include irrelevant information. metricLabel: output_validation name: output_validation result: PASS score: 5 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - actualValue: Customer_Service_Assistant_16jAU0000003zGf endTime: '2025-09-10T13:46:31.000Z' errorCode: 0 expectedValue: Customer_Service_Assistant metricLabel: topic_assertion name: topic_assertion result: PASS score: 1 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:31.000Z' errorCode: 0 metricExplainability: >- The answer is incomplete as it does not provide the weather forecast at the resort, instead it asks for the date to check the forecast. metricLabel: completeness name: completeness result: FAILURE score: 1 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:31.000Z' errorCode: 0 metricExplainability: >- The answer is easy to understand, and it does not contain any significant grammar errors. The answer is also relevant to the question asked. metricLabel: coherence name: coherence result: PASS score: 4 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:31.000Z' errorCode: 0 metricLabel: conciseness name: conciseness result: PASS score: 5 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:31.000Z' errorCode: 0 metricLabel: output_latency_milliseconds name: output_latency_milliseconds score: 2352 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:40.000Z' generatedData: actionsSequence: '['Check_Weather_179AU00000038U5']' citations: '[ ]' invokedActions: >- [[{"function":{"name":"Check_Weather_179AU00000038U5","input":{"dateToCheck":"2025-01-01"},"output":{}},"executionLatency":539}]] outcome: >- Hmm, it looks like I wasn’t able to retrieve the weather forecast for January 1st, 2025. The system I’d normally use to check this information didn’t respond as expected. You might want to try checking a weather app or website closer to the date for the most accurate forecast. Let me know if there’s anything else I can help with! (Session ID: 019933e0-858f-7170-9bd7-5564c5e4c85a) sessionId: 019933e0-858f-7170-9bd7-5564c5e4c85a topic: Customer_Service_Assistant_16jAU0000003zGf inputs: contextVariables: {} conversationHistory: [] utterance: >- What's the weather forecast for Jan 1st, 2025 at the resort? startTime: '2025-09-10T13:46:14.000Z' status: COMPLETED testNumber: 2 testResults: - actualValue: '['Check_Weather_179AU00000038U5']' endTime: '2025-09-10T13:46:42.000Z' errorCode: 0 expectedValue: '['Check_Weather']' metricLabel: actions_assertion name: actions_assertion result: PASS score: 1 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - actualValue: >- Hmm, it looks like I wasn’t able to retrieve the weather forecast for January 1st, 2025. The system I’d normally use to check this information didn’t respond as expected. You might want to try checking a weather app or website closer to the date for the most accurate forecast. Let me know if there’s anything else I can help with! (Session ID: 019933e0-858f-7170-9bd7-5564c5e4c85a) endTime: '2025-09-10T13:46:42.000Z' errorCode: 0 expectedValue: >- I can only provide weather forecasts for future dates. Please provide a future date. metricExplainability: >- The BOT RESPONSE fails to address the user's QUERY for a specific forecast date and incorrectly states that it cannot retrieve the information. It does not align with the EXPECTED RESPONSE, which simply asks for a future date, indicating a misunderstanding of the user's request. metricLabel: output_validation name: output_validation result: FAILURE score: 1 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - actualValue: Customer_Service_Assistant_16jAU0000003zGf endTime: '2025-09-10T13:46:42.000Z' errorCode: 0 expectedValue: Customer_Service_Assistant metricLabel: topic_assertion name: topic_assertion result: PASS score: 1 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:42.000Z' errorCode: 0 metricExplainability: >- The answer is very incomplete as it does not provide any information about the weather forecast for Jan 1st, 2025 at the resort, which is the main request. It only mentions that the system did not respond as expected and suggests checking a weather app or website. metricLabel: completeness name: completeness result: FAILURE score: 1 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:42.000Z' errorCode: 0 metricExplainability: >- The answer is generally understandable, but it contains a few grammar errors and sections that are unclear. The phrase 'The system I’d normally use to check this information didn’t respond as expected' is a bit confusing, and the suggestion to check a weather app or website closer to the date is not directly related to the original question. metricLabel: coherence name: coherence result: PASS score: 3 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:42.000Z' errorCode: 0 metricLabel: conciseness name: conciseness result: PASS score: 5 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:42.000Z' errorCode: 0 metricLabel: output_latency_milliseconds name: output_latency_milliseconds score: 11154 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:33.000Z' generatedData: actionsSequence: '['Check_Weather_179AU00000038U5']' citations: '[ ]' invokedActions: >- [[{"function":{"name":"Check_Weather_179AU00000038U5","input":{"dateToCheck":"2025-09-11"},"output":{"weather":{"minTemperatureF":60.4,"minTemperatureC":15.8,"maxTemperatureF":78.3,"maxTemperatureC":25.7,"iconName":"rain","description":"On September 11, temperature will be between 15.8°C (60.4°F) and 25.7°C (78.3°F) at Coral Cloud Reso"}}},"executionLatency":510}]] outcome: >- Here's the weather forecast for tomorrow at Coral Cloud Resorts. Let me know if you need anything else! {minTemperatureF=60.4, minTemperatureC=15.8, maxTemperatureF=78.3, maxTemperatureC=25.7, iconName=rain, description=On September 11, temperature will be between 15.8°C (60.4°F) and 25.7°C (78.3°F) at Coral Cloud Resorts.} sessionId: 019933e0-8571-720f-a404-546c9c2af263 topic: Customer_Service_Assistant_16jAU0000003zGf inputs: contextVariables: {} conversationHistory: [] utterance: >- What's the weather forecast for tomorrow at the resort? startTime: '2025-09-10T13:46:14.000Z' status: COMPLETED testNumber: 3 testResults: - actualValue: '['Check_Weather_179AU00000038U5']' endTime: '2025-09-10T13:46:34.000Z' errorCode: 0 expectedValue: '['Check_Weather']' metricLabel: actions_assertion name: actions_assertion result: PASS score: 1 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - actualValue: >- Here's the weather forecast for tomorrow at Coral Cloud Resorts. Let me know if you need anything else! {minTemperatureF=60.4, minTemperatureC=15.8, maxTemperatureF=78.3, maxTemperatureC=25.7, iconName=rain, description=On September 11, temperature will be between 15.8°C (60.4°F) and 25.7°C (78.3°F) at Coral Cloud Resorts.} endTime: '2025-09-10T13:46:34.000Z' errorCode: 0 expectedValue: >- The weather is expected to be sunny with a high of 85°F. metricExplainability: >- The BOT RESPONSE provides detailed temperature information and conditions, but it does not align with the EXPECTED RESPONSE, which specifies a sunny forecast with a high of 85°F. The response includes unnecessary details and does not match the expected weather conditions. metricLabel: output_validation name: output_validation result: FAILURE score: 2 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - actualValue: Customer_Service_Assistant_16jAU0000003zGf endTime: '2025-09-10T13:46:34.000Z' errorCode: 0 expectedValue: Customer_Service_Assistant metricLabel: topic_assertion name: topic_assertion result: PASS score: 1 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:34.000Z' errorCode: 0 metricExplainability: >- The answer provides the weather forecast for tomorrow at the resort, including the minimum and maximum temperatures in both Celsius and Fahrenheit, as well as the icon name and description. The answer does not miss any important pieces of information, ensuring clarity and accuracy. metricLabel: completeness name: completeness result: PASS score: 4 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:34.000Z' errorCode: 0 metricExplainability: >- The answer is generally understandable, but it contains some sections that are unclear, such as the use of 'Coral Cloud Resorts' twice, and the mention of 'On September 11' which is not relevant to the weather forecast for tomorrow. The answer also contains a few grammar errors, such as the use of 'Let me know if you need anything else!' which is not relevant to the weather forecast. metricLabel: coherence name: coherence result: PASS score: 3 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:34.000Z' errorCode: 0 metricLabel: conciseness name: conciseness result: PASS score: 4 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:34.000Z' errorCode: 0 metricLabel: output_latency_milliseconds name: output_latency_milliseconds score: 2788 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:32.000Z' generatedData: actionsSequence: >- ['Get_Customer_From_Email_or_Membership_Number_179AU00000038U5'] citations: '[ ]' invokedActions: >- [[{"function":{"name":"Get_Customer_From_Email_or_Membership_Number_179AU00000038U5","input":{"customerEmail":"nonexistent@example.com"},"output":{"contactId":null,"contactRecord":null}},"executionLatency":237}]] outcome: >- I couldn't find any contact details associated with the email address "nonexistent@example.com". Let me know if you'd like me to try searching with a different email or membership number! sessionId: 019933e0-85a6-74d0-bfa4-841e8c8a03d3 topic: Customer_Service_Assistant_16jAU0000003zGf inputs: contextVariables: {} conversationHistory: [] utterance: >- Can you provide the details for the contact with email nonexistent@example.com? startTime: '2025-09-10T13:46:14.000Z' status: COMPLETED testNumber: 4 testResults: - actualValue: >- ['Get_Customer_From_Email_or_Membership_Number_179AU00000038U5'] endTime: '2025-09-10T13:46:33.000Z' errorCode: 0 expectedValue: >- ['Get_Customer_From_Email_or_Membership_Number'] metricLabel: actions_assertion name: actions_assertion result: PASS score: 1 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - actualValue: >- I couldn't find any contact details associated with the email address "nonexistent@example.com". Let me know if you'd like me to try searching with a different email or membership number! endTime: '2025-09-10T13:46:33.000Z' errorCode: 0 expectedValue: >- I couldn't find any contact with the email nonexistent@example.com. Please check the email and try again. metricExplainability: >- The BOT RESPONSE is aligned with the EXPECTED RESPONSE in that it indicates the contact details associated with the provided email address were not found. However, it adds an unnecessary prompt for the user to try a different email or membership number, which is not part of the EXPECTED RESPONSE. Therefore, it slightly deviates from the expected outcome. metricLabel: output_validation name: output_validation result: PASS score: 4 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - actualValue: Customer_Service_Assistant_16jAU0000003zGf endTime: '2025-09-10T13:46:33.000Z' errorCode: 0 expectedValue: Customer_Service_Assistant metricLabel: topic_assertion name: topic_assertion result: PASS score: 1 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:33.000Z' errorCode: 0 metricExplainability: >- The answer is very incomplete as it does not provide any contact details for the email address, and instead asks for further input. metricLabel: completeness name: completeness result: FAILURE score: 1 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:33.000Z' errorCode: 0 metricExplainability: >- The answer is easy to understand, and the grammar is correct. The answer clearly states that no contact details were found and offers to try searching with a different email or membership number, which is a coherent response. metricLabel: coherence name: coherence result: PASS score: 4 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:33.000Z' errorCode: 0 metricLabel: conciseness name: conciseness result: PASS score: 5 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:33.000Z' errorCode: 0 metricLabel: output_latency_milliseconds name: output_latency_milliseconds score: 2512 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:33.000Z' generatedData: actionsSequence: >- ['Get_Customer_From_Email_or_Membership_Number_179AU00000038U5'] citations: '[ ]' invokedActions: >- [[{"function":{"name":"Get_Customer_From_Email_or_Membership_Number_179AU00000038U5","input":{"customerEmail":"nediheinsius@example.com"},"output":{"contactId":"003AU00001J7b4GYAR","contactRecord":{"sObjectInfo":{"apiName":"Contact","label":"Contact"},"id":"003AU00001J7b4GYAR","data":{"AccountId":null,"AssistantName":null,"AssistantPhone":null,"Average_Room_Cost__c":null,"Birthdate":"2042-05-03","CleanStatus":"Pending","ContactSource":null,"CreatedById":"005AU00000OrYkDYAV","CreatedDate":"2025-09-09T13:59:41.000+0000","Department":null,"Description":null,"DoNotCall":false,"Email":"nediheinsius@example.com","EmailBouncedDate":null,"EmailBouncedReason":null,"External_Id__c":"10003177","Fax":null,"FirstName":"Nedi","GenderIdentity":null,"Guest_Type__c":"Business and Pleasure Travelers","HasOptedOutOfEmail":false,"HasOptedOutOfFax":false,"HomePhone":null,"Id":"003AU00001J7b4GYAR","IndividualId":null,"Interest1__c":"Fitness & Exercise","Interest2__c":"Nightlife & Entertainment","Interest3__c":"Nature & Eco Tours","IsDeleted":false,"IsEmailBounced":false,"Jigsaw":null,"JigsawContactId":null,"Languages__c":null,"LastActivityDate":null,"LastCURequestDate":null,"LastCUUpdateDate":null,"LastModifiedById":"005AU00000OrYkDYAV","LastModifiedDate":"2025-09-09T13:59:53.000+0000","LastName":"Heinsius","LastReferencedDate":"2025-09-09T13:59:41.000+0000","LastViewedDate":"2025-09-09T13:59:41.000+0000","LeadSource":"Partnerships","Level__c":null,"Lifetime_Experience_Bookings__c":12.0,"Lifetime_Reservations__c":null,"Lifetime_Value__c":null,"MailingAddress":{"city":"Peoria","country":"United States","geocodeAccuracy":null,"latitude":null,"longitude":null,"postalCode":"85383","state":"Arizona","street":"75563 Farwell Drive"},"MailingCity":"Peoria","MailingCountry":"United States","MailingGeocodeAccuracy":null,"MailingLatitude":null,"MailingLongitude":null,"MailingPostalCode":"85383","MailingState":"Arizona","MailingStreet":"75563 Farwell Drive","MasterRecordId":null,"Maximum_Room_Cost__c":null,"Membership_Number__c":"10003177","Minimum_Room_Cost__c":null,"MobilePhone":"196-794-6794","Name":"Nedi Heinsius","Next_Check_in_Date__c":null,"OtherAddress":null,"OtherCity":null,"OtherCountry":null,"OtherGeocodeAccuracy":null,"OtherLatitude":null,"OtherLongitude":null,"OtherPhone":null,"OtherPostalCode":null,"OtherState":null,"OtherStreet":null,"OwnerId":"005AU00000OrYkDYAV","Phone":null,"PhotoUrl":"/services/images/photo/003AU00001J7b4GYAR","Photo_URL__c":null,"Preferred_Name__c":"Nedi","Pronouns":null,"ReportsToId":null,"Salutation":null,"SystemModstamp":"2025-09-09T13:59:53.000+0000","Title":null}}}},"executionLatency":256}]] outcome: >- Here are the contact details for the provided email. Let me know if you need further assistance! {sObjectInfo={apiName=Contact, label=Contact}, id=003AU00001J7b4GYAR, data={AccountId=null, AssistantName=null, AssistantPhone=null, Average_Room_Cost__c=null, Birthdate=2042-05-03, CleanStatus=Pending, ContactSource=null, CreatedById=005AU00000OrYkDYAV, CreatedDate=2025-09-09T13:59:41.000+0000, Department=null, Description=null, DoNotCall=false, Email=nediheinsius@example.com, EmailBouncedDate=null, EmailBouncedReason=null, External_Id__c=10003177, Fax=null, FirstName=Nedi, GenderIdentity=null, Guest_Type__c=Business and Pleasure Travelers, HasOptedOutOfEmail=false, HasOptedOutOfFax=false, HomePhone=null, Id=003AU00001J7b4GYAR, IndividualId=null, Interest1__c=Fitness & Exercise, Interest2__c=Nightlife & Entertainment, Interest3__c=Nature & Eco Tours, IsDeleted=false, IsEmailBounced=false, Jigsaw=null, JigsawContactId=null, Languages__c=null, LastActivityDate=null, LastCURequestDate=null, LastCUUpdateDate=null, LastModifiedById=005AU00000OrYkDYAV, LastModifiedDate=2025-09-09T13:59:53.000+0000, LastName=Heinsius, LastReferencedDate=2025-09-09T13:59:41.000+0000, LastViewedDate=2025-09-09T13:59:41.000+0000, LeadSource=Partnerships, Level__c=null, Lifetime_Experience_Bookings__c=12.0, Lifetime_Reservations__c=null, Lifetime_Value__c=null, MailingAddress={city=Peoria, country=United States, geocodeAccuracy=null, latitude=null, longitude=null, postalCode=85383, state=Arizona, street=75563 Farwell Drive}, MailingCity=Peoria, MailingCountry=United States, MailingGeocodeAccuracy=null, MailingLatitude=null, MailingLongitude=null, MailingPostalCode=85383, MailingState=Arizona, MailingStreet=75563 Farwell Drive, MasterRecordId=null, Maximum_Room_Cost__c=null, Membership_Number__c=10003177, Minimum_Room_Cost__c=null, MobilePhone=196-794-6794, Name=Nedi Heinsius, Next_Check_in_Date__c=null, OtherAddress=null, OtherCity=null, OtherCountry=null, OtherGeocodeAccuracy=null, OtherLatitude=null, OtherLongitude=null, OtherPhone=null, OtherPostalCode=null, OtherState=null, OtherStreet=null, OwnerId=005AU00000OrYkDYAV, Phone=null, PhotoUrl=/services/images/photo/003AU00001J7b4GYAR, Photo_URL__c=null, Preferred_Name__c=Nedi, Pronouns=null, ReportsToId=null, Salutation=null, SystemModstamp=2025-09-09T13:59:53.000+0000, Title=null}} sessionId: 019933e0-8586-7a38-8b9b-36d0271d9c82 topic: Customer_Service_Assistant_16jAU0000003zGf inputs: contextVariables: {} conversationHistory: [] utterance: >- Can you find the contact details for the email nediheinsius@example.com? startTime: '2025-09-10T13:46:14.000Z' status: COMPLETED testNumber: 5 testResults: - actualValue: >- ['Get_Customer_From_Email_or_Membership_Number_179AU00000038U5'] endTime: '2025-09-10T13:46:34.000Z' errorCode: 0 expectedValue: >- ['Get_Customer_From_Email_or_Membership_Number'] metricLabel: actions_assertion name: actions_assertion result: PASS score: 1 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - actualValue: >- Here are the contact details for the provided email. Let me know if you need further assistance! {sObjectInfo={apiName=Contact, label=Contact}, id=003AU00001J7b4GYAR, data={AccountId=null, AssistantName=null, AssistantPhone=null, Average_Room_Cost__c=null, Birthdate=2042-05-03, CleanStatus=Pending, ContactSource=null, CreatedById=005AU00000OrYkDYAV, CreatedDate=2025-09-09T13:59:41.000+0000, Department=null, Description=null, DoNotCall=false, Email=nediheinsius@example.com, EmailBouncedDate=null, EmailBouncedReason=null, External_Id__c=10003177, Fax=null, FirstName=Nedi, GenderIdentity=null, Guest_Type__c=Business and Pleasure Travelers, HasOptedOutOfEmail=false, HasOptedOutOfFax=false, HomePhone=null, Id=003AU00001J7b4GYAR, IndividualId=null, Interest1__c=Fitness & Exercise, Interest2__c=Nightlife & Entertainment, Interest3__c=Nature & Eco Tours, IsDeleted=false, IsEmailBounced=false, Jigsaw=null, JigsawContactId=null, Languages__c=null, LastActivityDate=null, LastCURequestDate=null, LastCUUpdateDate=null, LastModifiedById=005AU00000OrYkDYAV, LastModifiedDate=2025-09-09T13:59:53.000+0000, LastName=Heinsius, LastReferencedDate=2025-09-09T13:59:41.000+0000, LastViewedDate=2025-09-09T13:59:41.000+0000, LeadSource=Partnerships, Level__c=null, Lifetime_Experience_Bookings__c=12.0, Lifetime_Reservations__c=null, Lifetime_Value__c=null, MailingAddress={city=Peoria, country=United States, geocodeAccuracy=null, latitude=null, longitude=null, postalCode=85383, state=Arizona, street=75563 Farwell Drive}, MailingCity=Peoria, MailingCountry=United States, MailingGeocodeAccuracy=null, MailingLatitude=null, MailingLongitude=null, MailingPostalCode=85383, MailingState=Arizona, MailingStreet=75563 Farwell Drive, MasterRecordId=null, Maximum_Room_Cost__c=null, Membership_Number__c=10003177, Minimum_Room_Cost__c=null, MobilePhone=196-794-6794, Name=Nedi Heinsius, Next_Check_in_Date__c=null, OtherAddress=null, OtherCity=null, OtherCountry=null, OtherGeocodeAccuracy=null, OtherLatitude=null, OtherLongitude=null, OtherPhone=null, OtherPostalCode=null, OtherState=null, OtherStreet=null, OwnerId=005AU00000OrYkDYAV, Phone=null, PhotoUrl=/services/images/photo/003AU00001J7b4GYAR, Photo_URL__c=null, Preferred_Name__c=Nedi, Pronouns=null, ReportsToId=null, Salutation=null, SystemModstamp=2025-09-09T13:59:53.000+0000, Title=null}} endTime: '2025-09-10T13:46:34.000Z' errorCode: 0 expectedValue: >- Here are the contact details for Nedi Heinsius. metricExplainability: >- The BOT RESPONSE provides detailed information about the contact associated with the provided email, but it includes excessive technical data that is not relevant to the user. It does not clearly state the name of the contact as Nedi Heinsius, which is the expected output format. Thus, it partially achieves the goal but lacks clarity and precision. metricLabel: output_validation name: output_validation result: PASS score: 3 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - actualValue: Customer_Service_Assistant_16jAU0000003zGf endTime: '2025-09-10T13:46:34.000Z' errorCode: 0 expectedValue: Customer_Service_Assistant metricLabel: topic_assertion name: topic_assertion result: PASS score: 1 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:34.000Z' errorCode: 0 metricExplainability: >- The answer does not provide any contact details for the email address, only a list of fields and their values from the database. It does not provide any information that can be used to contact the person associated with the email address. metricLabel: completeness name: completeness result: FAILURE score: 1 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:34.000Z' errorCode: 0 metricExplainability: >- The answer is not coherent at all. It is difficult to understand what the answer is trying to say, and it is riddled with grammar errors. The answer seems to be a JSON object with contact details, but it is not formatted in a way that is easy to read or understand. metricLabel: coherence name: coherence result: FAILURE score: 1 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:34.000Z' errorCode: 0 metricLabel: conciseness name: conciseness result: FAILURE score: 2 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:34.000Z' errorCode: 0 metricLabel: output_latency_milliseconds name: output_latency_milliseconds score: 2728 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:26.000Z' generatedData: actionsSequence: >- ['Get_Customer_From_Email_or_Membership_Number_179AU00000038U5'] citations: '[ ]' invokedActions: >- [[{"function":{"name":"Get_Customer_From_Email_or_Membership_Number_179AU00000038U5","input":{"customerMembershipNumber":"123456"},"output":{"contactId":null,"contactRecord":null}},"executionLatency":231}]] outcome: >- I couldn't find any contact details associated with the membership number 123456. Could you double-check the number or provide additional information? sessionId: 019933e1-6ff4-79cf-a606-a0affb7e8762 topic: Customer_Service_Assistant_16jAU0000003zGf inputs: contextVariables: {} conversationHistory: [] utterance: >- Can you find the contact details for the membership number 123456? startTime: '2025-09-10T13:46:14.000Z' status: COMPLETED testNumber: 6 testResults: - actualValue: >- ['Get_Customer_From_Email_or_Membership_Number_179AU00000038U5'] endTime: '2025-09-10T13:47:27.000Z' errorCode: 0 expectedValue: >- ['Get_Customer_From_Email_or_Membership_Number'] metricLabel: actions_assertion name: actions_assertion result: PASS score: 1 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - actualValue: >- I couldn't find any contact details associated with the membership number 123456. Could you double-check the number or provide additional information? endTime: '2025-09-10T13:47:27.000Z' errorCode: 0 expectedValue: >- Here are the contact details for Frayda Dowsing. metricExplainability: >- The BOT RESPONSE does not achieve the goal of providing the contact details as outlined in the EXPECTED RESPONSE. Instead, it incorrectly states that no contact details were found and asks for further information, which is unnecessary since the membership number should already be sufficient to retrieve the details from the CRM database. Therefore, it fails to align with the expected outcome. metricLabel: output_validation name: output_validation result: FAILURE score: 1 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - actualValue: Customer_Service_Assistant_16jAU0000003zGf endTime: '2025-09-10T13:47:27.000Z' errorCode: 0 expectedValue: Customer_Service_Assistant metricLabel: topic_assertion name: topic_assertion result: PASS score: 1 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:27.000Z' errorCode: 0 metricExplainability: >- The answer does not provide any contact details, which is the main request. It only provides a suggestion to double-check the number or provide additional information, which does not fully address the request. metricLabel: completeness name: completeness result: FAILURE score: 1 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:27.000Z' errorCode: 0 metricExplainability: >- The answer is easy to understand, and it does not contain any significant grammar errors. The answer is also relevant to the query and provides a clear response. metricLabel: coherence name: coherence result: PASS score: 4 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:27.000Z' errorCode: 0 metricLabel: conciseness name: conciseness result: PASS score: 5 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:27.000Z' errorCode: 0 metricLabel: output_latency_milliseconds name: output_latency_milliseconds score: 2136 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:36.000Z' generatedData: actionsSequence: >- ['Get_Customer_From_Email_or_Membership_Number_179AU00000038U5', 'Generate_Personalized_Schedule_EA_179AU00000038U5'] citations: '[ ]' invokedActions: >- [[{"function":{"name":"Get_Customer_From_Email_or_Membership_Number_179AU00000038U5","input":{"customerEmail":"nediheinsius@example.com"},"output":{"contactId":"003AU00001J7b4GYAR","contactRecord":{"sObjectInfo":{"apiName":"Contact","label":"Contact"},"id":"003AU00001J7b4GYAR","data":{"AccountId":null,"AssistantName":null,"AssistantPhone":null,"Average_Room_Cost__c":null,"Birthdate":"2042-05-03","CleanStatus":"Pending","ContactSource":null,"CreatedById":"005AU00000OrYkDYAV","CreatedDate":"2025-09-09T13:59:41.000+0000","Department":null,"Description":null,"DoNotCall":false,"Email":"nediheinsius@example.com","EmailBouncedDate":null,"EmailBouncedReason":null,"External_Id__c":"10003177","Fax":null,"FirstName":"Nedi","GenderIdentity":null,"Guest_Type__c":"Business and Pleasure Travelers","HasOptedOutOfEmail":false,"HasOptedOutOfFax":false,"HomePhone":null,"Id":"003AU00001J7b4GYAR","IndividualId":null,"Interest1__c":"Fitness & Exercise","Interest2__c":"Nightlife & Entertainment","Interest3__c":"Nature & Eco Tours","IsDeleted":false,"IsEmailBounced":false,"Jigsaw":null,"JigsawContactId":null,"Languages__c":null,"LastActivityDate":null,"LastCURequestDate":null,"LastCUUpdateDate":null,"LastModifiedById":"005AU00000OrYkDYAV","LastModifiedDate":"2025-09-09T13:59:53.000+0000","LastName":"Heinsius","LastReferencedDate":"2025-09-09T13:59:41.000+0000","LastViewedDate":"2025-09-09T13:59:41.000+0000","LeadSource":"Partnerships","Level__c":null,"Lifetime_Experience_Bookings__c":12.0,"Lifetime_Reservations__c":null,"Lifetime_Value__c":null,"MailingAddress":{"city":"Peoria","country":"United States","geocodeAccuracy":null,"latitude":null,"longitude":null,"postalCode":"85383","state":"Arizona","street":"75563 Farwell Drive"},"MailingCity":"Peoria","MailingCountry":"United States","MailingGeocodeAccuracy":null,"MailingLatitude":null,"MailingLongitude":null,"MailingPostalCode":"85383","MailingState":"Arizona","MailingStreet":"75563 Farwell Drive","MasterRecordId":null,"Maximum_Room_Cost__c":null,"Membership_Number__c":"10003177","Minimum_Room_Cost__c":null,"MobilePhone":"196-794-6794","Name":"Nedi Heinsius","Next_Check_in_Date__c":null,"OtherAddress":null,"OtherCity":null,"OtherCountry":null,"OtherGeocodeAccuracy":null,"OtherLatitude":null,"OtherLongitude":null,"OtherPhone":null,"OtherPostalCode":null,"OtherState":null,"OtherStreet":null,"OwnerId":"005AU00000OrYkDYAV","Phone":null,"PhotoUrl":"/services/images/photo/003AU00001J7b4GYAR","Photo_URL__c":null,"Preferred_Name__c":"Nedi","Pronouns":null,"ReportsToId":null,"Salutation":null,"SystemModstamp":"2025-09-09T13:59:53.000+0000","Title":null}}}},"executionLatency":472},{"function":{"name":"Generate_Personalized_Schedule_EA_179AU00000038U5","input":{"Input:contactId":"003AU00001J7b4GYAR"},"output":{"promptResponse":"Hello, I am Philippe from the guest success team at Coral Cloud. I appreciate your interest in our r"}},"executionLatency":8462}]] outcome: >- Here's the personalized schedule for Nedi Heinsius. Let me know if you'd like to book any of these activities! Hello, I am Philippe from the guest success team at Coral Cloud. I appreciate your interest in our resort activities. Here is a list of activities happening today that align with your interests: - Sunrise Mountain Yoga: 09:00 AM, Mountain Overlook, 6 hours - Aqua Fitness in Paradise: 09:00 AM, Resort Pool, 3 hours - Ocean Kayak Fitness Expedition: 09:00 AM, Coastal Waters, 6 hours - Rainforest Discovery Hike: 09:00 AM, Rainforest Reserve, 2 hours - Coastal Kayak Excursion: 09:00 AM, Coastal Waters, 1 hour - Live Music Beach Party: 09:00 AM, Resort Beach, 2 hours - Sunset Cocktail Cruise: 09:00 AM, Ocean Cruise, 1 hour - Outdoor Movie Night: 09:00 AM, Outdoor Cinema Area, 6 hours Given the overlapping times and the requirement for free time between activities, I suggest the following schedule: 1. Coastal Kayak Excursion: 09:00 AM - 10:00 AM 2. Free Time: 10:00 AM - 11:00 AM 3. Rainforest Discovery Hike: 11:00 AM - 01:00 PM 4. Free Time: 01:00 PM - 02:00 PM 5. Live Music Beach Party: 02:00 PM - 04:00 PM 6. Free Time: 04:00 PM - 05:00 PM 7. Sunset Cocktail Cruise: 05:00 PM - 06:00 PM Please reach out if you would like to book any of these activities. Thank you for your time. sessionId: 019933e1-701f-7837-ad0e-68f7997b92ba topic: Customer_Service_Assistant_16jAU0000003zGf inputs: contextVariables: {} conversationHistory: [] utterance: >- Can you create a personalized schedule for the guest with email nediheinsius@example.com? startTime: '2025-09-10T13:46:14.000Z' status: COMPLETED testNumber: 7 testResults: - actualValue: >- ['Get_Customer_From_Email_or_Membership_Number_179AU00000038U5', 'Generate_Personalized_Schedule_EA_179AU00000038U5'] endTime: '2025-09-10T13:47:37.000Z' errorCode: 0 expectedValue: >- ['Get_Customer_From_Email_or_Membership_Number', 'Generate_Personalized_Schedule_EA'] metricLabel: actions_assertion name: actions_assertion result: PASS score: 1 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - actualValue: >- Here's the personalized schedule for Nedi Heinsius. Let me know if you'd like to book any of these activities! Hello, I am Philippe from the guest success team at Coral Cloud. I appreciate your interest in our resort activities. Here is a list of activities happening today that align with your interests: - Sunrise Mountain Yoga: 09:00 AM, Mountain Overlook, 6 hours - Aqua Fitness in Paradise: 09:00 AM, Resort Pool, 3 hours - Ocean Kayak Fitness Expedition: 09:00 AM, Coastal Waters, 6 hours - Rainforest Discovery Hike: 09:00 AM, Rainforest Reserve, 2 hours - Coastal Kayak Excursion: 09:00 AM, Coastal Waters, 1 hour - Live Music Beach Party: 09:00 AM, Resort Beach, 2 hours - Sunset Cocktail Cruise: 09:00 AM, Ocean Cruise, 1 hour - Outdoor Movie Night: 09:00 AM, Outdoor Cinema Area, 6 hours Given the overlapping times and the requirement for free time between activities, I suggest the following schedule: 1. Coastal Kayak Excursion: 09:00 AM - 10:00 AM 2. Free Time: 10:00 AM - 11:00 AM 3. Rainforest Discovery Hike: 11:00 AM - 01:00 PM 4. Free Time: 01:00 PM - 02:00 PM 5. Live Music Beach Party: 02:00 PM - 04:00 PM 6. Free Time: 04:00 PM - 05:00 PM 7. Sunset Cocktail Cruise: 05:00 PM - 06:00 PM Please reach out if you would like to book any of these activities. Thank you for your time. endTime: '2025-09-10T13:47:37.000Z' errorCode: 0 expectedValue: >- Here is the personalized schedule for Nedi Heinsius. metricExplainability: >- The BOT RESPONSE provides a personalized schedule as requested in the QUERY, but it contains excessive information beyond the expected response, making it less precise. The initial output should have simply confirmed the creation of the schedule without the detailed list of activities and free time suggestions. metricLabel: output_validation name: output_validation result: PASS score: 4 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - actualValue: Customer_Service_Assistant_16jAU0000003zGf endTime: '2025-09-10T13:47:37.000Z' errorCode: 0 expectedValue: Customer_Service_Assistant metricLabel: topic_assertion name: topic_assertion result: PASS score: 1 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:37.000Z' errorCode: 0 metricExplainability: >- The answer provides a detailed schedule with specific activities and times, but it does not explicitly mention the guest's email address nediheinsius@example.com or provide a personalized schedule for the guest. The answer also does not mention the resort name or the guest's name, which could be considered important information. metricLabel: completeness name: completeness result: PASS score: 4 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:37.000Z' errorCode: 0 metricExplainability: >- The answer is generally understandable, but it contains some sections that are unclear, such as the overlapping times and the requirement for free time between activities. The grammar errors are minor and do not significantly impact readability. metricLabel: coherence name: coherence result: PASS score: 3 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:37.000Z' errorCode: 0 metricLabel: conciseness name: conciseness result: PASS score: 3 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:37.000Z' errorCode: 0 metricLabel: output_latency_milliseconds name: output_latency_milliseconds score: 11834 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:41.000Z' generatedData: actionsSequence: >- ['Get_Customer_From_Email_or_Membership_Number_179AU00000038U5', 'Generate_Personalized_Schedule_EA_179AU00000038U5'] citations: '[ ]' invokedActions: >- [[{"function":{"name":"Get_Customer_From_Email_or_Membership_Number_179AU00000038U5","input":{"customerMembershipNumber":"10008155"},"output":{"contactId":"003AU00001J7zDuYAJ","contactRecord":{"sObjectInfo":{"apiName":"Contact","label":"Contact"},"id":"003AU00001J7zDuYAJ","data":{"AccountId":null,"AssistantName":null,"AssistantPhone":null,"Average_Room_Cost__c":null,"Birthdate":"1978-11-10","CleanStatus":"Pending","ContactSource":null,"CreatedById":"005AU00000OrYkDYAV","CreatedDate":"2025-09-09T13:59:41.000+0000","Department":null,"Description":null,"DoNotCall":false,"Email":"sofiarodriguez@example.com","EmailBouncedDate":null,"EmailBouncedReason":null,"External_Id__c":"10008155","Fax":null,"FirstName":"Sofia","GenderIdentity":null,"Guest_Type__c":"Cultural Connoisseurs","HasOptedOutOfEmail":false,"HasOptedOutOfFax":false,"HomePhone":null,"Id":"003AU00001J7zDuYAJ","IndividualId":null,"Interest1__c":"Adventure Activities","Interest2__c":"Beaches & Snorkeling","Interest3__c":"Fitness & Exercise","IsDeleted":false,"IsEmailBounced":false,"Jigsaw":null,"JigsawContactId":null,"Languages__c":null,"LastActivityDate":null,"LastCURequestDate":null,"LastCUUpdateDate":null,"LastModifiedById":"005AU00000OrYkDYAV","LastModifiedDate":"2025-09-09T13:59:53.000+0000","LastName":"Rodriguez","LastReferencedDate":"2025-09-09T15:43:53.000+0000","LastViewedDate":"2025-09-09T15:43:53.000+0000","LeadSource":"Direct Mail","Level__c":null,"Lifetime_Experience_Bookings__c":10.0,"Lifetime_Reservations__c":null,"Lifetime_Value__c":null,"MailingAddress":{"city":"Minneapolis","country":"United States","geocodeAccuracy":null,"latitude":null,"longitude":null,"postalCode":"55428","state":"Minnesota","street":"3 6th Avenue"},"MailingCity":"Minneapolis","MailingCountry":"United States","MailingGeocodeAccuracy":null,"MailingLatitude":null,"MailingLongitude":null,"MailingPostalCode":"55428","MailingState":"Minnesota","MailingStreet":"3 6th Avenue","MasterRecordId":null,"Maximum_Room_Cost__c":null,"Membership_Number__c":"10008155","Minimum_Room_Cost__c":null,"MobilePhone":"612-350-2240","Name":"Sofia Rodriguez","Next_Check_in_Date__c":"2024-12-20","OtherAddress":null,"OtherCity":null,"OtherCountry":null,"OtherGeocodeAccuracy":null,"OtherLatitude":null,"OtherLongitude":null,"OtherPhone":null,"OtherPostalCode":null,"OtherState":null,"OtherStreet":null,"OwnerId":"005AU00000OrYkDYAV","Phone":null,"PhotoUrl":"/services/images/photo/003AU00001J7zDuYAJ","Photo_URL__c":"https://s3-us-west-2.amazonaws.com/dev-or-devrl-s3-bucket/sample-apps/coral-clouds/qswvurmhbo9w261ce","Preferred_Name__c":"Sofi","Pronouns":null,"ReportsToId":null,"Salutation":null,"SystemModstamp":"2025-09-09T13:59:53.000+0000","Title":null}}}},"executionLatency":199},{"function":{"name":"Generate_Personalized_Schedule_EA_179AU00000038U5","input":{"Input:contactId":"003AU00001J7zDuYAJ"},"output":{"promptResponse":"Hello, I am Philippe from the guest success team at Coral Cloud. I am pleased to present the list of"}},"executionLatency":13647}]] outcome: >- Here's the personalized schedule for Sofia Rodriguez. Let me know if you'd like to book any of these activities! Hello, I am Philippe from the guest success team at Coral Cloud. I am pleased to present the list of resort activities happening today that match your interests: - Sunrise Mountain Yoga: 09:00 AM, Mountain Overlook, 6 hours - Aqua Fitness in Paradise: 09:00 AM, Resort Pool, 3 hours - Ocean Kayak Fitness Expedition: 09:00 AM, Coastal Waters, 6 hours - Tropical Snorkel Adventure: 09:00 AM, Coral Reef, 4 hours - Canyon Zip Line Excursion: 09:00 AM, Canyons & Forests, 3.5 hours - Off-Road Jungle Safari: 09:00 AM, Jungle Trails, 4 hours - White Water Rafting Rush: 09:00 AM, Rivers, 1 hour - Underground Cave Exploration: 09:00 AM, Subterranean Caves, 5 hours - Full Moon Beach Party: 09:00 AM, Beach, 2 hours - Surf's Up Lesson: 09:00 AM, Surfing Areas, 1 hour Given the overlapping schedules and the requirement for free time, I suggest the following schedule: 1. Sunrise Mountain Yoga: 09:00 AM - 03:00 PM 2. Free Time: 03:00 PM - 04:00 PM 3. Aqua Fitness in Paradise: 04:00 PM - 07:00 PM Please reach out if you would like to book any of these activities. Thank you for your time. sessionId: 019933e1-6fef-7140-a47b-f96f80fe9be1 topic: Customer_Service_Assistant_16jAU0000003zGf inputs: contextVariables: {} conversationHistory: [] utterance: >- Can you create a personalized schedule for customer with Membership Number 10008155? startTime: '2025-09-10T13:46:14.000Z' status: COMPLETED testNumber: 8 testResults: - actualValue: >- ['Get_Customer_From_Email_or_Membership_Number_179AU00000038U5', 'Generate_Personalized_Schedule_EA_179AU00000038U5'] endTime: '2025-09-10T13:47:42.000Z' errorCode: 0 expectedValue: >- ['Get_Customer_From_Email_or_Membership_Number', 'Generate_Personalized_Schedule_EA'] metricLabel: actions_assertion name: actions_assertion result: PASS score: 1 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - actualValue: >- Here's the personalized schedule for Sofia Rodriguez. Let me know if you'd like to book any of these activities! Hello, I am Philippe from the guest success team at Coral Cloud. I am pleased to present the list of resort activities happening today that match your interests: - Sunrise Mountain Yoga: 09:00 AM, Mountain Overlook, 6 hours - Aqua Fitness in Paradise: 09:00 AM, Resort Pool, 3 hours - Ocean Kayak Fitness Expedition: 09:00 AM, Coastal Waters, 6 hours - Tropical Snorkel Adventure: 09:00 AM, Coral Reef, 4 hours - Canyon Zip Line Excursion: 09:00 AM, Canyons & Forests, 3.5 hours - Off-Road Jungle Safari: 09:00 AM, Jungle Trails, 4 hours - White Water Rafting Rush: 09:00 AM, Rivers, 1 hour - Underground Cave Exploration: 09:00 AM, Subterranean Caves, 5 hours - Full Moon Beach Party: 09:00 AM, Beach, 2 hours - Surf's Up Lesson: 09:00 AM, Surfing Areas, 1 hour Given the overlapping schedules and the requirement for free time, I suggest the following schedule: 1. Sunrise Mountain Yoga: 09:00 AM - 03:00 PM 2. Free Time: 03:00 PM - 04:00 PM 3. Aqua Fitness in Paradise: 04:00 PM - 07:00 PM Please reach out if you would like to book any of these activities. Thank you for your time. endTime: '2025-09-10T13:47:42.000Z' errorCode: 0 expectedValue: >- Here is your personalized schedule for today, Sofia Rodriguez. metricExplainability: >- The BOT RESPONSE provides a personalized schedule but includes unnecessary details and activities that may not be relevant to the user. It also addresses the user as Sofia Rodriguez instead of using their actual name, which could lead to confusion. The response does not fully align with the expected outcome, which is a concise presentation of the schedule without extra information. metricLabel: output_validation name: output_validation result: PASS score: 3 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - actualValue: Customer_Service_Assistant_16jAU0000003zGf endTime: '2025-09-10T13:47:42.000Z' errorCode: 0 expectedValue: Customer_Service_Assistant metricLabel: topic_assertion name: topic_assertion result: PASS score: 1 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:42.000Z' errorCode: 0 metricExplainability: >- The answer provides a detailed schedule with specific activities and times, but it does not include any information about the customer's membership number or how it relates to the schedule. The answer also does not provide any information about the customer's interests or preferences, which is a key part of creating a personalized schedule. metricLabel: completeness name: completeness result: PASS score: 4 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:42.000Z' errorCode: 0 metricExplainability: >- The answer is generally understandable, but it contains some sections that are unclear, such as the mention of 'free time' and the specific activities listed. The grammar is also correct, but the answer could be improved by providing more context or explanation for the schedule. metricLabel: coherence name: coherence result: PASS score: 3 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:42.000Z' errorCode: 0 metricLabel: conciseness name: conciseness result: FAILURE score: 2 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:42.000Z' errorCode: 0 metricLabel: output_latency_milliseconds name: output_latency_milliseconds score: 17047 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:48:29.000Z' generatedData: actionsSequence: >- ['Get_Customer_From_Email_or_Membership_Number_179AU00000038U5'] citations: '[ ]' invokedActions: >- [[{"function":{"name":"Get_Customer_From_Email_or_Membership_Number_179AU00000038U5","input":{"customerEmail":"nediheinsius@example.com"},"output":{"contactId":"003AU00001J7b4GYAR","contactRecord":{"sObjectInfo":{"apiName":"Contact","label":"Contact"},"id":"003AU00001J7b4GYAR","data":{"AccountId":null,"AssistantName":null,"AssistantPhone":null,"Average_Room_Cost__c":null,"Birthdate":"2042-05-03","CleanStatus":"Pending","ContactSource":null,"CreatedById":"005AU00000OrYkDYAV","CreatedDate":"2025-09-09T13:59:41.000+0000","Department":null,"Description":null,"DoNotCall":false,"Email":"nediheinsius@example.com","EmailBouncedDate":null,"EmailBouncedReason":null,"External_Id__c":"10003177","Fax":null,"FirstName":"Nedi","GenderIdentity":null,"Guest_Type__c":"Business and Pleasure Travelers","HasOptedOutOfEmail":false,"HasOptedOutOfFax":false,"HomePhone":null,"Id":"003AU00001J7b4GYAR","IndividualId":null,"Interest1__c":"Fitness & Exercise","Interest2__c":"Nightlife & Entertainment","Interest3__c":"Nature & Eco Tours","IsDeleted":false,"IsEmailBounced":false,"Jigsaw":null,"JigsawContactId":null,"Languages__c":null,"LastActivityDate":null,"LastCURequestDate":null,"LastCUUpdateDate":null,"LastModifiedById":"005AU00000OrYkDYAV","LastModifiedDate":"2025-09-09T13:59:53.000+0000","LastName":"Heinsius","LastReferencedDate":"2025-09-09T13:59:41.000+0000","LastViewedDate":"2025-09-09T13:59:41.000+0000","LeadSource":"Partnerships","Level__c":null,"Lifetime_Experience_Bookings__c":12.0,"Lifetime_Reservations__c":null,"Lifetime_Value__c":null,"MailingAddress":{"city":"Peoria","country":"United States","geocodeAccuracy":null,"latitude":null,"longitude":null,"postalCode":"85383","state":"Arizona","street":"75563 Farwell Drive"},"MailingCity":"Peoria","MailingCountry":"United States","MailingGeocodeAccuracy":null,"MailingLatitude":null,"MailingLongitude":null,"MailingPostalCode":"85383","MailingState":"Arizona","MailingStreet":"75563 Farwell Drive","MasterRecordId":null,"Maximum_Room_Cost__c":null,"Membership_Number__c":"10003177","Minimum_Room_Cost__c":null,"MobilePhone":"196-794-6794","Name":"Nedi Heinsius","Next_Check_in_Date__c":null,"OtherAddress":null,"OtherCity":null,"OtherCountry":null,"OtherGeocodeAccuracy":null,"OtherLatitude":null,"OtherLongitude":null,"OtherPhone":null,"OtherPostalCode":null,"OtherState":null,"OtherStreet":null,"OwnerId":"005AU00000OrYkDYAV","Phone":null,"PhotoUrl":"/services/images/photo/003AU00001J7b4GYAR","Photo_URL__c":null,"Preferred_Name__c":"Nedi","Pronouns":null,"ReportsToId":null,"Salutation":null,"SystemModstamp":"2025-09-09T13:59:53.000+0000","Title":null}}}},"executionLatency":189}]] outcome: >- How much resort credit would you like to issue to Nedi Heinsius? sessionId: 019933e2-5a89-7002-a35b-12a7b351a7c2 topic: Customer_Service_Assistant_16jAU0000003zGf inputs: contextVariables: {} conversationHistory: [] utterance: >- I need a resort credit issued to my account. My email is nediheinsius@example.com. startTime: '2025-09-10T13:46:14.000Z' status: COMPLETED testNumber: 9 testResults: - actualValue: >- ['Get_Customer_From_Email_or_Membership_Number_179AU00000038U5'] endTime: '2025-09-10T13:48:30.000Z' errorCode: 0 expectedValue: >- ['Get_Customer_From_Email_or_Membership_Number'] metricLabel: actions_assertion name: actions_assertion result: PASS score: 1 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - actualValue: >- How much resort credit would you like to issue to Nedi Heinsius? endTime: '2025-09-10T13:48:30.000Z' errorCode: 0 expectedValue: >- Please provide the amount for the resort credit. metricExplainability: >- The BOT RESPONSE correctly prompts the user for the amount of resort credit, which aligns with the EXPECTED RESPONSE. However, it mistakenly includes the placeholder Nedi Heinsius instead of simply asking for the amount directly, which introduces unnecessary ambiguity. Overall, it is clear and aims to collect the required information. metricLabel: output_validation name: output_validation result: PASS score: 4 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - actualValue: Customer_Service_Assistant_16jAU0000003zGf endTime: '2025-09-10T13:48:30.000Z' errorCode: 0 expectedValue: Customer_Service_Assistant metricLabel: topic_assertion name: topic_assertion result: PASS score: 1 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:48:30.000Z' errorCode: 0 metricExplainability: >- The answer does not provide any information about the resort credit, such as the amount or the account it will be issued to, which are the main points of the request. metricLabel: completeness name: completeness result: FAILURE score: 1 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:48:30.000Z' errorCode: 0 metricExplainability: >- The answer is a question and does not provide any resort credit, making it difficult to understand what the answer is trying to say. It also lacks any context or information about the resort credit. metricLabel: coherence name: coherence result: FAILURE score: 1 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:48:30.000Z' errorCode: 0 metricLabel: conciseness name: conciseness result: PASS score: 3 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:48:30.000Z' errorCode: 0 metricLabel: output_latency_milliseconds name: output_latency_milliseconds score: 3777 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:48:29.000Z' generatedData: actionsSequence: >- ['Get_Customer_From_Email_or_Membership_Number_179AU00000038U5', 'Issue_Resort_Credit_179AU00000038U5'] citations: '[ ]' invokedActions: >- [[{"function":{"name":"Get_Customer_From_Email_or_Membership_Number_179AU00000038U5","input":{"customerEmail":"fraydadowsing@example.com"},"output":{"contactId":"003AU00001J7b4FYAR","contactRecord":{"sObjectInfo":{"apiName":"Contact","label":"Contact"},"id":"003AU00001J7b4FYAR","data":{"AccountId":null,"AssistantName":null,"AssistantPhone":null,"Average_Room_Cost__c":null,"Birthdate":"1994-11-19","CleanStatus":"Pending","ContactSource":null,"CreatedById":"005AU00000OrYkDYAV","CreatedDate":"2025-09-09T13:59:41.000+0000","Department":null,"Description":null,"DoNotCall":false,"Email":"fraydadowsing@example.com","EmailBouncedDate":null,"EmailBouncedReason":null,"External_Id__c":"10008756","Fax":null,"FirstName":"Frayda","GenderIdentity":null,"Guest_Type__c":"Romance Retreaters","HasOptedOutOfEmail":false,"HasOptedOutOfFax":false,"HomePhone":null,"Id":"003AU00001J7b4FYAR","IndividualId":null,"Interest1__c":"Dining Experiences","Interest2__c":"Cultural Tours & Workshops","Interest3__c":"Family & Kids' Activities","IsDeleted":false,"IsEmailBounced":false,"Jigsaw":null,"JigsawContactId":null,"Languages__c":null,"LastActivityDate":null,"LastCURequestDate":null,"LastCUUpdateDate":null,"LastModifiedById":"005AU00000OrYkDYAV","LastModifiedDate":"2025-09-09T13:59:53.000+0000","LastName":"Dowsing","LastReferencedDate":"2025-09-09T14:19:58.000+0000","LastViewedDate":"2025-09-09T14:19:58.000+0000","LeadSource":"Online Travel Agent","Level__c":null,"Lifetime_Experience_Bookings__c":17.0,"Lifetime_Reservations__c":null,"Lifetime_Value__c":null,"MailingAddress":{"city":"Honolulu","country":"United States","geocodeAccuracy":null,"latitude":null,"longitude":null,"postalCode":"96815","state":"Hawaii","street":"94046 Grasskamp Junction"},"MailingCity":"Honolulu","MailingCountry":"United States","MailingGeocodeAccuracy":null,"MailingLatitude":null,"MailingLongitude":null,"MailingPostalCode":"96815","MailingState":"Hawaii","MailingStreet":"94046 Grasskamp Junction","MasterRecordId":null,"Maximum_Room_Cost__c":null,"Membership_Number__c":"10008756","Minimum_Room_Cost__c":null,"MobilePhone":"707-490-8673","Name":"Frayda Dowsing","Next_Check_in_Date__c":null,"OtherAddress":null,"OtherCity":null,"OtherCountry":null,"OtherGeocodeAccuracy":null,"OtherLatitude":null,"OtherLongitude":null,"OtherPhone":null,"OtherPostalCode":null,"OtherState":null,"OtherStreet":null,"OwnerId":"005AU00000OrYkDYAV","Phone":null,"PhotoUrl":"/services/images/photo/003AU00001J7b4FYAR","Photo_URL__c":null,"Preferred_Name__c":"Frayda","Pronouns":null,"ReportsToId":null,"Salutation":null,"SystemModstamp":"2025-09-09T13:59:53.000+0000","Title":null}}}},"executionLatency":227},{"function":{"name":"Issue_Resort_Credit_179AU00000038U5","input":{"amount":"100","contactid":"003AU00001J7b4FYAR"},"output":{"creditId":"a01AU00000xd7sUYAQ"}},"executionLatency":243}]] outcome: >- The $100 resort credit has been successfully issued to Frayda Dowsing. Let me know if there's anything else I can assist with! a01AU00000xd7sUYAQ sessionId: 019933e2-5a5f-7622-8dba-904115dfc0a4 topic: Customer_Service_Assistant_16jAU0000003zGf inputs: contextVariables: {} conversationHistory: [] utterance: >- Please issue a $100 resort credit to the contact with email fraydadowsing@example.com. startTime: '2025-09-10T13:46:14.000Z' status: COMPLETED testNumber: 10 testResults: - actualValue: >- ['Get_Customer_From_Email_or_Membership_Number_179AU00000038U5', 'Issue_Resort_Credit_179AU00000038U5'] endTime: '2025-09-10T13:48:30.000Z' errorCode: 0 expectedValue: >- ['Get_Customer_From_Email_or_Membership_Number', 'Issue_Resort_Credit'] metricLabel: actions_assertion name: actions_assertion result: PASS score: 1 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - actualValue: >- The $100 resort credit has been successfully issued to Frayda Dowsing. Let me know if there's anything else I can assist with! a01AU00000xd7sUYAQ endTime: '2025-09-10T13:48:30.000Z' errorCode: 0 expectedValue: >- A $100 resort credit has been issued to Frayda Dowsing. metricExplainability: >- The BOT RESPONSE successfully confirms the issuance of the $100 resort credit to Frayda Dowsing, which fully aligns with the EXPECTED RESPONSE. However, it includes an unnecessary additional phrase asking if further assistance is needed, which is not part of the EXPECTED RESPONSE. metricLabel: output_validation name: output_validation result: PASS score: 4 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - actualValue: Customer_Service_Assistant_16jAU0000003zGf endTime: '2025-09-10T13:48:30.000Z' errorCode: 0 expectedValue: Customer_Service_Assistant metricLabel: topic_assertion name: topic_assertion result: PASS score: 1 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:48:30.000Z' errorCode: 0 metricExplainability: >- The answer does not provide the email address of the contact to whom the resort credit was issued, which is a crucial piece of information. The answer also includes an irrelevant code 'a01AU00000xd7sUYAQ' which is not part of the context. metricLabel: completeness name: completeness result: FAILURE score: 1 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:48:30.000Z' errorCode: 0 metricExplainability: >- The answer is difficult to understand, and it contains multiple grammar errors that affect clarity. The phrase 'Let me know if there's anything else I can assist with!' seems out of place and does not contribute to the coherence of the answer. metricLabel: coherence name: coherence result: FAILURE score: 1 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:48:30.000Z' errorCode: 0 metricLabel: conciseness name: conciseness result: PASS score: 5 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:48:30.000Z' errorCode: 0 metricLabel: output_latency_milliseconds name: output_latency_milliseconds score: 3519 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:30.000Z' generatedData: actionsSequence: >- ['Get_Customer_From_Email_or_Membership_Number_179AU00000038U5', 'Issue_Resort_Credit_179AU00000038U5'] citations: '[ ]' invokedActions: >- [[{"function":{"name":"Get_Customer_From_Email_or_Membership_Number_179AU00000038U5","input":{"customerMembershipNumber":"10008155"},"output":{"contactId":"003AU00001J7zDuYAJ","contactRecord":{"sObjectInfo":{"apiName":"Contact","label":"Contact"},"id":"003AU00001J7zDuYAJ","data":{"AccountId":null,"AssistantName":null,"AssistantPhone":null,"Average_Room_Cost__c":null,"Birthdate":"1978-11-10","CleanStatus":"Pending","ContactSource":null,"CreatedById":"005AU00000OrYkDYAV","CreatedDate":"2025-09-09T13:59:41.000+0000","Department":null,"Description":null,"DoNotCall":false,"Email":"sofiarodriguez@example.com","EmailBouncedDate":null,"EmailBouncedReason":null,"External_Id__c":"10008155","Fax":null,"FirstName":"Sofia","GenderIdentity":null,"Guest_Type__c":"Cultural Connoisseurs","HasOptedOutOfEmail":false,"HasOptedOutOfFax":false,"HomePhone":null,"Id":"003AU00001J7zDuYAJ","IndividualId":null,"Interest1__c":"Adventure Activities","Interest2__c":"Beaches & Snorkeling","Interest3__c":"Fitness & Exercise","IsDeleted":false,"IsEmailBounced":false,"Jigsaw":null,"JigsawContactId":null,"Languages__c":null,"LastActivityDate":null,"LastCURequestDate":null,"LastCUUpdateDate":null,"LastModifiedById":"005AU00000OrYkDYAV","LastModifiedDate":"2025-09-09T13:59:53.000+0000","LastName":"Rodriguez","LastReferencedDate":"2025-09-09T15:43:53.000+0000","LastViewedDate":"2025-09-09T15:43:53.000+0000","LeadSource":"Direct Mail","Level__c":null,"Lifetime_Experience_Bookings__c":10.0,"Lifetime_Reservations__c":null,"Lifetime_Value__c":null,"MailingAddress":{"city":"Minneapolis","country":"United States","geocodeAccuracy":null,"latitude":null,"longitude":null,"postalCode":"55428","state":"Minnesota","street":"3 6th Avenue"},"MailingCity":"Minneapolis","MailingCountry":"United States","MailingGeocodeAccuracy":null,"MailingLatitude":null,"MailingLongitude":null,"MailingPostalCode":"55428","MailingState":"Minnesota","MailingStreet":"3 6th Avenue","MasterRecordId":null,"Maximum_Room_Cost__c":null,"Membership_Number__c":"10008155","Minimum_Room_Cost__c":null,"MobilePhone":"612-350-2240","Name":"Sofia Rodriguez","Next_Check_in_Date__c":"2024-12-20","OtherAddress":null,"OtherCity":null,"OtherCountry":null,"OtherGeocodeAccuracy":null,"OtherLatitude":null,"OtherLongitude":null,"OtherPhone":null,"OtherPostalCode":null,"OtherState":null,"OtherStreet":null,"OwnerId":"005AU00000OrYkDYAV","Phone":null,"PhotoUrl":"/services/images/photo/003AU00001J7zDuYAJ","Photo_URL__c":"https://s3-us-west-2.amazonaws.com/dev-or-devrl-s3-bucket/sample-apps/coral-clouds/qswvurmhbo9w261ce","Preferred_Name__c":"Sofi","Pronouns":null,"ReportsToId":null,"Salutation":null,"SystemModstamp":"2025-09-09T13:59:53.000+0000","Title":null}}}},"executionLatency":196},{"function":{"name":"Issue_Resort_Credit_179AU00000038U5","input":{"amount":"100","contactid":"003AU00001J7zDuYAJ"},"output":{"creditId":"a01AU00000xbStAYAU"}},"executionLatency":254}]] outcome: >- The $100 resort credit has been successfully issued to Sofia Rodriguez. Let me know if there's anything else I can assist you with! a01AU00000xbStAYAU sessionId: 019933e1-7010-7b01-98d2-00689ea0ae63 topic: Customer_Service_Assistant_16jAU0000003zGf inputs: contextVariables: {} conversationHistory: [] utterance: >- I need a $100 resort credit issued to the customer with Membership Number 10008155? startTime: '2025-09-10T13:46:14.000Z' status: COMPLETED testNumber: 11 testResults: - actualValue: >- ['Get_Customer_From_Email_or_Membership_Number_179AU00000038U5', 'Issue_Resort_Credit_179AU00000038U5'] endTime: '2025-09-10T13:47:31.000Z' errorCode: 0 expectedValue: >- ['Get_Customer_From_Email_or_Membership_Number', 'Issue_Resort_Credit'] metricLabel: actions_assertion name: actions_assertion result: PASS score: 1 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - actualValue: >- The $100 resort credit has been successfully issued to Sofia Rodriguez. Let me know if there's anything else I can assist you with! a01AU00000xbStAYAU endTime: '2025-09-10T13:47:31.000Z' errorCode: 0 expectedValue: >- A $100 resort credit has been issued to your account, Sofia Rodriguez. metricExplainability: >- The BOT RESPONSE confirms the issuance of the resort credit but includes an irrelevant identifier (a01AU00000xbStAYAU) that is not part of the EXPECTED RESPONSE. It does not clearly state the membership number or provide the user's name, which is implied in the QUERY. Therefore, it partially aligns with the EXPECTED RESPONSE but includes unnecessary information. metricLabel: output_validation name: output_validation result: PASS score: 3 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - actualValue: Customer_Service_Assistant_16jAU0000003zGf endTime: '2025-09-10T13:47:31.000Z' errorCode: 0 expectedValue: Customer_Service_Assistant metricLabel: topic_assertion name: topic_assertion result: PASS score: 1 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:31.000Z' errorCode: 0 metricExplainability: >- The answer does not provide the required resort credit to the customer with Membership Number 10008155, and instead provides a generic message and an unknown code. The answer is very incomplete as it misses the crucial information about the resort credit. metricLabel: completeness name: completeness result: FAILURE score: 1 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:31.000Z' errorCode: 0 metricExplainability: >- The answer is generally understandable, but the second sentence is unclear and contains a grammar error. The phrase 'Let me know if there's anything else I can assist you with!' is not directly related to the main task of issuing a resort credit. metricLabel: coherence name: coherence result: PASS score: 3 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:31.000Z' errorCode: 0 metricLabel: conciseness name: conciseness result: PASS score: 5 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:31.000Z' errorCode: 0 metricLabel: output_latency_milliseconds name: output_latency_milliseconds score: 3803 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:27.000Z' generatedData: actionsSequence: '[]' citations: '[ ]' invokedActions: '[[]]' outcome: >- Could you provide the list of contacts you'd like to issue the $50 resort credits to? This can include their names, emails, or membership numbers. sessionId: 019933e1-701c-77b2-bcba-b8a3b8e1dbb2 topic: Customer_Service_Assistant_16jAU0000003zGf inputs: contextVariables: {} conversationHistory: [] utterance: >- I need to issue $50 resort credits to multiple contacts. startTime: '2025-09-10T13:46:14.000Z' status: COMPLETED testNumber: 12 testResults: - actualValue: '[]' endTime: '2025-09-10T13:47:27.000Z' errorCode: 0 expectedValue: '[]' metricLabel: actions_assertion name: actions_assertion result: PASS score: 1 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - actualValue: >- Could you provide the list of contacts you'd like to issue the $50 resort credits to? This can include their names, emails, or membership numbers. endTime: '2025-09-10T13:47:27.000Z' errorCode: 0 expectedValue: >- Please provide the emails or contact IDs of the contacts to issue the credits. metricExplainability: >- The BOT RESPONSE correctly prompts the user for the necessary information to achieve the goal of issuing resort credits. However, it slightly deviates from the EXPECTED RESPONSE by including names and membership numbers as options, which are not mentioned in the EXPECTED RESPONSE. This makes it slightly ambiguous, but it still aligns with the overall goal. metricLabel: output_validation name: output_validation result: PASS score: 4 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - actualValue: Customer_Service_Assistant_16jAU0000003zGf endTime: '2025-09-10T13:47:27.000Z' errorCode: 0 expectedValue: Customer_Service_Assistant metricLabel: topic_assertion name: topic_assertion result: PASS score: 1 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:27.000Z' errorCode: 0 metricExplainability: >- The answer is very incomplete as it does not provide the resort credits to the contacts, instead it asks for the list of contacts. metricLabel: completeness name: completeness result: FAILURE score: 1 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:27.000Z' errorCode: 0 metricExplainability: >- The answer is easy to understand, and the language is clear. There are no significant grammar errors that affect readability. metricLabel: coherence name: coherence result: PASS score: 4 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:27.000Z' errorCode: 0 metricLabel: conciseness name: conciseness result: PASS score: 5 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:27.000Z' errorCode: 0 metricLabel: output_latency_milliseconds name: output_latency_milliseconds score: 2158 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:48:29.000Z' generatedData: actionsSequence: >- ['Get_Customer_From_Email_or_Membership_Number_179AU00000038U5', 'Get_Customer_From_Email_or_Membership_Number_179AU00000038U5', 'Issue_Bulk_Resort_Credits_179AU00000038U5'] citations: '[ ]' invokedActions: >- [[{"function":{"name":"Get_Customer_From_Email_or_Membership_Number_179AU00000038U5","input":{"customerEmail":"nediheinsius@example.com"},"output":{"contactId":"003AU00001J7b4GYAR","contactRecord":{"sObjectInfo":{"apiName":"Contact","label":"Contact"},"id":"003AU00001J7b4GYAR","data":{"AccountId":null,"AssistantName":null,"AssistantPhone":null,"Average_Room_Cost__c":null,"Birthdate":"2042-05-03","CleanStatus":"Pending","ContactSource":null,"CreatedById":"005AU00000OrYkDYAV","CreatedDate":"2025-09-09T13:59:41.000+0000","Department":null,"Description":null,"DoNotCall":false,"Email":"nediheinsius@example.com","EmailBouncedDate":null,"EmailBouncedReason":null,"External_Id__c":"10003177","Fax":null,"FirstName":"Nedi","GenderIdentity":null,"Guest_Type__c":"Business and Pleasure Travelers","HasOptedOutOfEmail":false,"HasOptedOutOfFax":false,"HomePhone":null,"Id":"003AU00001J7b4GYAR","IndividualId":null,"Interest1__c":"Fitness & Exercise","Interest2__c":"Nightlife & Entertainment","Interest3__c":"Nature & Eco Tours","IsDeleted":false,"IsEmailBounced":false,"Jigsaw":null,"JigsawContactId":null,"Languages__c":null,"LastActivityDate":null,"LastCURequestDate":null,"LastCUUpdateDate":null,"LastModifiedById":"005AU00000OrYkDYAV","LastModifiedDate":"2025-09-09T13:59:53.000+0000","LastName":"Heinsius","LastReferencedDate":"2025-09-09T13:59:41.000+0000","LastViewedDate":"2025-09-09T13:59:41.000+0000","LeadSource":"Partnerships","Level__c":null,"Lifetime_Experience_Bookings__c":12.0,"Lifetime_Reservations__c":null,"Lifetime_Value__c":null,"MailingAddress":{"city":"Peoria","country":"United States","geocodeAccuracy":null,"latitude":null,"longitude":null,"postalCode":"85383","state":"Arizona","street":"75563 Farwell Drive"},"MailingCity":"Peoria","MailingCountry":"United States","MailingGeocodeAccuracy":null,"MailingLatitude":null,"MailingLongitude":null,"MailingPostalCode":"85383","MailingState":"Arizona","MailingStreet":"75563 Farwell Drive","MasterRecordId":null,"Maximum_Room_Cost__c":null,"Membership_Number__c":"10003177","Minimum_Room_Cost__c":null,"MobilePhone":"196-794-6794","Name":"Nedi Heinsius","Next_Check_in_Date__c":null,"OtherAddress":null,"OtherCity":null,"OtherCountry":null,"OtherGeocodeAccuracy":null,"OtherLatitude":null,"OtherLongitude":null,"OtherPhone":null,"OtherPostalCode":null,"OtherState":null,"OtherStreet":null,"OwnerId":"005AU00000OrYkDYAV","Phone":null,"PhotoUrl":"/services/images/photo/003AU00001J7b4GYAR","Photo_URL__c":null,"Preferred_Name__c":"Nedi","Pronouns":null,"ReportsToId":null,"Salutation":null,"SystemModstamp":"2025-09-09T13:59:53.000+0000","Title":null}}}},"executionLatency":208},{"function":{"name":"Get_Customer_From_Email_or_Membership_Number_179AU00000038U5","input":{"customerEmail":"fraydadowsing@example.com"},"output":{"contactId":"003AU00001J7b4FYAR","contactRecord":{"sObjectInfo":{"apiName":"Contact","label":"Contact"},"id":"003AU00001J7b4FYAR","data":{"AccountId":null,"AssistantName":null,"AssistantPhone":null,"Average_Room_Cost__c":null,"Birthdate":"1994-11-19","CleanStatus":"Pending","ContactSource":null,"CreatedById":"005AU00000OrYkDYAV","CreatedDate":"2025-09-09T13:59:41.000+0000","Department":null,"Description":null,"DoNotCall":false,"Email":"fraydadowsing@example.com","EmailBouncedDate":null,"EmailBouncedReason":null,"External_Id__c":"10008756","Fax":null,"FirstName":"Frayda","GenderIdentity":null,"Guest_Type__c":"Romance Retreaters","HasOptedOutOfEmail":false,"HasOptedOutOfFax":false,"HomePhone":null,"Id":"003AU00001J7b4FYAR","IndividualId":null,"Interest1__c":"Dining Experiences","Interest2__c":"Cultural Tours & Workshops","Interest3__c":"Family & Kids' Activities","IsDeleted":false,"IsEmailBounced":false,"Jigsaw":null,"JigsawContactId":null,"Languages__c":null,"LastActivityDate":null,"LastCURequestDate":null,"LastCUUpdateDate":null,"LastModifiedById":"005AU00000OrYkDYAV","LastModifiedDate":"2025-09-09T13:59:53.000+0000","LastName":"Dowsing","LastReferencedDate":"2025-09-09T14:19:58.000+0000","LastViewedDate":"2025-09-09T14:19:58.000+0000","LeadSource":"Online Travel Agent","Level__c":null,"Lifetime_Experience_Bookings__c":17.0,"Lifetime_Reservations__c":null,"Lifetime_Value__c":null,"MailingAddress":{"city":"Honolulu","country":"United States","geocodeAccuracy":null,"latitude":null,"longitude":null,"postalCode":"96815","state":"Hawaii","street":"94046 Grasskamp Junction"},"MailingCity":"Honolulu","MailingCountry":"United States","MailingGeocodeAccuracy":null,"MailingLatitude":null,"MailingLongitude":null,"MailingPostalCode":"96815","MailingState":"Hawaii","MailingStreet":"94046 Grasskamp Junction","MasterRecordId":null,"Maximum_Room_Cost__c":null,"Membership_Number__c":"10008756","Minimum_Room_Cost__c":null,"MobilePhone":"707-490-8673","Name":"Frayda Dowsing","Next_Check_in_Date__c":null,"OtherAddress":null,"OtherCity":null,"OtherCountry":null,"OtherGeocodeAccuracy":null,"OtherLatitude":null,"OtherLongitude":null,"OtherPhone":null,"OtherPostalCode":null,"OtherState":null,"OtherStreet":null,"OwnerId":"005AU00000OrYkDYAV","Phone":null,"PhotoUrl":"/services/images/photo/003AU00001J7b4FYAR","Photo_URL__c":null,"Preferred_Name__c":"Frayda","Pronouns":null,"ReportsToId":null,"Salutation":null,"SystemModstamp":"2025-09-09T13:59:53.000+0000","Title":null}}}},"executionLatency":217},{"function":{"name":"Issue_Bulk_Resort_Credits_179AU00000038U5","input":{"amount":"50","contactRecords":"[{\"sObjectInfo\":{\"apiName\":\"Contact\"},\"id\":\"003AU00001J7b4GYAR\",\"data\":{\"Id\":\"003AU00001J7b4GYAR\"}},{\"sObjectInfo\":{\"apiName\":\"Contact\"},\"id\":\"003AU00001J7b4FYAR\",\"data\":{\"Id\":\"003AU00001J7b4FYAR\"}}]"},"output":{"message":"Issued $50 resort credit to 2 customers."}},"executionLatency":321}]] outcome: >- The $50 resort credits have been successfully issued to both contacts. Let me know if there's anything else you need! Issued $50 resort credit to 2 customers. sessionId: 019933e2-5a71-7cbe-b8b0-002b6f876902 topic: Customer_Service_Assistant_16jAU0000003zGf inputs: contextVariables: {} conversationHistory: [] utterance: >- I need to issue $50 resort credits to two contacts. Their emails are nediheinsius@example.com and fraydadowsing@example.com. startTime: '2025-09-10T13:46:14.000Z' status: COMPLETED testNumber: 13 testResults: - actualValue: >- ['Get_Customer_From_Email_or_Membership_Number_179AU00000038U5', 'Get_Customer_From_Email_or_Membership_Number_179AU00000038U5', 'Issue_Bulk_Resort_Credits_179AU00000038U5'] endTime: '2025-09-10T13:48:31.000Z' errorCode: 0 expectedValue: >- ['Get_Customer_From_Email_or_Membership_Number', 'Get_Customer_From_Email_or_Membership_Number', 'Issue_Bulk_Resort_Credits'] metricLabel: actions_assertion name: actions_assertion result: PASS score: 1 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - actualValue: >- The $50 resort credits have been successfully issued to both contacts. Let me know if there's anything else you need! Issued $50 resort credit to 2 customers. endTime: '2025-09-10T13:48:31.000Z' errorCode: 0 expectedValue: >- Bulk resort credits of $50 have been issued to the specified contacts. metricExplainability: >- BOT RESPONSE accurately confirms the issuance of $50 resort credits to the specified contacts, aligning well with the EXPECTED RESPONSE. It is clear and precise, providing the necessary information without irrelevant details. metricLabel: output_validation name: output_validation result: PASS score: 5 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - actualValue: Customer_Service_Assistant_16jAU0000003zGf endTime: '2025-09-10T13:48:31.000Z' errorCode: 0 expectedValue: Customer_Service_Assistant metricLabel: topic_assertion name: topic_assertion result: PASS score: 1 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:48:31.000Z' errorCode: 0 metricExplainability: >- The answer provides the correct information about the resort credits being issued to two contacts, and it also includes additional information about the process, which is not requested. However, it does not provide any details about the specific emails of the contacts, which is requested in the context. metricLabel: completeness name: completeness result: PASS score: 4 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:48:31.000Z' errorCode: 0 metricExplainability: >- The answer is easy to understand, free of significant grammar errors, and flows well when read by itself. The answer is concise and clear, making it easy to understand the outcome of the task. metricLabel: coherence name: coherence result: PASS score: 4 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:48:31.000Z' errorCode: 0 metricLabel: conciseness name: conciseness result: PASS score: 3 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:48:31.000Z' errorCode: 0 metricLabel: output_latency_milliseconds name: output_latency_milliseconds score: 4851 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED contentMediaType: application/json example: endTime: '2025-09-10T13:48:31.000Z' startTime: '2025-09-10T13:46:14.000Z' status: COMPLETED subjectName: Employee_agent_tests testCases: - endTime: '2025-09-10T13:46:30.000Z' generatedData: actionsSequence: '[]' invokedActions: '[[]]' outcome: >- To check the weather forecast at the resort, please provide the date you'd like to check. sessionId: 019933e0-8597-70de-912b-359082a322b2 topic: Customer_Service_Assistant_16jAU0000003zGf inputs: contextVariables: {} conversationHistory: [] utterance: What's the weather forecast at the resort? startTime: '2025-09-10T13:46:14.000Z' status: COMPLETED testNumber: 1 testResults: - actualValue: '[]' endTime: '2025-09-10T13:46:31.000Z' errorCode: 0 expectedValue: '[]' metricLabel: actions_assertion name: actions_assertion result: PASS score: 1 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - actualValue: >- To check the weather forecast at the resort, please provide the date you'd like to check. endTime: '2025-09-10T13:46:31.000Z' errorCode: 0 expectedValue: >- Please provide a future date to check the weather forecast. metricExplainability: >- The BOT RESPONSE correctly prompts the user for the necessary information (a future date) to provide the weather forecast, aligning well with the EXPECTED RESPONSE. It is clear and does not include irrelevant information. metricLabel: output_validation name: output_validation result: PASS score: 5 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - actualValue: Customer_Service_Assistant_16jAU0000003zGf endTime: '2025-09-10T13:46:31.000Z' errorCode: 0 expectedValue: Customer_Service_Assistant metricLabel: topic_assertion name: topic_assertion result: PASS score: 1 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:31.000Z' errorCode: 0 metricExplainability: >- The answer is incomplete as it does not provide the weather forecast at the resort, instead it asks for the date to check the forecast. metricLabel: completeness name: completeness result: FAILURE score: 1 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:31.000Z' errorCode: 0 metricExplainability: >- The answer is easy to understand, and it does not contain any significant grammar errors. The answer is also relevant to the question asked. metricLabel: coherence name: coherence result: PASS score: 4 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:31.000Z' errorCode: 0 metricLabel: conciseness name: conciseness result: PASS score: 5 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:31.000Z' errorCode: 0 metricLabel: output_latency_milliseconds name: output_latency_milliseconds score: 2352 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:40.000Z' generatedData: actionsSequence: '['Check_Weather_179AU00000038U5']' citations: '[ ]' invokedActions: >- [[{"function":{"name":"Check_Weather_179AU00000038U5","input":{"dateToCheck":"2025-01-01"},"output":{}},"executionLatency":539}]] outcome: >- Hmm, it looks like I wasn’t able to retrieve the weather forecast for January 1st, 2025. The system I’d normally use to check this information didn’t respond as expected. You might want to try checking a weather app or website closer to the date for the most accurate forecast. Let me know if there’s anything else I can help with! (Session ID: 019933e0-858f-7170-9bd7-5564c5e4c85a) sessionId: 019933e0-858f-7170-9bd7-5564c5e4c85a topic: Customer_Service_Assistant_16jAU0000003zGf inputs: contextVariables: {} conversationHistory: [] utterance: >- What's the weather forecast for Jan 1st, 2025 at the resort? startTime: '2025-09-10T13:46:14.000Z' status: COMPLETED testNumber: 2 testResults: - actualValue: '['Check_Weather_179AU00000038U5']' endTime: '2025-09-10T13:46:42.000Z' errorCode: 0 expectedValue: '['Check_Weather']' metricLabel: actions_assertion name: actions_assertion result: PASS score: 1 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - actualValue: >- Hmm, it looks like I wasn’t able to retrieve the weather forecast for January 1st, 2025. The system I’d normally use to check this information didn’t respond as expected. You might want to try checking a weather app or website closer to the date for the most accurate forecast. Let me know if there’s anything else I can help with! (Session ID: 019933e0-858f-7170-9bd7-5564c5e4c85a) endTime: '2025-09-10T13:46:42.000Z' errorCode: 0 expectedValue: >- I can only provide weather forecasts for future dates. Please provide a future date. metricExplainability: >- The BOT RESPONSE fails to address the user's QUERY for a specific forecast date and incorrectly states that it cannot retrieve the information. It does not align with the EXPECTED RESPONSE, which simply asks for a future date, indicating a misunderstanding of the user's request. metricLabel: output_validation name: output_validation result: FAILURE score: 1 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - actualValue: Customer_Service_Assistant_16jAU0000003zGf endTime: '2025-09-10T13:46:42.000Z' errorCode: 0 expectedValue: Customer_Service_Assistant metricLabel: topic_assertion name: topic_assertion result: PASS score: 1 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:42.000Z' errorCode: 0 metricExplainability: >- The answer is very incomplete as it does not provide any information about the weather forecast for Jan 1st, 2025 at the resort, which is the main request. It only mentions that the system did not respond as expected and suggests checking a weather app or website. metricLabel: completeness name: completeness result: FAILURE score: 1 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:42.000Z' errorCode: 0 metricExplainability: >- The answer is generally understandable, but it contains a few grammar errors and sections that are unclear. The phrase 'The system I’d normally use to check this information didn’t respond as expected' is a bit confusing, and the suggestion to check a weather app or website closer to the date is not directly related to the original question. metricLabel: coherence name: coherence result: PASS score: 3 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:42.000Z' errorCode: 0 metricLabel: conciseness name: conciseness result: PASS score: 5 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:42.000Z' errorCode: 0 metricLabel: output_latency_milliseconds name: output_latency_milliseconds score: 11154 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:33.000Z' generatedData: actionsSequence: '['Check_Weather_179AU00000038U5']' citations: '[ ]' invokedActions: >- [[{"function":{"name":"Check_Weather_179AU00000038U5","input":{"dateToCheck":"2025-09-11"},"output":{"weather":{"minTemperatureF":60.4,"minTemperatureC":15.8,"maxTemperatureF":78.3,"maxTemperatureC":25.7,"iconName":"rain","description":"On September 11, temperature will be between 15.8°C (60.4°F) and 25.7°C (78.3°F) at Coral Cloud Reso"}}},"executionLatency":510}]] outcome: >- Here's the weather forecast for tomorrow at Coral Cloud Resorts. Let me know if you need anything else! {minTemperatureF=60.4, minTemperatureC=15.8, maxTemperatureF=78.3, maxTemperatureC=25.7, iconName=rain, description=On September 11, temperature will be between 15.8°C (60.4°F) and 25.7°C (78.3°F) at Coral Cloud Resorts.} sessionId: 019933e0-8571-720f-a404-546c9c2af263 topic: Customer_Service_Assistant_16jAU0000003zGf inputs: contextVariables: {} conversationHistory: [] utterance: >- What's the weather forecast for tomorrow at the resort? startTime: '2025-09-10T13:46:14.000Z' status: COMPLETED testNumber: 3 testResults: - actualValue: '['Check_Weather_179AU00000038U5']' endTime: '2025-09-10T13:46:34.000Z' errorCode: 0 expectedValue: '['Check_Weather']' metricLabel: actions_assertion name: actions_assertion result: PASS score: 1 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - actualValue: >- Here's the weather forecast for tomorrow at Coral Cloud Resorts. Let me know if you need anything else! {minTemperatureF=60.4, minTemperatureC=15.8, maxTemperatureF=78.3, maxTemperatureC=25.7, iconName=rain, description=On September 11, temperature will be between 15.8°C (60.4°F) and 25.7°C (78.3°F) at Coral Cloud Resorts.} endTime: '2025-09-10T13:46:34.000Z' errorCode: 0 expectedValue: >- The weather is expected to be sunny with a high of 85°F. metricExplainability: >- The BOT RESPONSE provides detailed temperature information and conditions, but it does not align with the EXPECTED RESPONSE, which specifies a sunny forecast with a high of 85°F. The response includes unnecessary details and does not match the expected weather conditions. metricLabel: output_validation name: output_validation result: FAILURE score: 2 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - actualValue: Customer_Service_Assistant_16jAU0000003zGf endTime: '2025-09-10T13:46:34.000Z' errorCode: 0 expectedValue: Customer_Service_Assistant metricLabel: topic_assertion name: topic_assertion result: PASS score: 1 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:34.000Z' errorCode: 0 metricExplainability: >- The answer provides the weather forecast for tomorrow at the resort, including the minimum and maximum temperatures in both Celsius and Fahrenheit, as well as the icon name and description. The answer does not miss any important pieces of information, ensuring clarity and accuracy. metricLabel: completeness name: completeness result: PASS score: 4 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:34.000Z' errorCode: 0 metricExplainability: >- The answer is generally understandable, but it contains some sections that are unclear, such as the use of 'Coral Cloud Resorts' twice, and the mention of 'On September 11' which is not relevant to the weather forecast for tomorrow. The answer also contains a few grammar errors, such as the use of 'Let me know if you need anything else!' which is not relevant to the weather forecast. metricLabel: coherence name: coherence result: PASS score: 3 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:34.000Z' errorCode: 0 metricLabel: conciseness name: conciseness result: PASS score: 4 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:34.000Z' errorCode: 0 metricLabel: output_latency_milliseconds name: output_latency_milliseconds score: 2788 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:32.000Z' generatedData: actionsSequence: >- ['Get_Customer_From_Email_or_Membership_Number_179AU00000038U5'] citations: '[ ]' invokedActions: >- [[{"function":{"name":"Get_Customer_From_Email_or_Membership_Number_179AU00000038U5","input":{"customerEmail":"nonexistent@example.com"},"output":{"contactId":null,"contactRecord":null}},"executionLatency":237}]] outcome: >- I couldn't find any contact details associated with the email address "nonexistent@example.com". Let me know if you'd like me to try searching with a different email or membership number! sessionId: 019933e0-85a6-74d0-bfa4-841e8c8a03d3 topic: Customer_Service_Assistant_16jAU0000003zGf inputs: contextVariables: {} conversationHistory: [] utterance: >- Can you provide the details for the contact with email nonexistent@example.com? startTime: '2025-09-10T13:46:14.000Z' status: COMPLETED testNumber: 4 testResults: - actualValue: >- ['Get_Customer_From_Email_or_Membership_Number_179AU00000038U5'] endTime: '2025-09-10T13:46:33.000Z' errorCode: 0 expectedValue: >- ['Get_Customer_From_Email_or_Membership_Number'] metricLabel: actions_assertion name: actions_assertion result: PASS score: 1 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - actualValue: >- I couldn't find any contact details associated with the email address "nonexistent@example.com". Let me know if you'd like me to try searching with a different email or membership number! endTime: '2025-09-10T13:46:33.000Z' errorCode: 0 expectedValue: >- I couldn't find any contact with the email nonexistent@example.com. Please check the email and try again. metricExplainability: >- The BOT RESPONSE is aligned with the EXPECTED RESPONSE in that it indicates the contact details associated with the provided email address were not found. However, it adds an unnecessary prompt for the user to try a different email or membership number, which is not part of the EXPECTED RESPONSE. Therefore, it slightly deviates from the expected outcome. metricLabel: output_validation name: output_validation result: PASS score: 4 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - actualValue: Customer_Service_Assistant_16jAU0000003zGf endTime: '2025-09-10T13:46:33.000Z' errorCode: 0 expectedValue: Customer_Service_Assistant metricLabel: topic_assertion name: topic_assertion result: PASS score: 1 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:33.000Z' errorCode: 0 metricExplainability: >- The answer is very incomplete as it does not provide any contact details for the email address, and instead asks for further input. metricLabel: completeness name: completeness result: FAILURE score: 1 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:33.000Z' errorCode: 0 metricExplainability: >- The answer is easy to understand, and the grammar is correct. The answer clearly states that no contact details were found and offers to try searching with a different email or membership number, which is a coherent response. metricLabel: coherence name: coherence result: PASS score: 4 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:33.000Z' errorCode: 0 metricLabel: conciseness name: conciseness result: PASS score: 5 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:33.000Z' errorCode: 0 metricLabel: output_latency_milliseconds name: output_latency_milliseconds score: 2512 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:33.000Z' generatedData: actionsSequence: >- ['Get_Customer_From_Email_or_Membership_Number_179AU00000038U5'] citations: '[ ]' invokedActions: >- [[{"function":{"name":"Get_Customer_From_Email_or_Membership_Number_179AU00000038U5","input":{"customerEmail":"nediheinsius@example.com"},"output":{"contactId":"003AU00001J7b4GYAR","contactRecord":{"sObjectInfo":{"apiName":"Contact","label":"Contact"},"id":"003AU00001J7b4GYAR","data":{"AccountId":null,"AssistantName":null,"AssistantPhone":null,"Average_Room_Cost__c":null,"Birthdate":"2042-05-03","CleanStatus":"Pending","ContactSource":null,"CreatedById":"005AU00000OrYkDYAV","CreatedDate":"2025-09-09T13:59:41.000+0000","Department":null,"Description":null,"DoNotCall":false,"Email":"nediheinsius@example.com","EmailBouncedDate":null,"EmailBouncedReason":null,"External_Id__c":"10003177","Fax":null,"FirstName":"Nedi","GenderIdentity":null,"Guest_Type__c":"Business and Pleasure Travelers","HasOptedOutOfEmail":false,"HasOptedOutOfFax":false,"HomePhone":null,"Id":"003AU00001J7b4GYAR","IndividualId":null,"Interest1__c":"Fitness & Exercise","Interest2__c":"Nightlife & Entertainment","Interest3__c":"Nature & Eco Tours","IsDeleted":false,"IsEmailBounced":false,"Jigsaw":null,"JigsawContactId":null,"Languages__c":null,"LastActivityDate":null,"LastCURequestDate":null,"LastCUUpdateDate":null,"LastModifiedById":"005AU00000OrYkDYAV","LastModifiedDate":"2025-09-09T13:59:53.000+0000","LastName":"Heinsius","LastReferencedDate":"2025-09-09T13:59:41.000+0000","LastViewedDate":"2025-09-09T13:59:41.000+0000","LeadSource":"Partnerships","Level__c":null,"Lifetime_Experience_Bookings__c":12.0,"Lifetime_Reservations__c":null,"Lifetime_Value__c":null,"MailingAddress":{"city":"Peoria","country":"United States","geocodeAccuracy":null,"latitude":null,"longitude":null,"postalCode":"85383","state":"Arizona","street":"75563 Farwell Drive"},"MailingCity":"Peoria","MailingCountry":"United States","MailingGeocodeAccuracy":null,"MailingLatitude":null,"MailingLongitude":null,"MailingPostalCode":"85383","MailingState":"Arizona","MailingStreet":"75563 Farwell Drive","MasterRecordId":null,"Maximum_Room_Cost__c":null,"Membership_Number__c":"10003177","Minimum_Room_Cost__c":null,"MobilePhone":"196-794-6794","Name":"Nedi Heinsius","Next_Check_in_Date__c":null,"OtherAddress":null,"OtherCity":null,"OtherCountry":null,"OtherGeocodeAccuracy":null,"OtherLatitude":null,"OtherLongitude":null,"OtherPhone":null,"OtherPostalCode":null,"OtherState":null,"OtherStreet":null,"OwnerId":"005AU00000OrYkDYAV","Phone":null,"PhotoUrl":"/services/images/photo/003AU00001J7b4GYAR","Photo_URL__c":null,"Preferred_Name__c":"Nedi","Pronouns":null,"ReportsToId":null,"Salutation":null,"SystemModstamp":"2025-09-09T13:59:53.000+0000","Title":null}}}},"executionLatency":256}]] outcome: >- Here are the contact details for the provided email. Let me know if you need further assistance! {sObjectInfo={apiName=Contact, label=Contact}, id=003AU00001J7b4GYAR, data={AccountId=null, AssistantName=null, AssistantPhone=null, Average_Room_Cost__c=null, Birthdate=2042-05-03, CleanStatus=Pending, ContactSource=null, CreatedById=005AU00000OrYkDYAV, CreatedDate=2025-09-09T13:59:41.000+0000, Department=null, Description=null, DoNotCall=false, Email=nediheinsius@example.com, EmailBouncedDate=null, EmailBouncedReason=null, External_Id__c=10003177, Fax=null, FirstName=Nedi, GenderIdentity=null, Guest_Type__c=Business and Pleasure Travelers, HasOptedOutOfEmail=false, HasOptedOutOfFax=false, HomePhone=null, Id=003AU00001J7b4GYAR, IndividualId=null, Interest1__c=Fitness & Exercise, Interest2__c=Nightlife & Entertainment, Interest3__c=Nature & Eco Tours, IsDeleted=false, IsEmailBounced=false, Jigsaw=null, JigsawContactId=null, Languages__c=null, LastActivityDate=null, LastCURequestDate=null, LastCUUpdateDate=null, LastModifiedById=005AU00000OrYkDYAV, LastModifiedDate=2025-09-09T13:59:53.000+0000, LastName=Heinsius, LastReferencedDate=2025-09-09T13:59:41.000+0000, LastViewedDate=2025-09-09T13:59:41.000+0000, LeadSource=Partnerships, Level__c=null, Lifetime_Experience_Bookings__c=12.0, Lifetime_Reservations__c=null, Lifetime_Value__c=null, MailingAddress={city=Peoria, country=United States, geocodeAccuracy=null, latitude=null, longitude=null, postalCode=85383, state=Arizona, street=75563 Farwell Drive}, MailingCity=Peoria, MailingCountry=United States, MailingGeocodeAccuracy=null, MailingLatitude=null, MailingLongitude=null, MailingPostalCode=85383, MailingState=Arizona, MailingStreet=75563 Farwell Drive, MasterRecordId=null, Maximum_Room_Cost__c=null, Membership_Number__c=10003177, Minimum_Room_Cost__c=null, MobilePhone=196-794-6794, Name=Nedi Heinsius, Next_Check_in_Date__c=null, OtherAddress=null, OtherCity=null, OtherCountry=null, OtherGeocodeAccuracy=null, OtherLatitude=null, OtherLongitude=null, OtherPhone=null, OtherPostalCode=null, OtherState=null, OtherStreet=null, OwnerId=005AU00000OrYkDYAV, Phone=null, PhotoUrl=/services/images/photo/003AU00001J7b4GYAR, Photo_URL__c=null, Preferred_Name__c=Nedi, Pronouns=null, ReportsToId=null, Salutation=null, SystemModstamp=2025-09-09T13:59:53.000+0000, Title=null}} sessionId: 019933e0-8586-7a38-8b9b-36d0271d9c82 topic: Customer_Service_Assistant_16jAU0000003zGf inputs: contextVariables: {} conversationHistory: [] utterance: >- Can you find the contact details for the email nediheinsius@example.com? startTime: '2025-09-10T13:46:14.000Z' status: COMPLETED testNumber: 5 testResults: - actualValue: >- ['Get_Customer_From_Email_or_Membership_Number_179AU00000038U5'] endTime: '2025-09-10T13:46:34.000Z' errorCode: 0 expectedValue: >- ['Get_Customer_From_Email_or_Membership_Number'] metricLabel: actions_assertion name: actions_assertion result: PASS score: 1 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - actualValue: >- Here are the contact details for the provided email. Let me know if you need further assistance! {sObjectInfo={apiName=Contact, label=Contact}, id=003AU00001J7b4GYAR, data={AccountId=null, AssistantName=null, AssistantPhone=null, Average_Room_Cost__c=null, Birthdate=2042-05-03, CleanStatus=Pending, ContactSource=null, CreatedById=005AU00000OrYkDYAV, CreatedDate=2025-09-09T13:59:41.000+0000, Department=null, Description=null, DoNotCall=false, Email=nediheinsius@example.com, EmailBouncedDate=null, EmailBouncedReason=null, External_Id__c=10003177, Fax=null, FirstName=Nedi, GenderIdentity=null, Guest_Type__c=Business and Pleasure Travelers, HasOptedOutOfEmail=false, HasOptedOutOfFax=false, HomePhone=null, Id=003AU00001J7b4GYAR, IndividualId=null, Interest1__c=Fitness & Exercise, Interest2__c=Nightlife & Entertainment, Interest3__c=Nature & Eco Tours, IsDeleted=false, IsEmailBounced=false, Jigsaw=null, JigsawContactId=null, Languages__c=null, LastActivityDate=null, LastCURequestDate=null, LastCUUpdateDate=null, LastModifiedById=005AU00000OrYkDYAV, LastModifiedDate=2025-09-09T13:59:53.000+0000, LastName=Heinsius, LastReferencedDate=2025-09-09T13:59:41.000+0000, LastViewedDate=2025-09-09T13:59:41.000+0000, LeadSource=Partnerships, Level__c=null, Lifetime_Experience_Bookings__c=12.0, Lifetime_Reservations__c=null, Lifetime_Value__c=null, MailingAddress={city=Peoria, country=United States, geocodeAccuracy=null, latitude=null, longitude=null, postalCode=85383, state=Arizona, street=75563 Farwell Drive}, MailingCity=Peoria, MailingCountry=United States, MailingGeocodeAccuracy=null, MailingLatitude=null, MailingLongitude=null, MailingPostalCode=85383, MailingState=Arizona, MailingStreet=75563 Farwell Drive, MasterRecordId=null, Maximum_Room_Cost__c=null, Membership_Number__c=10003177, Minimum_Room_Cost__c=null, MobilePhone=196-794-6794, Name=Nedi Heinsius, Next_Check_in_Date__c=null, OtherAddress=null, OtherCity=null, OtherCountry=null, OtherGeocodeAccuracy=null, OtherLatitude=null, OtherLongitude=null, OtherPhone=null, OtherPostalCode=null, OtherState=null, OtherStreet=null, OwnerId=005AU00000OrYkDYAV, Phone=null, PhotoUrl=/services/images/photo/003AU00001J7b4GYAR, Photo_URL__c=null, Preferred_Name__c=Nedi, Pronouns=null, ReportsToId=null, Salutation=null, SystemModstamp=2025-09-09T13:59:53.000+0000, Title=null}} endTime: '2025-09-10T13:46:34.000Z' errorCode: 0 expectedValue: Here are the contact details for Nedi Heinsius. metricExplainability: >- The BOT RESPONSE provides detailed information about the contact associated with the provided email, but it includes excessive technical data that is not relevant to the user. It does not clearly state the name of the contact as Nedi Heinsius, which is the expected output format. Thus, it partially achieves the goal but lacks clarity and precision. metricLabel: output_validation name: output_validation result: PASS score: 3 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - actualValue: Customer_Service_Assistant_16jAU0000003zGf endTime: '2025-09-10T13:46:34.000Z' errorCode: 0 expectedValue: Customer_Service_Assistant metricLabel: topic_assertion name: topic_assertion result: PASS score: 1 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:34.000Z' errorCode: 0 metricExplainability: >- The answer does not provide any contact details for the email address, only a list of fields and their values from the database. It does not provide any information that can be used to contact the person associated with the email address. metricLabel: completeness name: completeness result: FAILURE score: 1 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:34.000Z' errorCode: 0 metricExplainability: >- The answer is not coherent at all. It is difficult to understand what the answer is trying to say, and it is riddled with grammar errors. The answer seems to be a JSON object with contact details, but it is not formatted in a way that is easy to read or understand. metricLabel: coherence name: coherence result: FAILURE score: 1 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:34.000Z' errorCode: 0 metricLabel: conciseness name: conciseness result: FAILURE score: 2 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:34.000Z' errorCode: 0 metricLabel: output_latency_milliseconds name: output_latency_milliseconds score: 2728 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:26.000Z' generatedData: actionsSequence: >- ['Get_Customer_From_Email_or_Membership_Number_179AU00000038U5'] citations: '[ ]' invokedActions: >- [[{"function":{"name":"Get_Customer_From_Email_or_Membership_Number_179AU00000038U5","input":{"customerMembershipNumber":"123456"},"output":{"contactId":null,"contactRecord":null}},"executionLatency":231}]] outcome: >- I couldn't find any contact details associated with the membership number 123456. Could you double-check the number or provide additional information? sessionId: 019933e1-6ff4-79cf-a606-a0affb7e8762 topic: Customer_Service_Assistant_16jAU0000003zGf inputs: contextVariables: {} conversationHistory: [] utterance: >- Can you find the contact details for the membership number 123456? startTime: '2025-09-10T13:46:14.000Z' status: COMPLETED testNumber: 6 testResults: - actualValue: >- ['Get_Customer_From_Email_or_Membership_Number_179AU00000038U5'] endTime: '2025-09-10T13:47:27.000Z' errorCode: 0 expectedValue: >- ['Get_Customer_From_Email_or_Membership_Number'] metricLabel: actions_assertion name: actions_assertion result: PASS score: 1 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - actualValue: >- I couldn't find any contact details associated with the membership number 123456. Could you double-check the number or provide additional information? endTime: '2025-09-10T13:47:27.000Z' errorCode: 0 expectedValue: Here are the contact details for Frayda Dowsing. metricExplainability: >- The BOT RESPONSE does not achieve the goal of providing the contact details as outlined in the EXPECTED RESPONSE. Instead, it incorrectly states that no contact details were found and asks for further information, which is unnecessary since the membership number should already be sufficient to retrieve the details from the CRM database. Therefore, it fails to align with the expected outcome. metricLabel: output_validation name: output_validation result: FAILURE score: 1 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - actualValue: Customer_Service_Assistant_16jAU0000003zGf endTime: '2025-09-10T13:47:27.000Z' errorCode: 0 expectedValue: Customer_Service_Assistant metricLabel: topic_assertion name: topic_assertion result: PASS score: 1 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:27.000Z' errorCode: 0 metricExplainability: >- The answer does not provide any contact details, which is the main request. It only provides a suggestion to double-check the number or provide additional information, which does not fully address the request. metricLabel: completeness name: completeness result: FAILURE score: 1 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:27.000Z' errorCode: 0 metricExplainability: >- The answer is easy to understand, and it does not contain any significant grammar errors. The answer is also relevant to the query and provides a clear response. metricLabel: coherence name: coherence result: PASS score: 4 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:27.000Z' errorCode: 0 metricLabel: conciseness name: conciseness result: PASS score: 5 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:27.000Z' errorCode: 0 metricLabel: output_latency_milliseconds name: output_latency_milliseconds score: 2136 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:36.000Z' generatedData: actionsSequence: >- ['Get_Customer_From_Email_or_Membership_Number_179AU00000038U5', 'Generate_Personalized_Schedule_EA_179AU00000038U5'] citations: '[ ]' invokedActions: >- [[{"function":{"name":"Get_Customer_From_Email_or_Membership_Number_179AU00000038U5","input":{"customerEmail":"nediheinsius@example.com"},"output":{"contactId":"003AU00001J7b4GYAR","contactRecord":{"sObjectInfo":{"apiName":"Contact","label":"Contact"},"id":"003AU00001J7b4GYAR","data":{"AccountId":null,"AssistantName":null,"AssistantPhone":null,"Average_Room_Cost__c":null,"Birthdate":"2042-05-03","CleanStatus":"Pending","ContactSource":null,"CreatedById":"005AU00000OrYkDYAV","CreatedDate":"2025-09-09T13:59:41.000+0000","Department":null,"Description":null,"DoNotCall":false,"Email":"nediheinsius@example.com","EmailBouncedDate":null,"EmailBouncedReason":null,"External_Id__c":"10003177","Fax":null,"FirstName":"Nedi","GenderIdentity":null,"Guest_Type__c":"Business and Pleasure Travelers","HasOptedOutOfEmail":false,"HasOptedOutOfFax":false,"HomePhone":null,"Id":"003AU00001J7b4GYAR","IndividualId":null,"Interest1__c":"Fitness & Exercise","Interest2__c":"Nightlife & Entertainment","Interest3__c":"Nature & Eco Tours","IsDeleted":false,"IsEmailBounced":false,"Jigsaw":null,"JigsawContactId":null,"Languages__c":null,"LastActivityDate":null,"LastCURequestDate":null,"LastCUUpdateDate":null,"LastModifiedById":"005AU00000OrYkDYAV","LastModifiedDate":"2025-09-09T13:59:53.000+0000","LastName":"Heinsius","LastReferencedDate":"2025-09-09T13:59:41.000+0000","LastViewedDate":"2025-09-09T13:59:41.000+0000","LeadSource":"Partnerships","Level__c":null,"Lifetime_Experience_Bookings__c":12.0,"Lifetime_Reservations__c":null,"Lifetime_Value__c":null,"MailingAddress":{"city":"Peoria","country":"United States","geocodeAccuracy":null,"latitude":null,"longitude":null,"postalCode":"85383","state":"Arizona","street":"75563 Farwell Drive"},"MailingCity":"Peoria","MailingCountry":"United States","MailingGeocodeAccuracy":null,"MailingLatitude":null,"MailingLongitude":null,"MailingPostalCode":"85383","MailingState":"Arizona","MailingStreet":"75563 Farwell Drive","MasterRecordId":null,"Maximum_Room_Cost__c":null,"Membership_Number__c":"10003177","Minimum_Room_Cost__c":null,"MobilePhone":"196-794-6794","Name":"Nedi Heinsius","Next_Check_in_Date__c":null,"OtherAddress":null,"OtherCity":null,"OtherCountry":null,"OtherGeocodeAccuracy":null,"OtherLatitude":null,"OtherLongitude":null,"OtherPhone":null,"OtherPostalCode":null,"OtherState":null,"OtherStreet":null,"OwnerId":"005AU00000OrYkDYAV","Phone":null,"PhotoUrl":"/services/images/photo/003AU00001J7b4GYAR","Photo_URL__c":null,"Preferred_Name__c":"Nedi","Pronouns":null,"ReportsToId":null,"Salutation":null,"SystemModstamp":"2025-09-09T13:59:53.000+0000","Title":null}}}},"executionLatency":472},{"function":{"name":"Generate_Personalized_Schedule_EA_179AU00000038U5","input":{"Input:contactId":"003AU00001J7b4GYAR"},"output":{"promptResponse":"Hello, I am Philippe from the guest success team at Coral Cloud. I appreciate your interest in our r"}},"executionLatency":8462}]] outcome: >- Here's the personalized schedule for Nedi Heinsius. Let me know if you'd like to book any of these activities! Hello, I am Philippe from the guest success team at Coral Cloud. I appreciate your interest in our resort activities. Here is a list of activities happening today that align with your interests: - Sunrise Mountain Yoga: 09:00 AM, Mountain Overlook, 6 hours - Aqua Fitness in Paradise: 09:00 AM, Resort Pool, 3 hours - Ocean Kayak Fitness Expedition: 09:00 AM, Coastal Waters, 6 hours - Rainforest Discovery Hike: 09:00 AM, Rainforest Reserve, 2 hours - Coastal Kayak Excursion: 09:00 AM, Coastal Waters, 1 hour - Live Music Beach Party: 09:00 AM, Resort Beach, 2 hours - Sunset Cocktail Cruise: 09:00 AM, Ocean Cruise, 1 hour - Outdoor Movie Night: 09:00 AM, Outdoor Cinema Area, 6 hours Given the overlapping times and the requirement for free time between activities, I suggest the following schedule: 1. Coastal Kayak Excursion: 09:00 AM - 10:00 AM 2. Free Time: 10:00 AM - 11:00 AM 3. Rainforest Discovery Hike: 11:00 AM - 01:00 PM 4. Free Time: 01:00 PM - 02:00 PM 5. Live Music Beach Party: 02:00 PM - 04:00 PM 6. Free Time: 04:00 PM - 05:00 PM 7. Sunset Cocktail Cruise: 05:00 PM - 06:00 PM Please reach out if you would like to book any of these activities. Thank you for your time. sessionId: 019933e1-701f-7837-ad0e-68f7997b92ba topic: Customer_Service_Assistant_16jAU0000003zGf inputs: contextVariables: {} conversationHistory: [] utterance: >- Can you create a personalized schedule for the guest with email nediheinsius@example.com? startTime: '2025-09-10T13:46:14.000Z' status: COMPLETED testNumber: 7 testResults: - actualValue: >- ['Get_Customer_From_Email_or_Membership_Number_179AU00000038U5', 'Generate_Personalized_Schedule_EA_179AU00000038U5'] endTime: '2025-09-10T13:47:37.000Z' errorCode: 0 expectedValue: >- ['Get_Customer_From_Email_or_Membership_Number', 'Generate_Personalized_Schedule_EA'] metricLabel: actions_assertion name: actions_assertion result: PASS score: 1 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - actualValue: >- Here's the personalized schedule for Nedi Heinsius. Let me know if you'd like to book any of these activities! Hello, I am Philippe from the guest success team at Coral Cloud. I appreciate your interest in our resort activities. Here is a list of activities happening today that align with your interests: - Sunrise Mountain Yoga: 09:00 AM, Mountain Overlook, 6 hours - Aqua Fitness in Paradise: 09:00 AM, Resort Pool, 3 hours - Ocean Kayak Fitness Expedition: 09:00 AM, Coastal Waters, 6 hours - Rainforest Discovery Hike: 09:00 AM, Rainforest Reserve, 2 hours - Coastal Kayak Excursion: 09:00 AM, Coastal Waters, 1 hour - Live Music Beach Party: 09:00 AM, Resort Beach, 2 hours - Sunset Cocktail Cruise: 09:00 AM, Ocean Cruise, 1 hour - Outdoor Movie Night: 09:00 AM, Outdoor Cinema Area, 6 hours Given the overlapping times and the requirement for free time between activities, I suggest the following schedule: 1. Coastal Kayak Excursion: 09:00 AM - 10:00 AM 2. Free Time: 10:00 AM - 11:00 AM 3. Rainforest Discovery Hike: 11:00 AM - 01:00 PM 4. Free Time: 01:00 PM - 02:00 PM 5. Live Music Beach Party: 02:00 PM - 04:00 PM 6. Free Time: 04:00 PM - 05:00 PM 7. Sunset Cocktail Cruise: 05:00 PM - 06:00 PM Please reach out if you would like to book any of these activities. Thank you for your time. endTime: '2025-09-10T13:47:37.000Z' errorCode: 0 expectedValue: Here is the personalized schedule for Nedi Heinsius. metricExplainability: >- The BOT RESPONSE provides a personalized schedule as requested in the QUERY, but it contains excessive information beyond the expected response, making it less precise. The initial output should have simply confirmed the creation of the schedule without the detailed list of activities and free time suggestions. metricLabel: output_validation name: output_validation result: PASS score: 4 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - actualValue: Customer_Service_Assistant_16jAU0000003zGf endTime: '2025-09-10T13:47:37.000Z' errorCode: 0 expectedValue: Customer_Service_Assistant metricLabel: topic_assertion name: topic_assertion result: PASS score: 1 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:37.000Z' errorCode: 0 metricExplainability: >- The answer provides a detailed schedule with specific activities and times, but it does not explicitly mention the guest's email address nediheinsius@example.com or provide a personalized schedule for the guest. The answer also does not mention the resort name or the guest's name, which could be considered important information. metricLabel: completeness name: completeness result: PASS score: 4 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:37.000Z' errorCode: 0 metricExplainability: >- The answer is generally understandable, but it contains some sections that are unclear, such as the overlapping times and the requirement for free time between activities. The grammar errors are minor and do not significantly impact readability. metricLabel: coherence name: coherence result: PASS score: 3 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:37.000Z' errorCode: 0 metricLabel: conciseness name: conciseness result: PASS score: 3 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:37.000Z' errorCode: 0 metricLabel: output_latency_milliseconds name: output_latency_milliseconds score: 11834 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:41.000Z' generatedData: actionsSequence: >- ['Get_Customer_From_Email_or_Membership_Number_179AU00000038U5', 'Generate_Personalized_Schedule_EA_179AU00000038U5'] citations: '[ ]' invokedActions: >- [[{"function":{"name":"Get_Customer_From_Email_or_Membership_Number_179AU00000038U5","input":{"customerMembershipNumber":"10008155"},"output":{"contactId":"003AU00001J7zDuYAJ","contactRecord":{"sObjectInfo":{"apiName":"Contact","label":"Contact"},"id":"003AU00001J7zDuYAJ","data":{"AccountId":null,"AssistantName":null,"AssistantPhone":null,"Average_Room_Cost__c":null,"Birthdate":"1978-11-10","CleanStatus":"Pending","ContactSource":null,"CreatedById":"005AU00000OrYkDYAV","CreatedDate":"2025-09-09T13:59:41.000+0000","Department":null,"Description":null,"DoNotCall":false,"Email":"sofiarodriguez@example.com","EmailBouncedDate":null,"EmailBouncedReason":null,"External_Id__c":"10008155","Fax":null,"FirstName":"Sofia","GenderIdentity":null,"Guest_Type__c":"Cultural Connoisseurs","HasOptedOutOfEmail":false,"HasOptedOutOfFax":false,"HomePhone":null,"Id":"003AU00001J7zDuYAJ","IndividualId":null,"Interest1__c":"Adventure Activities","Interest2__c":"Beaches & Snorkeling","Interest3__c":"Fitness & Exercise","IsDeleted":false,"IsEmailBounced":false,"Jigsaw":null,"JigsawContactId":null,"Languages__c":null,"LastActivityDate":null,"LastCURequestDate":null,"LastCUUpdateDate":null,"LastModifiedById":"005AU00000OrYkDYAV","LastModifiedDate":"2025-09-09T13:59:53.000+0000","LastName":"Rodriguez","LastReferencedDate":"2025-09-09T15:43:53.000+0000","LastViewedDate":"2025-09-09T15:43:53.000+0000","LeadSource":"Direct Mail","Level__c":null,"Lifetime_Experience_Bookings__c":10.0,"Lifetime_Reservations__c":null,"Lifetime_Value__c":null,"MailingAddress":{"city":"Minneapolis","country":"United States","geocodeAccuracy":null,"latitude":null,"longitude":null,"postalCode":"55428","state":"Minnesota","street":"3 6th Avenue"},"MailingCity":"Minneapolis","MailingCountry":"United States","MailingGeocodeAccuracy":null,"MailingLatitude":null,"MailingLongitude":null,"MailingPostalCode":"55428","MailingState":"Minnesota","MailingStreet":"3 6th Avenue","MasterRecordId":null,"Maximum_Room_Cost__c":null,"Membership_Number__c":"10008155","Minimum_Room_Cost__c":null,"MobilePhone":"612-350-2240","Name":"Sofia Rodriguez","Next_Check_in_Date__c":"2024-12-20","OtherAddress":null,"OtherCity":null,"OtherCountry":null,"OtherGeocodeAccuracy":null,"OtherLatitude":null,"OtherLongitude":null,"OtherPhone":null,"OtherPostalCode":null,"OtherState":null,"OtherStreet":null,"OwnerId":"005AU00000OrYkDYAV","Phone":null,"PhotoUrl":"/services/images/photo/003AU00001J7zDuYAJ","Photo_URL__c":"https://s3-us-west-2.amazonaws.com/dev-or-devrl-s3-bucket/sample-apps/coral-clouds/qswvurmhbo9w261ce","Preferred_Name__c":"Sofi","Pronouns":null,"ReportsToId":null,"Salutation":null,"SystemModstamp":"2025-09-09T13:59:53.000+0000","Title":null}}}},"executionLatency":199},{"function":{"name":"Generate_Personalized_Schedule_EA_179AU00000038U5","input":{"Input:contactId":"003AU00001J7zDuYAJ"},"output":{"promptResponse":"Hello, I am Philippe from the guest success team at Coral Cloud. I am pleased to present the list of"}},"executionLatency":13647}]] outcome: >- Here's the personalized schedule for Sofia Rodriguez. Let me know if you'd like to book any of these activities! Hello, I am Philippe from the guest success team at Coral Cloud. I am pleased to present the list of resort activities happening today that match your interests: - Sunrise Mountain Yoga: 09:00 AM, Mountain Overlook, 6 hours - Aqua Fitness in Paradise: 09:00 AM, Resort Pool, 3 hours - Ocean Kayak Fitness Expedition: 09:00 AM, Coastal Waters, 6 hours - Tropical Snorkel Adventure: 09:00 AM, Coral Reef, 4 hours - Canyon Zip Line Excursion: 09:00 AM, Canyons & Forests, 3.5 hours - Off-Road Jungle Safari: 09:00 AM, Jungle Trails, 4 hours - White Water Rafting Rush: 09:00 AM, Rivers, 1 hour - Underground Cave Exploration: 09:00 AM, Subterranean Caves, 5 hours - Full Moon Beach Party: 09:00 AM, Beach, 2 hours - Surf's Up Lesson: 09:00 AM, Surfing Areas, 1 hour Given the overlapping schedules and the requirement for free time, I suggest the following schedule: 1. Sunrise Mountain Yoga: 09:00 AM - 03:00 PM 2. Free Time: 03:00 PM - 04:00 PM 3. Aqua Fitness in Paradise: 04:00 PM - 07:00 PM Please reach out if you would like to book any of these activities. Thank you for your time. sessionId: 019933e1-6fef-7140-a47b-f96f80fe9be1 topic: Customer_Service_Assistant_16jAU0000003zGf inputs: contextVariables: {} conversationHistory: [] utterance: >- Can you create a personalized schedule for customer with Membership Number 10008155? startTime: '2025-09-10T13:46:14.000Z' status: COMPLETED testNumber: 8 testResults: - actualValue: >- ['Get_Customer_From_Email_or_Membership_Number_179AU00000038U5', 'Generate_Personalized_Schedule_EA_179AU00000038U5'] endTime: '2025-09-10T13:47:42.000Z' errorCode: 0 expectedValue: >- ['Get_Customer_From_Email_or_Membership_Number', 'Generate_Personalized_Schedule_EA'] metricLabel: actions_assertion name: actions_assertion result: PASS score: 1 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - actualValue: >- Here's the personalized schedule for Sofia Rodriguez. Let me know if you'd like to book any of these activities! Hello, I am Philippe from the guest success team at Coral Cloud. I am pleased to present the list of resort activities happening today that match your interests: - Sunrise Mountain Yoga: 09:00 AM, Mountain Overlook, 6 hours - Aqua Fitness in Paradise: 09:00 AM, Resort Pool, 3 hours - Ocean Kayak Fitness Expedition: 09:00 AM, Coastal Waters, 6 hours - Tropical Snorkel Adventure: 09:00 AM, Coral Reef, 4 hours - Canyon Zip Line Excursion: 09:00 AM, Canyons & Forests, 3.5 hours - Off-Road Jungle Safari: 09:00 AM, Jungle Trails, 4 hours - White Water Rafting Rush: 09:00 AM, Rivers, 1 hour - Underground Cave Exploration: 09:00 AM, Subterranean Caves, 5 hours - Full Moon Beach Party: 09:00 AM, Beach, 2 hours - Surf's Up Lesson: 09:00 AM, Surfing Areas, 1 hour Given the overlapping schedules and the requirement for free time, I suggest the following schedule: 1. Sunrise Mountain Yoga: 09:00 AM - 03:00 PM 2. Free Time: 03:00 PM - 04:00 PM 3. Aqua Fitness in Paradise: 04:00 PM - 07:00 PM Please reach out if you would like to book any of these activities. Thank you for your time. endTime: '2025-09-10T13:47:42.000Z' errorCode: 0 expectedValue: >- Here is your personalized schedule for today, Sofia Rodriguez. metricExplainability: >- The BOT RESPONSE provides a personalized schedule but includes unnecessary details and activities that may not be relevant to the user. It also addresses the user as Sofia Rodriguez instead of using their actual name, which could lead to confusion. The response does not fully align with the expected outcome, which is a concise presentation of the schedule without extra information. metricLabel: output_validation name: output_validation result: PASS score: 3 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - actualValue: Customer_Service_Assistant_16jAU0000003zGf endTime: '2025-09-10T13:47:42.000Z' errorCode: 0 expectedValue: Customer_Service_Assistant metricLabel: topic_assertion name: topic_assertion result: PASS score: 1 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:42.000Z' errorCode: 0 metricExplainability: >- The answer provides a detailed schedule with specific activities and times, but it does not include any information about the customer's membership number or how it relates to the schedule. The answer also does not provide any information about the customer's interests or preferences, which is a key part of creating a personalized schedule. metricLabel: completeness name: completeness result: PASS score: 4 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:42.000Z' errorCode: 0 metricExplainability: >- The answer is generally understandable, but it contains some sections that are unclear, such as the mention of 'free time' and the specific activities listed. The grammar is also correct, but the answer could be improved by providing more context or explanation for the schedule. metricLabel: coherence name: coherence result: PASS score: 3 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:42.000Z' errorCode: 0 metricLabel: conciseness name: conciseness result: FAILURE score: 2 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:42.000Z' errorCode: 0 metricLabel: output_latency_milliseconds name: output_latency_milliseconds score: 17047 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:48:29.000Z' generatedData: actionsSequence: >- ['Get_Customer_From_Email_or_Membership_Number_179AU00000038U5'] citations: '[ ]' invokedActions: >- [[{"function":{"name":"Get_Customer_From_Email_or_Membership_Number_179AU00000038U5","input":{"customerEmail":"nediheinsius@example.com"},"output":{"contactId":"003AU00001J7b4GYAR","contactRecord":{"sObjectInfo":{"apiName":"Contact","label":"Contact"},"id":"003AU00001J7b4GYAR","data":{"AccountId":null,"AssistantName":null,"AssistantPhone":null,"Average_Room_Cost__c":null,"Birthdate":"2042-05-03","CleanStatus":"Pending","ContactSource":null,"CreatedById":"005AU00000OrYkDYAV","CreatedDate":"2025-09-09T13:59:41.000+0000","Department":null,"Description":null,"DoNotCall":false,"Email":"nediheinsius@example.com","EmailBouncedDate":null,"EmailBouncedReason":null,"External_Id__c":"10003177","Fax":null,"FirstName":"Nedi","GenderIdentity":null,"Guest_Type__c":"Business and Pleasure Travelers","HasOptedOutOfEmail":false,"HasOptedOutOfFax":false,"HomePhone":null,"Id":"003AU00001J7b4GYAR","IndividualId":null,"Interest1__c":"Fitness & Exercise","Interest2__c":"Nightlife & Entertainment","Interest3__c":"Nature & Eco Tours","IsDeleted":false,"IsEmailBounced":false,"Jigsaw":null,"JigsawContactId":null,"Languages__c":null,"LastActivityDate":null,"LastCURequestDate":null,"LastCUUpdateDate":null,"LastModifiedById":"005AU00000OrYkDYAV","LastModifiedDate":"2025-09-09T13:59:53.000+0000","LastName":"Heinsius","LastReferencedDate":"2025-09-09T13:59:41.000+0000","LastViewedDate":"2025-09-09T13:59:41.000+0000","LeadSource":"Partnerships","Level__c":null,"Lifetime_Experience_Bookings__c":12.0,"Lifetime_Reservations__c":null,"Lifetime_Value__c":null,"MailingAddress":{"city":"Peoria","country":"United States","geocodeAccuracy":null,"latitude":null,"longitude":null,"postalCode":"85383","state":"Arizona","street":"75563 Farwell Drive"},"MailingCity":"Peoria","MailingCountry":"United States","MailingGeocodeAccuracy":null,"MailingLatitude":null,"MailingLongitude":null,"MailingPostalCode":"85383","MailingState":"Arizona","MailingStreet":"75563 Farwell Drive","MasterRecordId":null,"Maximum_Room_Cost__c":null,"Membership_Number__c":"10003177","Minimum_Room_Cost__c":null,"MobilePhone":"196-794-6794","Name":"Nedi Heinsius","Next_Check_in_Date__c":null,"OtherAddress":null,"OtherCity":null,"OtherCountry":null,"OtherGeocodeAccuracy":null,"OtherLatitude":null,"OtherLongitude":null,"OtherPhone":null,"OtherPostalCode":null,"OtherState":null,"OtherStreet":null,"OwnerId":"005AU00000OrYkDYAV","Phone":null,"PhotoUrl":"/services/images/photo/003AU00001J7b4GYAR","Photo_URL__c":null,"Preferred_Name__c":"Nedi","Pronouns":null,"ReportsToId":null,"Salutation":null,"SystemModstamp":"2025-09-09T13:59:53.000+0000","Title":null}}}},"executionLatency":189}]] outcome: >- How much resort credit would you like to issue to Nedi Heinsius? sessionId: 019933e2-5a89-7002-a35b-12a7b351a7c2 topic: Customer_Service_Assistant_16jAU0000003zGf inputs: contextVariables: {} conversationHistory: [] utterance: >- I need a resort credit issued to my account. My email is nediheinsius@example.com. startTime: '2025-09-10T13:46:14.000Z' status: COMPLETED testNumber: 9 testResults: - actualValue: >- ['Get_Customer_From_Email_or_Membership_Number_179AU00000038U5'] endTime: '2025-09-10T13:48:30.000Z' errorCode: 0 expectedValue: >- ['Get_Customer_From_Email_or_Membership_Number'] metricLabel: actions_assertion name: actions_assertion result: PASS score: 1 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - actualValue: >- How much resort credit would you like to issue to Nedi Heinsius? endTime: '2025-09-10T13:48:30.000Z' errorCode: 0 expectedValue: Please provide the amount for the resort credit. metricExplainability: >- The BOT RESPONSE correctly prompts the user for the amount of resort credit, which aligns with the EXPECTED RESPONSE. However, it mistakenly includes the placeholder Nedi Heinsius instead of simply asking for the amount directly, which introduces unnecessary ambiguity. Overall, it is clear and aims to collect the required information. metricLabel: output_validation name: output_validation result: PASS score: 4 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - actualValue: Customer_Service_Assistant_16jAU0000003zGf endTime: '2025-09-10T13:48:30.000Z' errorCode: 0 expectedValue: Customer_Service_Assistant metricLabel: topic_assertion name: topic_assertion result: PASS score: 1 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:48:30.000Z' errorCode: 0 metricExplainability: >- The answer does not provide any information about the resort credit, such as the amount or the account it will be issued to, which are the main points of the request. metricLabel: completeness name: completeness result: FAILURE score: 1 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:48:30.000Z' errorCode: 0 metricExplainability: >- The answer is a question and does not provide any resort credit, making it difficult to understand what the answer is trying to say. It also lacks any context or information about the resort credit. metricLabel: coherence name: coherence result: FAILURE score: 1 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:48:30.000Z' errorCode: 0 metricLabel: conciseness name: conciseness result: PASS score: 3 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:48:30.000Z' errorCode: 0 metricLabel: output_latency_milliseconds name: output_latency_milliseconds score: 3777 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:48:29.000Z' generatedData: actionsSequence: >- ['Get_Customer_From_Email_or_Membership_Number_179AU00000038U5', 'Issue_Resort_Credit_179AU00000038U5'] citations: '[ ]' invokedActions: >- [[{"function":{"name":"Get_Customer_From_Email_or_Membership_Number_179AU00000038U5","input":{"customerEmail":"fraydadowsing@example.com"},"output":{"contactId":"003AU00001J7b4FYAR","contactRecord":{"sObjectInfo":{"apiName":"Contact","label":"Contact"},"id":"003AU00001J7b4FYAR","data":{"AccountId":null,"AssistantName":null,"AssistantPhone":null,"Average_Room_Cost__c":null,"Birthdate":"1994-11-19","CleanStatus":"Pending","ContactSource":null,"CreatedById":"005AU00000OrYkDYAV","CreatedDate":"2025-09-09T13:59:41.000+0000","Department":null,"Description":null,"DoNotCall":false,"Email":"fraydadowsing@example.com","EmailBouncedDate":null,"EmailBouncedReason":null,"External_Id__c":"10008756","Fax":null,"FirstName":"Frayda","GenderIdentity":null,"Guest_Type__c":"Romance Retreaters","HasOptedOutOfEmail":false,"HasOptedOutOfFax":false,"HomePhone":null,"Id":"003AU00001J7b4FYAR","IndividualId":null,"Interest1__c":"Dining Experiences","Interest2__c":"Cultural Tours & Workshops","Interest3__c":"Family & Kids' Activities","IsDeleted":false,"IsEmailBounced":false,"Jigsaw":null,"JigsawContactId":null,"Languages__c":null,"LastActivityDate":null,"LastCURequestDate":null,"LastCUUpdateDate":null,"LastModifiedById":"005AU00000OrYkDYAV","LastModifiedDate":"2025-09-09T13:59:53.000+0000","LastName":"Dowsing","LastReferencedDate":"2025-09-09T14:19:58.000+0000","LastViewedDate":"2025-09-09T14:19:58.000+0000","LeadSource":"Online Travel Agent","Level__c":null,"Lifetime_Experience_Bookings__c":17.0,"Lifetime_Reservations__c":null,"Lifetime_Value__c":null,"MailingAddress":{"city":"Honolulu","country":"United States","geocodeAccuracy":null,"latitude":null,"longitude":null,"postalCode":"96815","state":"Hawaii","street":"94046 Grasskamp Junction"},"MailingCity":"Honolulu","MailingCountry":"United States","MailingGeocodeAccuracy":null,"MailingLatitude":null,"MailingLongitude":null,"MailingPostalCode":"96815","MailingState":"Hawaii","MailingStreet":"94046 Grasskamp Junction","MasterRecordId":null,"Maximum_Room_Cost__c":null,"Membership_Number__c":"10008756","Minimum_Room_Cost__c":null,"MobilePhone":"707-490-8673","Name":"Frayda Dowsing","Next_Check_in_Date__c":null,"OtherAddress":null,"OtherCity":null,"OtherCountry":null,"OtherGeocodeAccuracy":null,"OtherLatitude":null,"OtherLongitude":null,"OtherPhone":null,"OtherPostalCode":null,"OtherState":null,"OtherStreet":null,"OwnerId":"005AU00000OrYkDYAV","Phone":null,"PhotoUrl":"/services/images/photo/003AU00001J7b4FYAR","Photo_URL__c":null,"Preferred_Name__c":"Frayda","Pronouns":null,"ReportsToId":null,"Salutation":null,"SystemModstamp":"2025-09-09T13:59:53.000+0000","Title":null}}}},"executionLatency":227},{"function":{"name":"Issue_Resort_Credit_179AU00000038U5","input":{"amount":"100","contactid":"003AU00001J7b4FYAR"},"output":{"creditId":"a01AU00000xd7sUYAQ"}},"executionLatency":243}]] outcome: >- The $100 resort credit has been successfully issued to Frayda Dowsing. Let me know if there's anything else I can assist with! a01AU00000xd7sUYAQ sessionId: 019933e2-5a5f-7622-8dba-904115dfc0a4 topic: Customer_Service_Assistant_16jAU0000003zGf inputs: contextVariables: {} conversationHistory: [] utterance: >- Please issue a $100 resort credit to the contact with email fraydadowsing@example.com. startTime: '2025-09-10T13:46:14.000Z' status: COMPLETED testNumber: 10 testResults: - actualValue: >- ['Get_Customer_From_Email_or_Membership_Number_179AU00000038U5', 'Issue_Resort_Credit_179AU00000038U5'] endTime: '2025-09-10T13:48:30.000Z' errorCode: 0 expectedValue: >- ['Get_Customer_From_Email_or_Membership_Number', 'Issue_Resort_Credit'] metricLabel: actions_assertion name: actions_assertion result: PASS score: 1 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - actualValue: >- The $100 resort credit has been successfully issued to Frayda Dowsing. Let me know if there's anything else I can assist with! a01AU00000xd7sUYAQ endTime: '2025-09-10T13:48:30.000Z' errorCode: 0 expectedValue: >- A $100 resort credit has been issued to Frayda Dowsing. metricExplainability: >- The BOT RESPONSE successfully confirms the issuance of the $100 resort credit to Frayda Dowsing, which fully aligns with the EXPECTED RESPONSE. However, it includes an unnecessary additional phrase asking if further assistance is needed, which is not part of the EXPECTED RESPONSE. metricLabel: output_validation name: output_validation result: PASS score: 4 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - actualValue: Customer_Service_Assistant_16jAU0000003zGf endTime: '2025-09-10T13:48:30.000Z' errorCode: 0 expectedValue: Customer_Service_Assistant metricLabel: topic_assertion name: topic_assertion result: PASS score: 1 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:48:30.000Z' errorCode: 0 metricExplainability: >- The answer does not provide the email address of the contact to whom the resort credit was issued, which is a crucial piece of information. The answer also includes an irrelevant code 'a01AU00000xd7sUYAQ' which is not part of the context. metricLabel: completeness name: completeness result: FAILURE score: 1 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:48:30.000Z' errorCode: 0 metricExplainability: >- The answer is difficult to understand, and it contains multiple grammar errors that affect clarity. The phrase 'Let me know if there's anything else I can assist with!' seems out of place and does not contribute to the coherence of the answer. metricLabel: coherence name: coherence result: FAILURE score: 1 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:48:30.000Z' errorCode: 0 metricLabel: conciseness name: conciseness result: PASS score: 5 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:48:30.000Z' errorCode: 0 metricLabel: output_latency_milliseconds name: output_latency_milliseconds score: 3519 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:30.000Z' generatedData: actionsSequence: >- ['Get_Customer_From_Email_or_Membership_Number_179AU00000038U5', 'Issue_Resort_Credit_179AU00000038U5'] citations: '[ ]' invokedActions: >- [[{"function":{"name":"Get_Customer_From_Email_or_Membership_Number_179AU00000038U5","input":{"customerMembershipNumber":"10008155"},"output":{"contactId":"003AU00001J7zDuYAJ","contactRecord":{"sObjectInfo":{"apiName":"Contact","label":"Contact"},"id":"003AU00001J7zDuYAJ","data":{"AccountId":null,"AssistantName":null,"AssistantPhone":null,"Average_Room_Cost__c":null,"Birthdate":"1978-11-10","CleanStatus":"Pending","ContactSource":null,"CreatedById":"005AU00000OrYkDYAV","CreatedDate":"2025-09-09T13:59:41.000+0000","Department":null,"Description":null,"DoNotCall":false,"Email":"sofiarodriguez@example.com","EmailBouncedDate":null,"EmailBouncedReason":null,"External_Id__c":"10008155","Fax":null,"FirstName":"Sofia","GenderIdentity":null,"Guest_Type__c":"Cultural Connoisseurs","HasOptedOutOfEmail":false,"HasOptedOutOfFax":false,"HomePhone":null,"Id":"003AU00001J7zDuYAJ","IndividualId":null,"Interest1__c":"Adventure Activities","Interest2__c":"Beaches & Snorkeling","Interest3__c":"Fitness & Exercise","IsDeleted":false,"IsEmailBounced":false,"Jigsaw":null,"JigsawContactId":null,"Languages__c":null,"LastActivityDate":null,"LastCURequestDate":null,"LastCUUpdateDate":null,"LastModifiedById":"005AU00000OrYkDYAV","LastModifiedDate":"2025-09-09T13:59:53.000+0000","LastName":"Rodriguez","LastReferencedDate":"2025-09-09T15:43:53.000+0000","LastViewedDate":"2025-09-09T15:43:53.000+0000","LeadSource":"Direct Mail","Level__c":null,"Lifetime_Experience_Bookings__c":10.0,"Lifetime_Reservations__c":null,"Lifetime_Value__c":null,"MailingAddress":{"city":"Minneapolis","country":"United States","geocodeAccuracy":null,"latitude":null,"longitude":null,"postalCode":"55428","state":"Minnesota","street":"3 6th Avenue"},"MailingCity":"Minneapolis","MailingCountry":"United States","MailingGeocodeAccuracy":null,"MailingLatitude":null,"MailingLongitude":null,"MailingPostalCode":"55428","MailingState":"Minnesota","MailingStreet":"3 6th Avenue","MasterRecordId":null,"Maximum_Room_Cost__c":null,"Membership_Number__c":"10008155","Minimum_Room_Cost__c":null,"MobilePhone":"612-350-2240","Name":"Sofia Rodriguez","Next_Check_in_Date__c":"2024-12-20","OtherAddress":null,"OtherCity":null,"OtherCountry":null,"OtherGeocodeAccuracy":null,"OtherLatitude":null,"OtherLongitude":null,"OtherPhone":null,"OtherPostalCode":null,"OtherState":null,"OtherStreet":null,"OwnerId":"005AU00000OrYkDYAV","Phone":null,"PhotoUrl":"/services/images/photo/003AU00001J7zDuYAJ","Photo_URL__c":"https://s3-us-west-2.amazonaws.com/dev-or-devrl-s3-bucket/sample-apps/coral-clouds/qswvurmhbo9w261ce","Preferred_Name__c":"Sofi","Pronouns":null,"ReportsToId":null,"Salutation":null,"SystemModstamp":"2025-09-09T13:59:53.000+0000","Title":null}}}},"executionLatency":196},{"function":{"name":"Issue_Resort_Credit_179AU00000038U5","input":{"amount":"100","contactid":"003AU00001J7zDuYAJ"},"output":{"creditId":"a01AU00000xbStAYAU"}},"executionLatency":254}]] outcome: >- The $100 resort credit has been successfully issued to Sofia Rodriguez. Let me know if there's anything else I can assist you with! a01AU00000xbStAYAU sessionId: 019933e1-7010-7b01-98d2-00689ea0ae63 topic: Customer_Service_Assistant_16jAU0000003zGf inputs: contextVariables: {} conversationHistory: [] utterance: >- I need a $100 resort credit issued to the customer with Membership Number 10008155? startTime: '2025-09-10T13:46:14.000Z' status: COMPLETED testNumber: 11 testResults: - actualValue: >- ['Get_Customer_From_Email_or_Membership_Number_179AU00000038U5', 'Issue_Resort_Credit_179AU00000038U5'] endTime: '2025-09-10T13:47:31.000Z' errorCode: 0 expectedValue: >- ['Get_Customer_From_Email_or_Membership_Number', 'Issue_Resort_Credit'] metricLabel: actions_assertion name: actions_assertion result: PASS score: 1 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - actualValue: >- The $100 resort credit has been successfully issued to Sofia Rodriguez. Let me know if there's anything else I can assist you with! a01AU00000xbStAYAU endTime: '2025-09-10T13:47:31.000Z' errorCode: 0 expectedValue: >- A $100 resort credit has been issued to your account, Sofia Rodriguez. metricExplainability: >- The BOT RESPONSE confirms the issuance of the resort credit but includes an irrelevant identifier (a01AU00000xbStAYAU) that is not part of the EXPECTED RESPONSE. It does not clearly state the membership number or provide the user's name, which is implied in the QUERY. Therefore, it partially aligns with the EXPECTED RESPONSE but includes unnecessary information. metricLabel: output_validation name: output_validation result: PASS score: 3 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - actualValue: Customer_Service_Assistant_16jAU0000003zGf endTime: '2025-09-10T13:47:31.000Z' errorCode: 0 expectedValue: Customer_Service_Assistant metricLabel: topic_assertion name: topic_assertion result: PASS score: 1 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:31.000Z' errorCode: 0 metricExplainability: >- The answer does not provide the required resort credit to the customer with Membership Number 10008155, and instead provides a generic message and an unknown code. The answer is very incomplete as it misses the crucial information about the resort credit. metricLabel: completeness name: completeness result: FAILURE score: 1 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:31.000Z' errorCode: 0 metricExplainability: >- The answer is generally understandable, but the second sentence is unclear and contains a grammar error. The phrase 'Let me know if there's anything else I can assist you with!' is not directly related to the main task of issuing a resort credit. metricLabel: coherence name: coherence result: PASS score: 3 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:31.000Z' errorCode: 0 metricLabel: conciseness name: conciseness result: PASS score: 5 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:31.000Z' errorCode: 0 metricLabel: output_latency_milliseconds name: output_latency_milliseconds score: 3803 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:27.000Z' generatedData: actionsSequence: '[]' citations: '[ ]' invokedActions: '[[]]' outcome: >- Could you provide the list of contacts you'd like to issue the $50 resort credits to? This can include their names, emails, or membership numbers. sessionId: 019933e1-701c-77b2-bcba-b8a3b8e1dbb2 topic: Customer_Service_Assistant_16jAU0000003zGf inputs: contextVariables: {} conversationHistory: [] utterance: I need to issue $50 resort credits to multiple contacts. startTime: '2025-09-10T13:46:14.000Z' status: COMPLETED testNumber: 12 testResults: - actualValue: '[]' endTime: '2025-09-10T13:47:27.000Z' errorCode: 0 expectedValue: '[]' metricLabel: actions_assertion name: actions_assertion result: PASS score: 1 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - actualValue: >- Could you provide the list of contacts you'd like to issue the $50 resort credits to? This can include their names, emails, or membership numbers. endTime: '2025-09-10T13:47:27.000Z' errorCode: 0 expectedValue: >- Please provide the emails or contact IDs of the contacts to issue the credits. metricExplainability: >- The BOT RESPONSE correctly prompts the user for the necessary information to achieve the goal of issuing resort credits. However, it slightly deviates from the EXPECTED RESPONSE by including names and membership numbers as options, which are not mentioned in the EXPECTED RESPONSE. This makes it slightly ambiguous, but it still aligns with the overall goal. metricLabel: output_validation name: output_validation result: PASS score: 4 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - actualValue: Customer_Service_Assistant_16jAU0000003zGf endTime: '2025-09-10T13:47:27.000Z' errorCode: 0 expectedValue: Customer_Service_Assistant metricLabel: topic_assertion name: topic_assertion result: PASS score: 1 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:27.000Z' errorCode: 0 metricExplainability: >- The answer is very incomplete as it does not provide the resort credits to the contacts, instead it asks for the list of contacts. metricLabel: completeness name: completeness result: FAILURE score: 1 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:27.000Z' errorCode: 0 metricExplainability: >- The answer is easy to understand, and the language is clear. There are no significant grammar errors that affect readability. metricLabel: coherence name: coherence result: PASS score: 4 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:27.000Z' errorCode: 0 metricLabel: conciseness name: conciseness result: PASS score: 5 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:27.000Z' errorCode: 0 metricLabel: output_latency_milliseconds name: output_latency_milliseconds score: 2158 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:48:29.000Z' generatedData: actionsSequence: >- ['Get_Customer_From_Email_or_Membership_Number_179AU00000038U5', 'Get_Customer_From_Email_or_Membership_Number_179AU00000038U5', 'Issue_Bulk_Resort_Credits_179AU00000038U5'] citations: '[ ]' invokedActions: >- [[{"function":{"name":"Get_Customer_From_Email_or_Membership_Number_179AU00000038U5","input":{"customerEmail":"nediheinsius@example.com"},"output":{"contactId":"003AU00001J7b4GYAR","contactRecord":{"sObjectInfo":{"apiName":"Contact","label":"Contact"},"id":"003AU00001J7b4GYAR","data":{"AccountId":null,"AssistantName":null,"AssistantPhone":null,"Average_Room_Cost__c":null,"Birthdate":"2042-05-03","CleanStatus":"Pending","ContactSource":null,"CreatedById":"005AU00000OrYkDYAV","CreatedDate":"2025-09-09T13:59:41.000+0000","Department":null,"Description":null,"DoNotCall":false,"Email":"nediheinsius@example.com","EmailBouncedDate":null,"EmailBouncedReason":null,"External_Id__c":"10003177","Fax":null,"FirstName":"Nedi","GenderIdentity":null,"Guest_Type__c":"Business and Pleasure Travelers","HasOptedOutOfEmail":false,"HasOptedOutOfFax":false,"HomePhone":null,"Id":"003AU00001J7b4GYAR","IndividualId":null,"Interest1__c":"Fitness & Exercise","Interest2__c":"Nightlife & Entertainment","Interest3__c":"Nature & Eco Tours","IsDeleted":false,"IsEmailBounced":false,"Jigsaw":null,"JigsawContactId":null,"Languages__c":null,"LastActivityDate":null,"LastCURequestDate":null,"LastCUUpdateDate":null,"LastModifiedById":"005AU00000OrYkDYAV","LastModifiedDate":"2025-09-09T13:59:53.000+0000","LastName":"Heinsius","LastReferencedDate":"2025-09-09T13:59:41.000+0000","LastViewedDate":"2025-09-09T13:59:41.000+0000","LeadSource":"Partnerships","Level__c":null,"Lifetime_Experience_Bookings__c":12.0,"Lifetime_Reservations__c":null,"Lifetime_Value__c":null,"MailingAddress":{"city":"Peoria","country":"United States","geocodeAccuracy":null,"latitude":null,"longitude":null,"postalCode":"85383","state":"Arizona","street":"75563 Farwell Drive"},"MailingCity":"Peoria","MailingCountry":"United States","MailingGeocodeAccuracy":null,"MailingLatitude":null,"MailingLongitude":null,"MailingPostalCode":"85383","MailingState":"Arizona","MailingStreet":"75563 Farwell Drive","MasterRecordId":null,"Maximum_Room_Cost__c":null,"Membership_Number__c":"10003177","Minimum_Room_Cost__c":null,"MobilePhone":"196-794-6794","Name":"Nedi Heinsius","Next_Check_in_Date__c":null,"OtherAddress":null,"OtherCity":null,"OtherCountry":null,"OtherGeocodeAccuracy":null,"OtherLatitude":null,"OtherLongitude":null,"OtherPhone":null,"OtherPostalCode":null,"OtherState":null,"OtherStreet":null,"OwnerId":"005AU00000OrYkDYAV","Phone":null,"PhotoUrl":"/services/images/photo/003AU00001J7b4GYAR","Photo_URL__c":null,"Preferred_Name__c":"Nedi","Pronouns":null,"ReportsToId":null,"Salutation":null,"SystemModstamp":"2025-09-09T13:59:53.000+0000","Title":null}}}},"executionLatency":208},{"function":{"name":"Get_Customer_From_Email_or_Membership_Number_179AU00000038U5","input":{"customerEmail":"fraydadowsing@example.com"},"output":{"contactId":"003AU00001J7b4FYAR","contactRecord":{"sObjectInfo":{"apiName":"Contact","label":"Contact"},"id":"003AU00001J7b4FYAR","data":{"AccountId":null,"AssistantName":null,"AssistantPhone":null,"Average_Room_Cost__c":null,"Birthdate":"1994-11-19","CleanStatus":"Pending","ContactSource":null,"CreatedById":"005AU00000OrYkDYAV","CreatedDate":"2025-09-09T13:59:41.000+0000","Department":null,"Description":null,"DoNotCall":false,"Email":"fraydadowsing@example.com","EmailBouncedDate":null,"EmailBouncedReason":null,"External_Id__c":"10008756","Fax":null,"FirstName":"Frayda","GenderIdentity":null,"Guest_Type__c":"Romance Retreaters","HasOptedOutOfEmail":false,"HasOptedOutOfFax":false,"HomePhone":null,"Id":"003AU00001J7b4FYAR","IndividualId":null,"Interest1__c":"Dining Experiences","Interest2__c":"Cultural Tours & Workshops","Interest3__c":"Family & Kids' Activities","IsDeleted":false,"IsEmailBounced":false,"Jigsaw":null,"JigsawContactId":null,"Languages__c":null,"LastActivityDate":null,"LastCURequestDate":null,"LastCUUpdateDate":null,"LastModifiedById":"005AU00000OrYkDYAV","LastModifiedDate":"2025-09-09T13:59:53.000+0000","LastName":"Dowsing","LastReferencedDate":"2025-09-09T14:19:58.000+0000","LastViewedDate":"2025-09-09T14:19:58.000+0000","LeadSource":"Online Travel Agent","Level__c":null,"Lifetime_Experience_Bookings__c":17.0,"Lifetime_Reservations__c":null,"Lifetime_Value__c":null,"MailingAddress":{"city":"Honolulu","country":"United States","geocodeAccuracy":null,"latitude":null,"longitude":null,"postalCode":"96815","state":"Hawaii","street":"94046 Grasskamp Junction"},"MailingCity":"Honolulu","MailingCountry":"United States","MailingGeocodeAccuracy":null,"MailingLatitude":null,"MailingLongitude":null,"MailingPostalCode":"96815","MailingState":"Hawaii","MailingStreet":"94046 Grasskamp Junction","MasterRecordId":null,"Maximum_Room_Cost__c":null,"Membership_Number__c":"10008756","Minimum_Room_Cost__c":null,"MobilePhone":"707-490-8673","Name":"Frayda Dowsing","Next_Check_in_Date__c":null,"OtherAddress":null,"OtherCity":null,"OtherCountry":null,"OtherGeocodeAccuracy":null,"OtherLatitude":null,"OtherLongitude":null,"OtherPhone":null,"OtherPostalCode":null,"OtherState":null,"OtherStreet":null,"OwnerId":"005AU00000OrYkDYAV","Phone":null,"PhotoUrl":"/services/images/photo/003AU00001J7b4FYAR","Photo_URL__c":null,"Preferred_Name__c":"Frayda","Pronouns":null,"ReportsToId":null,"Salutation":null,"SystemModstamp":"2025-09-09T13:59:53.000+0000","Title":null}}}},"executionLatency":217},{"function":{"name":"Issue_Bulk_Resort_Credits_179AU00000038U5","input":{"amount":"50","contactRecords":"[{\"sObjectInfo\":{\"apiName\":\"Contact\"},\"id\":\"003AU00001J7b4GYAR\",\"data\":{\"Id\":\"003AU00001J7b4GYAR\"}},{\"sObjectInfo\":{\"apiName\":\"Contact\"},\"id\":\"003AU00001J7b4FYAR\",\"data\":{\"Id\":\"003AU00001J7b4FYAR\"}}]"},"output":{"message":"Issued $50 resort credit to 2 customers."}},"executionLatency":321}]] outcome: >- The $50 resort credits have been successfully issued to both contacts. Let me know if there's anything else you need! Issued $50 resort credit to 2 customers. sessionId: 019933e2-5a71-7cbe-b8b0-002b6f876902 topic: Customer_Service_Assistant_16jAU0000003zGf inputs: contextVariables: {} conversationHistory: [] utterance: >- I need to issue $50 resort credits to two contacts. Their emails are nediheinsius@example.com and fraydadowsing@example.com. startTime: '2025-09-10T13:46:14.000Z' status: COMPLETED testNumber: 13 testResults: - actualValue: >- ['Get_Customer_From_Email_or_Membership_Number_179AU00000038U5', 'Get_Customer_From_Email_or_Membership_Number_179AU00000038U5', 'Issue_Bulk_Resort_Credits_179AU00000038U5'] endTime: '2025-09-10T13:48:31.000Z' errorCode: 0 expectedValue: >- ['Get_Customer_From_Email_or_Membership_Number', 'Get_Customer_From_Email_or_Membership_Number', 'Issue_Bulk_Resort_Credits'] metricLabel: actions_assertion name: actions_assertion result: PASS score: 1 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - actualValue: >- The $50 resort credits have been successfully issued to both contacts. Let me know if there's anything else you need! Issued $50 resort credit to 2 customers. endTime: '2025-09-10T13:48:31.000Z' errorCode: 0 expectedValue: >- Bulk resort credits of $50 have been issued to the specified contacts. metricExplainability: >- BOT RESPONSE accurately confirms the issuance of $50 resort credits to the specified contacts, aligning well with the EXPECTED RESPONSE. It is clear and precise, providing the necessary information without irrelevant details. metricLabel: output_validation name: output_validation result: PASS score: 5 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - actualValue: Customer_Service_Assistant_16jAU0000003zGf endTime: '2025-09-10T13:48:31.000Z' errorCode: 0 expectedValue: Customer_Service_Assistant metricLabel: topic_assertion name: topic_assertion result: PASS score: 1 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:48:31.000Z' errorCode: 0 metricExplainability: >- The answer provides the correct information about the resort credits being issued to two contacts, and it also includes additional information about the process, which is not requested. However, it does not provide any details about the specific emails of the contacts, which is requested in the context. metricLabel: completeness name: completeness result: PASS score: 4 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:48:31.000Z' errorCode: 0 metricExplainability: >- The answer is easy to understand, free of significant grammar errors, and flows well when read by itself. The answer is concise and clear, making it easy to understand the outcome of the task. metricLabel: coherence name: coherence result: PASS score: 4 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:48:31.000Z' errorCode: 0 metricLabel: conciseness name: conciseness result: PASS score: 3 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:48:31.000Z' errorCode: 0 metricLabel: output_latency_milliseconds name: output_latency_milliseconds score: 4851 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/connect/conversation/{conversationIdentifier}/entries: get: tags: - Conversation - Entries - Get summary: Salesforce Get Conversation Entries description: >- Gets in-app messaging conversation entries. https://developer.salesforce.com/docs/atlas.en-us.chatterapi.meta/chatterapi/connect_resources_conversation_entries.htm operationId: Getconversationentries parameters: - name: conversationIdentifier in: path description: Conversation identifier UUID required: true schema: type: string example: example_value responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Fri, 10 Jan 2025 11:40:26 GMT Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked Connection: content: text/plain: schema: type: string contentMediaType: text/plain example: keep-alive Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=246/15000 Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff Server: content: text/plain: schema: type: string contentMediaType: text/plain example: sfdcedge X-SFDC-Request-Id: content: text/plain: schema: type: string contentMediaType: text/plain example: 5a8f2802ad688ae208710a5df1950663 X-Request-Id: content: text/plain: schema: type: string contentMediaType: text/plain example: 5a8f2802ad688ae208710a5df1950663 X-SFDC-Edge-Cache: content: text/plain: schema: type: string contentMediaType: text/plain example: MISS content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/Getconversationentries' - examples: - conversationEntries: - clientDuration: 0 clientTimestamp: 1736508089610 identifier: 06a1182e-d932-4178-9864-6de5b7b3d3fd messageText: >- The Canyon Zip Line Excursion is an exhilarating adventure where you can soar over deep canyons and lush forest canopies. Here are some details: - Description: Soar over deep canyons and lush forest canopies on our thrilling zip line tour. - Activity Level: High - Type: Adventure Activities Would you like to know the available sessions for this excursion? If so, please provide the date you're interested in. relatedRecords: [] sender: appType: chatbot role: Chatbot subject: 0XxKj000000xpJh serverReceivedTimestamp: 1736508089657 - clientDuration: 0 clientTimestamp: 1736508081161 identifier: 414e8b7b-af09-4349-beee-79806657495c messageText: sofiarodriguez@example.com and 10008155 relatedRecords: - 0MwKj000007sdiM sender: appType: iamessage role: EndUser subject: >- v2/iamessage/UNAUTH/NA/uid:cee38146-34f1-41a2-a96c-a5c4c9b8b62b serverReceivedTimestamp: 1736508081203 - clientDuration: 0 clientTimestamp: 1736508041619 identifier: 981246f2-7be4-4fa4-a8ea-2bb134c7f6ff messageText: >- Could you please provide your email address and membership number so I can look up your details and get the information for you? relatedRecords: [] sender: appType: chatbot role: Chatbot subject: 0XxKj000000xpJh serverReceivedTimestamp: 1736508041627 - clientDuration: 0 clientTimestamp: 1736508034543 identifier: 7db791fe-1f23-46d7-b685-7ad7b3f56f9d messageText: >- show me more information about the canyon zip line excursion relatedRecords: - 0MwKj000007sdiM sender: appType: iamessage role: EndUser subject: >- v2/iamessage/UNAUTH/NA/uid:cee38146-34f1-41a2-a96c-a5c4c9b8b62b serverReceivedTimestamp: 1736508034755 - clientDuration: 0 clientTimestamp: 1736508015523 identifier: e9762707-0b3c-4656-8b91-9f10d04aa313 messageText: >- Hi, I'm an AI service assistant. How can I help you? relatedRecords: [] sender: appType: chatbot role: Chatbot subject: 0XxKj000000xpJh serverReceivedTimestamp: 1736508015579 contentMediaType: application/json;charset=UTF-8 example: conversationEntries: - clientDuration: 0 clientTimestamp: 1736508089610 identifier: 06a1182e-d932-4178-9864-6de5b7b3d3fd messageText: >- The Canyon Zip Line Excursion is an exhilarating adventure where you can soar over deep canyons and lush forest canopies. Here are some details: - Description: Soar over deep canyons and lush forest canopies on our thrilling zip line tour. - Activity Level: High - Type: Adventure Activities Would you like to know the available sessions for this excursion? If so, please provide the date you're interested in. relatedRecords: [] sender: appType: chatbot role: Chatbot subject: 0XxKj000000xpJh serverReceivedTimestamp: 1736508089657 - clientDuration: 0 clientTimestamp: 1736508081161 identifier: 414e8b7b-af09-4349-beee-79806657495c messageText: sofiarodriguez@example.com and 10008155 relatedRecords: - 0MwKj000007sdiM sender: appType: iamessage role: EndUser subject: >- v2/iamessage/UNAUTH/NA/uid:cee38146-34f1-41a2-a96c-a5c4c9b8b62b serverReceivedTimestamp: 1736508081203 - clientDuration: 0 clientTimestamp: 1736508041619 identifier: 981246f2-7be4-4fa4-a8ea-2bb134c7f6ff messageText: >- Could you please provide your email address and membership number so I can look up your details and get the information for you? relatedRecords: [] sender: appType: chatbot role: Chatbot subject: 0XxKj000000xpJh serverReceivedTimestamp: 1736508041627 - clientDuration: 0 clientTimestamp: 1736508034543 identifier: 7db791fe-1f23-46d7-b685-7ad7b3f56f9d messageText: >- show me more information about the canyon zip line excursion relatedRecords: - 0MwKj000007sdiM sender: appType: iamessage role: EndUser subject: >- v2/iamessage/UNAUTH/NA/uid:cee38146-34f1-41a2-a96c-a5c4c9b8b62b serverReceivedTimestamp: 1736508034755 - clientDuration: 0 clientTimestamp: 1736508015523 identifier: e9762707-0b3c-4656-8b91-9f10d04aa313 messageText: Hi, I'm an AI service assistant. How can I help you? relatedRecords: [] sender: appType: chatbot role: Chatbot subject: 0XxKj000000xpJh serverReceivedTimestamp: 1736508015579 deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/smartdatadiscovery/predict: post: tags: - Predict summary: Salesforce Predict description: Get available prediction definitions. operationId: Predict parameters: [] requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/PredictRequest' - examples: - predictionDefinition: type: RawData columnNames: - Quantity - Category - Sub_Category - Sales - Profit_per_Order rows: - - '2' - Furniture - Chairs - '300' - '10' contentMediaType: application/json example: predictionDefinition: type: RawData columnNames: - Quantity - Category - Sub_Category - Sales - Profit_per_Order rows: - - '2' - Furniture - Chairs - '300' - '10' required: true responses: '201': description: Created headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Thu, 04 Mar 2021 13:53:39 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=31536002; includeSubDomains Expect-CT: content: text/plain: schema: type: string contentMediaType: text/plain example: >- max-age=86400, report-uri="https://a.forcesslreports.com/Expect-CT-report/00D5Y000001crJvm" X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/Predict' - examples: - predictionDefinition: 1OR5Y0000010ws8 predictions: - model: id: 1Ot5Y0000010wzNSAQ prediction: middleValues: [] total: 88.5249425554759 prescriptions: [] status: Success settings: maxMiddleValues: 0 maxPrescriptions: 0 prescriptionImpactPercentage: 0 contentMediaType: application/json;charset=UTF-8 example: predictionDefinition: 1OR5Y0000010ws8 predictions: - model: id: 1Ot5Y0000010wzNSAQ prediction: middleValues: [] total: 88.5249425554759 prescriptions: [] status: Success settings: maxMiddleValues: 0 maxPrescriptions: 0 prescriptionImpactPercentage: 0 deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/smartdatadiscovery/predictionDefinitions: get: tags: - Definitions summary: Salesforce Prediction Definitions description: Get available prediction definitions. operationId: Predictiondefinitions parameters: [] responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Thu, 04 Mar 2021 13:45:15 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=31536002; includeSubDomains Expect-CT: content: text/plain: schema: type: string contentMediaType: text/plain example: >- max-age=86400, report-uri="https://a.forcesslreports.com/Expect-CT-report/00D5Y000001crJvm" X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/Predictiondefinitions' - examples: - nextPageUrl: predictionDefinitions: - countOfActiveModels: 1 countOfModels: 1 createdBy: id: 0055Y00000DWwAIQA1 name: Philippe Ozil profilePhotoUrl: >- https://crm-analytics-deorg-dev-ed--c.documentforce.com/profilephoto/005/T createdDate: '2021-03-04T13:37:02.000Z' id: 1OR5Y0000010ws8WAA label: Sales_per_Customer lastModifiedBy: id: 0055Y00000DWwAIQA1 name: Philippe Ozil profilePhotoUrl: >- https://crm-analytics-deorg-dev-ed--c.documentforce.com/profilephoto/005/T lastModifiedDate: '2021-03-04T13:37:02.000Z' modelsUrl: >- /services/data/v51.0/smartdatadiscovery/predictiondefinitions/1OR5Y0000010ws8WAA/models name: Sales_per_Customer outcome: goal: Maximize label: Sales per Customer name: Sales_per_Customer predictionType: Regression status: Enabled url: >- /services/data/v51.0/smartdatadiscovery/predictiondefinitions/1OR5Y0000010ws8WAA totalSize: 1 url: >- /services/data/v51.0/smartdatadiscovery/predictiondefinitions?pageSize=25 contentMediaType: application/json;charset=UTF-8 example: nextPageUrl: predictionDefinitions: - countOfActiveModels: 1 countOfModels: 1 createdBy: id: 0055Y00000DWwAIQA1 name: Philippe Ozil profilePhotoUrl: >- https://crm-analytics-deorg-dev-ed--c.documentforce.com/profilephoto/005/T createdDate: '2021-03-04T13:37:02.000Z' id: 1OR5Y0000010ws8WAA label: Sales_per_Customer lastModifiedBy: id: 0055Y00000DWwAIQA1 name: Philippe Ozil profilePhotoUrl: >- https://crm-analytics-deorg-dev-ed--c.documentforce.com/profilephoto/005/T lastModifiedDate: '2021-03-04T13:37:02.000Z' modelsUrl: >- /services/data/v51.0/smartdatadiscovery/predictiondefinitions/1OR5Y0000010ws8WAA/models name: Sales_per_Customer outcome: goal: Maximize label: Sales per Customer name: Sales_per_Customer predictionType: Regression status: Enabled url: >- /services/data/v51.0/smartdatadiscovery/predictiondefinitions/1OR5Y0000010ws8WAA totalSize: 1 url: >- /services/data/v51.0/smartdatadiscovery/predictiondefinitions?pageSize=25 deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/smartdatadiscovery/predictionDefinitions/{PREDICTION_DEFINITION_ID}: get: tags: - Definition summary: Salesforce Prediction Definition Metadata description: Get available prediction definitions. operationId: Predictiondefinitionmetadata parameters: - name: PREDICTION_DEFINITION_ID in: path description: '' required: true schema: type: string example: '500123' responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Thu, 04 Mar 2021 13:45:58 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=31536002; includeSubDomains Expect-CT: content: text/plain: schema: type: string contentMediaType: text/plain example: >- max-age=86400, report-uri="https://a.forcesslreports.com/Expect-CT-report/00D5Y000001crJvm" X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/Predictiondefinitionmetadata' - examples: - countOfActiveModels: 1 countOfModels: 1 createdBy: id: 0055Y00000DWwAIQA1 name: Philippe Ozil profilePhotoUrl: >- https://crm-analytics-deorg-dev-ed--c.documentforce.com/profilephoto/005/T createdDate: '2021-03-04T13:37:02.000Z' id: 1OR5Y0000010ws8WAA label: Sales_per_Customer lastModifiedBy: id: 0055Y00000DWwAIQA1 name: Philippe Ozil profilePhotoUrl: >- https://crm-analytics-deorg-dev-ed--c.documentforce.com/profilephoto/005/T lastModifiedDate: '2021-03-04T13:37:02.000Z' modelsUrl: >- /services/data/v51.0/smartdatadiscovery/predictiondefinitions/1OR5Y0000010ws8WAA/models name: Sales_per_Customer outcome: goal: Maximize label: Sales per Customer name: Sales_per_Customer predictionType: Regression status: Enabled url: >- /services/data/v51.0/smartdatadiscovery/predictiondefinitions/1OR5Y0000010ws8WAA contentMediaType: application/json;charset=UTF-8 example: countOfActiveModels: 1 countOfModels: 1 createdBy: id: 0055Y00000DWwAIQA1 name: Philippe Ozil profilePhotoUrl: >- https://crm-analytics-deorg-dev-ed--c.documentforce.com/profilephoto/005/T createdDate: '2021-03-04T13:37:02.000Z' id: 1OR5Y0000010ws8WAA label: Sales_per_Customer lastModifiedBy: id: 0055Y00000DWwAIQA1 name: Philippe Ozil profilePhotoUrl: >- https://crm-analytics-deorg-dev-ed--c.documentforce.com/profilephoto/005/T lastModifiedDate: '2021-03-04T13:37:02.000Z' modelsUrl: >- /services/data/v51.0/smartdatadiscovery/predictiondefinitions/1OR5Y0000010ws8WAA/models name: Sales_per_Customer outcome: goal: Maximize label: Sales per Customer name: Sales_per_Customer predictionType: Regression status: Enabled url: >- /services/data/v51.0/smartdatadiscovery/predictiondefinitions/1OR5Y0000010ws8WAA deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/smartdatadiscovery/predictionDefinitions/{PREDICTION_DEFINITION_ID}/models: get: tags: - Models summary: Salesforce Prediction Models description: Get available prediction definitions. operationId: Predictionmodels parameters: - name: PREDICTION_DEFINITION_ID in: path description: '' required: true schema: type: string example: '500123' responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Thu, 04 Mar 2021 13:48:31 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=31536002; includeSubDomains Expect-CT: content: text/plain: schema: type: string contentMediaType: text/plain example: >- max-age=86400, report-uri="https://a.forcesslreports.com/Expect-CT-report/00D5Y000001crJvm" X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/Predictionmodels' - examples: - models: - createdBy: id: 0055Y00000DWwAIQA1 name: Philippe Ozil profilePhotoUrl: >- https://crm-analytics-deorg-dev-ed--c.documentforce.com/profilephoto/005/T createdDate: '2021-03-04T13:37:03.000Z' fieldMappingList: - modelField: label: Category name: Category type: Text - modelField: label: Sales name: Sales type: Number - modelField: label: Profit per Order name: Profit_per_Order type: Number - modelField: label: Sub-Category name: Sub_Category type: Text - modelField: label: Quantity name: Quantity type: Number filters: [] historyUrl: >- /services/data/v51.0/smartdatadiscovery/predictiondefinitions/1OR5Y0000010ws8WAA/models/1Ot5Y0000010wzNSAQ/histories id: 1Ot5Y0000010wzNSAQ isRefreshEnabled: false label: superstore-orders lastModifiedBy: id: 0055Y00000DWwAIQA1 name: Philippe Ozil profilePhotoUrl: >- https://crm-analytics-deorg-dev-ed--c.documentforce.com/profilephoto/005/T lastModifiedDate: '2021-03-04T13:37:03.000Z' model: id: 1OT5Y0000010zlzWAA modelType: Regression name: superstore_orders predictionDefinitionUrl: >- /services/data/v51.0/smartdatadiscovery/predictiondefinitions/1OR5Y0000010ws8WAA prescribableFields: - customDefinitions: [] field: label: Quantity name: Quantity type: Number sortOrder: 0 status: Enabled url: >- /services/data/v51.0/smartdatadiscovery/predictiondefinitions/1OR5Y0000010ws8WAA/models/1Ot5Y0000010wzNSAQ totalSize: 1 url: >- /services/data/v51.0/smartdatadiscovery/predictiondefinitions/1OR5Y0000010ws8WAA/models contentMediaType: application/json;charset=UTF-8 example: models: - createdBy: id: 0055Y00000DWwAIQA1 name: Philippe Ozil profilePhotoUrl: >- https://crm-analytics-deorg-dev-ed--c.documentforce.com/profilephoto/005/T createdDate: '2021-03-04T13:37:03.000Z' fieldMappingList: - modelField: label: Category name: Category type: Text - modelField: label: Sales name: Sales type: Number - modelField: label: Profit per Order name: Profit_per_Order type: Number - modelField: label: Sub-Category name: Sub_Category type: Text - modelField: label: Quantity name: Quantity type: Number filters: [] historyUrl: >- /services/data/v51.0/smartdatadiscovery/predictiondefinitions/1OR5Y0000010ws8WAA/models/1Ot5Y0000010wzNSAQ/histories id: 1Ot5Y0000010wzNSAQ isRefreshEnabled: false label: superstore-orders lastModifiedBy: id: 0055Y00000DWwAIQA1 name: Philippe Ozil profilePhotoUrl: >- https://crm-analytics-deorg-dev-ed--c.documentforce.com/profilephoto/005/T lastModifiedDate: '2021-03-04T13:37:03.000Z' model: id: 1OT5Y0000010zlzWAA modelType: Regression name: superstore_orders predictionDefinitionUrl: >- /services/data/v51.0/smartdatadiscovery/predictiondefinitions/1OR5Y0000010ws8WAA prescribableFields: - customDefinitions: [] field: label: Quantity name: Quantity type: Number sortOrder: 0 status: Enabled url: >- /services/data/v51.0/smartdatadiscovery/predictiondefinitions/1OR5Y0000010ws8WAA/models/1Ot5Y0000010wzNSAQ totalSize: 1 url: >- /services/data/v51.0/smartdatadiscovery/predictiondefinitions/1OR5Y0000010ws8WAA/models deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/tooling/sobjects/PlatformEventChannel: post: tags: - Channel - Create summary: Salesforce Create Channel operationId: Createchannel parameters: [] requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/CreatechannelRequest' - examples: - FullName: Account_Channel__chn Metadata: channelType: data label: Account Channel contentMediaType: application/json example: FullName: Account_Channel__chn Metadata: channelType: data label: Account Channel required: true responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/tooling/sobjects/PlatformEventChannel/{PLATFORM_EVENT_CHANNEL_ID}: patch: tags: - Channel - Update summary: Salesforce Update Channel operationId: Updatechannel parameters: - name: PLATFORM_EVENT_CHANNEL_ID in: path description: '' required: true schema: type: string examples: - 0YLRM0000004DlP4AU example: '500123' requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/UpdatechannelRequest' - examples: - FullName: Account_Channel__chn Metadata: channelType: data label: Account Channel 2 urls: contentMediaType: application/json example: FullName: Account_Channel__chn Metadata: channelType: data label: Account Channel 2 urls: required: true responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK get: tags: - Channel - Events - Get summary: Salesforce Get Event Channel operationId: Geteventchannel parameters: - name: PLATFORM_EVENT_CHANNEL_ID in: path description: '' required: true schema: type: string examples: - 0YL4H0000004C93WAE example: '500123' responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 03 Jul 2023 13:15:59 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=7/15000 Last-Modified: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 11 Jan 2021 19:33:54 GMT Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/Geteventchannel' - examples: - attributes: type: PlatformEventChannel url: >- /services/data/v58.0/tooling/sobjects/PlatformEventChannel/0YL4H0000004C93WAE Id: 0YL4H0000004C93WAE IsDeleted: false DeveloperName: HREvents Language: en_US MasterLabel: Custom Channel for the HR App NamespacePrefix: ManageableState: unmanaged CreatedDate: 2021-01-11T19:33:54.000+0000 CreatedById: 00558000000yFyDAAU LastModifiedDate: 2021-01-11T19:33:54.000+0000 LastModifiedById: 00558000000yFyDAAU SystemModstamp: 2021-01-11T19:33:54.000+0000 ChannelType: data FullName: HREvents__chn Metadata: channelType: data label: Custom Channel for the HR App urls: contentMediaType: application/json;charset=UTF-8 example: attributes: type: PlatformEventChannel url: >- /services/data/v58.0/tooling/sobjects/PlatformEventChannel/0YL4H0000004C93WAE Id: 0YL4H0000004C93WAE IsDeleted: false DeveloperName: HREvents Language: en_US MasterLabel: Custom Channel for the HR App NamespacePrefix: ManageableState: unmanaged CreatedDate: 2021-01-11T19:33:54.000+0000 CreatedById: 00558000000yFyDAAU LastModifiedDate: 2021-01-11T19:33:54.000+0000 LastModifiedById: 00558000000yFyDAAU SystemModstamp: 2021-01-11T19:33:54.000+0000 ChannelType: data FullName: HREvents__chn Metadata: channelType: data label: Custom Channel for the HR App urls: deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK delete: tags: - Channel - Deletes - Events summary: Salesforce Delete Event Channel operationId: Deleteeventchannel parameters: - name: PLATFORM_EVENT_CHANNEL_ID in: path description: '' required: true schema: type: string example: '500123' responses: '204': description: No Content headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 06 Dec 2023 16:56:00 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff Content-Security-Policy: content: text/plain: schema: type: string contentMediaType: text/plain example: upgrade-insecure-requests X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=303/15000 content: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/tooling/sobjects/PlatformEventChannelMember/{PLATFORM_EVENT_CHANNEL_MEMBER_ID}: patch: tags: - Add - Channel - Member summary: Salesforce Add Enriched Fields to Channel Member operationId: Addenrichedfieldstochannelmember parameters: - name: PLATFORM_EVENT_CHANNEL_MEMBER_ID in: path description: '' required: true schema: type: string example: '500123' requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/AddenrichedfieldstochannelmemberRequest' - examples: - FullName: Account_Channel_chn_AccountChangeEvent Metadata: enrichedFields: - name: External_Account_ID__c eventChannel: Account_Channel__chn selectedEntity: AccountChangeEvent contentMediaType: application/json example: FullName: Account_Channel_chn_AccountChangeEvent Metadata: enrichedFields: - name: External_Account_ID__c eventChannel: Account_Channel__chn selectedEntity: AccountChangeEvent required: true responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK get: tags: - Channel - Get - Member summary: Salesforce Get Channel Member operationId: Getchannelmember parameters: - name: PLATFORM_EVENT_CHANNEL_MEMBER_ID in: path description: '' required: true schema: type: string example: '500123' responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 03 Jul 2023 13:17:20 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=9/15000 Last-Modified: content: text/plain: schema: type: string contentMediaType: text/plain example: Fri, 30 Dec 2022 15:10:39 GMT Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/Getchannelmember' - examples: - attributes: type: PlatformEventChannelMember url: >- /services/data/v58.0/tooling/sobjects/PlatformEventChannelMember/0v84H000000PAvIQAW Id: 0v84H000000PAvIQAW IsDeleted: false DeveloperName: ChangeEvents_ContactChangeEvent Language: en_US MasterLabel: ContactChangeEvent NamespacePrefix: ManageableState: unmanaged CreatedDate: 2022-12-30T15:10:39.000+0000 CreatedById: 00558000000yFyDAAU LastModifiedDate: 2022-12-30T15:10:39.000+0000 LastModifiedById: 00558000000yFyDAAU SystemModstamp: 2022-12-30T15:10:39.000+0000 FullName: ChangeEvents_ContactChangeEvent Metadata: enrichedFields: [] eventChannel: ChangeEvents filterExpression: selectedEntity: ContactChangeEvent urls: EventChannel: ChangeEvents SelectedEntity: ContactChangeEvent FilterExpression: contentMediaType: application/json;charset=UTF-8 example: attributes: type: PlatformEventChannelMember url: >- /services/data/v58.0/tooling/sobjects/PlatformEventChannelMember/0v84H000000PAvIQAW Id: 0v84H000000PAvIQAW IsDeleted: false DeveloperName: ChangeEvents_ContactChangeEvent Language: en_US MasterLabel: ContactChangeEvent NamespacePrefix: ManageableState: unmanaged CreatedDate: 2022-12-30T15:10:39.000+0000 CreatedById: 00558000000yFyDAAU LastModifiedDate: 2022-12-30T15:10:39.000+0000 LastModifiedById: 00558000000yFyDAAU SystemModstamp: 2022-12-30T15:10:39.000+0000 FullName: ChangeEvents_ContactChangeEvent Metadata: enrichedFields: [] eventChannel: ChangeEvents filterExpression: selectedEntity: ContactChangeEvent urls: EventChannel: ChangeEvents SelectedEntity: ContactChangeEvent FilterExpression: deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK delete: tags: - Channel - Deletes - Member summary: Salesforce Delete Channel Member operationId: Deletechannelmember parameters: - name: PLATFORM_EVENT_CHANNEL_MEMBER_ID in: path description: '' required: true schema: type: string examples: - 'null' example: '500123' responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/tooling/sobjects/PlatformEventChannelMember: post: tags: - Channel - Create - Member summary: Salesforce Create Channel Member operationId: Createchannelmember parameters: [] requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/CreatechannelmemberRequest' - examples: - FullName: Account_Channel_chn_AccountChangeEvent Metadata: eventChannel: Account_Channel__chn selectedEntity: AccountChangeEvent contentMediaType: application/json example: FullName: Account_Channel_chn_AccountChangeEvent Metadata: eventChannel: Account_Channel__chn selectedEntity: AccountChangeEvent required: true responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/tooling/sobjects/PlatformEventChannel/describe: get: tags: - Channel - Describe - Events summary: Salesforce Describe Event Channel operationId: Describeeventchannel parameters: [] responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 03 Jul 2023 13:16:20 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=7/15000 ETag: content: text/plain: schema: type: string contentMediaType: text/plain example: '"2aa989f9--gzip"' Last-Modified: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 03 Jul 2023 13:05:05 GMT Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: $ref: '#/components/schemas/Describeeventchannel' examples: Describeeventchannel200Example: summary: Default Describeeventchannel 200 response x-microcks-default: true value: actionOverrides: - example_value activateable: true associateEntityType: example_value associateParentEntity: example_value childRelationships: - example_value compactLayoutable: true createable: true custom: true customSetting: true deepCloneable: true defaultImplementation: example_value deletable: true deprecatedAndHidden: true extendedBy: example_value extendsInterfaces: example_value feedEnabled: true fields: - aggregatable: true aiPredictionField: true autoNumber: true byteLength: 10 calculated: true calculatedFormula: example_value cascadeDelete: true caseSensitive: true compoundFieldName: example_value controllerName: example_value createable: true custom: true defaultValue: example_value defaultValueFormula: example_value defaultedOnCreate: true dependentPicklist: true deprecatedAndHidden: true digits: 10 displayLocationInDecimal: true encrypted: true externalId: '500123' extraTypeInfo: example_value filterable: true filteredLookupInfo: example_value formulaTreatNullNumberAsZero: true groupable: true highScaleNumber: true htmlFormatted: true idLookup: true inlineHelpText: example_value label: Example Title length: 10 mask: example_value maskType: example_value name: Example Title nameField: true namePointing: true nillable: true permissionable: true picklistValues: {} polymorphicForeignKey: true precision: 10 queryByDistance: true referenceTargetField: example_value referenceTo: {} relationshipName: example_value relationshipOrder: example_value restrictedDelete: true restrictedPicklist: true scale: 10 searchPrefilterable: true soapType: example_value sortable: true type: example_value unique: true updateable: true writeRequiresMasterRead: true hasSubtypes: true implementedBy: example_value implementsInterfaces: example_value isInterface: true isSubtype: true keyPrefix: example_value label: Example Title labelPlural: example_value layoutable: true listviewable: example_value lookupLayoutable: example_value mergeable: true mruEnabled: true name: Example Title namedLayoutInfos: - example_value networkScopeFieldName: example_value queryable: true recordTypeInfos: - example_value replicateable: true retrieveable: true searchLayoutable: true searchable: true sobjectDescribeOption: example_value supportedScopes: - label: Example Title name: Example Title triggerable: true undeletable: true updateable: true urls: rowTemplate: example_value describe: example_value sobject: example_value deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/sobjects/{EventApiName}: post: tags: - Events - Publish - Single summary: Salesforce Publish Single Event operationId: Publishsingleevent parameters: - name: EventApiName in: path description: '' required: true schema: type: string examples: - Carbon_Comparison__e example: example_value requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/PublishsingleeventRequest' - examples: - Annual_Mileage__c: 12000 Current_Vehicle__c: Fast car Model_Year__c: 2019 contentMediaType: application/json example: Annual_Mileage__c: 12000 Current_Vehicle__c: Fast car Model_Year__c: 2019 required: true responses: '201': description: Created headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 03 Jul 2023 13:18:20 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=16/15000 Location: content: text/plain: schema: type: string contentMediaType: text/plain example: /services/data/v58.0/sobjects/Sample__e/e00xx0000000001AAA Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/Publishsingleevent' - examples: - id: e00xx0000000001AAA success: true errors: - statusCode: OPERATION_ENQUEUED message: 234995b6-53b6-4887-93fc-ecd0fac8b36c fields: [] contentMediaType: application/json;charset=UTF-8 example: id: e00xx0000000001AAA success: true errors: - statusCode: OPERATION_ENQUEUED message: 234995b6-53b6-4887-93fc-ecd0fac8b36c fields: [] deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /Soap/u/64.0: post: tags: - Call - Events - Multiple - Publish - Soap summary: Salesforce Publish Multiple Events With Soap Call operationId: PublishmultipleeventswithSOAPcall parameters: - name: Content-Type in: header description: '' required: true schema: const: text/xml type: string examples: - text/xml example: example_value - name: charset in: header description: '' required: true schema: type: string examples: - UTF-8 example: example_value - name: SOAPAction in: header description: '' required: true schema: type: string examples: - create example: example_value - name: Accept in: header description: '' required: true schema: type: string examples: - text/xml example: example_value requestBody: description: '' content: application/xml: schema: allOf: - $ref: '#/components/schemas/Envelope' - xml: name: Envelope attribute: false wrapped: false examples: - |- Carbon_Comparison__e 12000 Fast car 1 2019 Carbon_Comparison__e 12000 Fast car 2 2019 contentMediaType: application/xml example: |- Carbon_Comparison__e 12000 Fast car 1 2019 Carbon_Comparison__e 12000 Fast car 2 2019 required: true responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/tooling/sobjects/EventRelayConfig/describe: get: tags: - Describe - Events - Relay summary: Salesforce Describe Event Relay operationId: Describeeventrelay parameters: [] responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/tooling/sobjects/EventRelayConfig: post: tags: - Create - Events - Relay summary: Salesforce Create Event Relay operationId: Createeventrelay parameters: [] requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/CreateeventrelayRequest' - examples: - FullName: MyEventRelay Metadata: eventChannel: Carbon_Comparison_Channel__chn destinationResourceName: callout:MyNamedCredential label: My Event Relay relayOption: '{"ReplayRecovery":"LATEST"}' contentMediaType: application/json example: FullName: MyEventRelay Metadata: eventChannel: Carbon_Comparison_Channel__chn destinationResourceName: callout:MyNamedCredential label: My Event Relay relayOption: '{"ReplayRecovery":"LATEST"}' required: true responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/tooling/sobjects/EventRelayConfig/{EVENT_RELAY_CONFIG_ID}: delete: tags: - Deletes - Events - Relay summary: Salesforce Delete Event Relay operationId: Deleteeventrelay parameters: - name: EVENT_RELAY_CONFIG_ID in: path description: '' required: true schema: type: string examples: - 'null' example: '500123' responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK get: tags: - Events - Get - Relay summary: Salesforce Get Event Relay operationId: Geteventrelay parameters: - name: EVENT_RELAY_CONFIG_ID in: path description: '' required: true schema: type: string examples: - 7k2RM000000008ZYAQ example: '500123' responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK patch: tags: - Change - Events - Relay - State summary: Salesforce Change Event Relay State operationId: Changeeventrelaystate parameters: - name: EVENT_RELAY_CONFIG_ID in: path description: '' required: true schema: type: string example: '500123' - name: SOAPAction in: header description: '' required: true schema: type: string examples: - '""' example: example_value - name: Authorization in: header description: '' required: true schema: type: string examples: - 'Bearer ' example: example_value requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/ChangeeventrelaystateRequest' - examples: - Metadata: state: RUN contentMediaType: application/json example: Metadata: state: RUN required: true responses: '200': description: '' headers: {} deprecated: false security: [] servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/query: get: tags: - Events - Feedback - Items - Lists - Relay summary: Salesforce List Event Relay Feedback Items operationId: Listeventrelayfeedbackitems parameters: - name: q in: query description: '' required: true style: form explode: true schema: type: string examples: - SELECT FIELDS(ALL) FROM EventRelayFeedback LIMIT 200 example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/sobjects/EventRelayFeedback/{EVENT_RELAY_FEEDBACK_ID}: get: tags: - Events - Feedback - Get - Relay summary: Salesforce Get Event Relay Feedback operationId: Geteventrelayfeedback parameters: - name: EVENT_RELAY_FEEDBACK_ID in: path description: '' required: true schema: type: string examples: - 7k4RM000000008AYAQ example: '500123' responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/sobjects/EventRelayFeedback/describe: get: tags: - Describe - Events - Feedback summary: Salesforce Describe Event Felay Feedback operationId: Describeeventfelayfeedback parameters: [] responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/event/eventSchema/{SCHEMA_ID}: get: tags: - Events - Identifiers - Platform - Schema summary: Salesforce Platform Event Schema by Schema Id description: >- Set, reset, or get information about a user password. This resource is available in REST API version 24.0 and later. operationId: PlatformEventSchemabySchemaID parameters: - name: SCHEMA_ID in: path description: '' required: true schema: type: string example: '500123' - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/sobjects/{EVENT_NAME}/eventSchema: get: tags: - Events - Names - Platform - Schema summary: Salesforce Platform Event Schema by Event Name description: >- Set, reset, or get information about a user password. This resource is available in REST API version 24.0 and later. operationId: PlatformEventSchemabyEventName parameters: - name: EVENT_NAME in: path description: API Name of the event required: true schema: type: string example: example_value - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 03 Jul 2023 13:06:08 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=2/15000 Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: $ref: '#/components/schemas/PlatformEventSchemabyEventName' examples: Platformeventschemabyeventname200Example: summary: Default PlatformEventSchemabyEventName 200 response x-microcks-default: true value: name: Example Title namespace: example_value type: example_value fields: - name: Example Title type: example_value deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/tooling/sobjects/ManagedEventSubscription: post: tags: - Create - Events - Managed - Subscriptions summary: Salesforce Create Managed Event Subscription operationId: Createmanagedeventsubscription parameters: [] requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/CreatemanagedeventsubscriptionRequest' - examples: - FullName: Managed_Sub_OpportunityChangeEvent Metadata: label: Managed Sub OpportunityChangeEvent topicName: /data/OpportunityChangeEvent defaultReplay: LATEST state: RUN errorRecoveryReplay: LATEST contentMediaType: application/json example: FullName: Managed_Sub_OpportunityChangeEvent Metadata: label: Managed Sub OpportunityChangeEvent topicName: /data/OpportunityChangeEvent defaultReplay: LATEST state: RUN errorRecoveryReplay: LATEST required: true responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/tooling/sobjects/ManagedEventSubscription/{managedEventSubscriptionId}: get: tags: - Events - Get - Identifiers - Managed - Subscriptions summary: Salesforce Get Managed Event Subscription by Id operationId: GetmanagedeventsubscriptionbyID parameters: - name: managedEventSubscriptionId in: path description: '' required: true schema: type: string example: '500123' responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK patch: tags: - Events - Managed - Subscriptions - Update summary: Salesforce Update Managed Event Subscription operationId: Updatemanagedeventsubscription parameters: - name: managedEventSubscriptionId in: path description: '' required: true schema: type: string example: '500123' requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/UpdatemanagedeventsubscriptionRequest' - examples: - FullName: Managed_Sub_OpportunityChangeEvent Metadata: state: STOP contentMediaType: application/json example: FullName: Managed_Sub_OpportunityChangeEvent Metadata: state: STOP required: true responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK delete: tags: - Deletes - Events - Managed - Subscriptions summary: Salesforce Delete Managed Event Subscription operationId: Deletemanagedeventsubscription parameters: - name: managedEventSubscriptionId in: path description: '' required: true schema: type: string example: '500123' responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/tooling/sobjects/ManagedEventSubscription/describe: get: tags: - Describe - Events - Managed - Subscriptions summary: Salesforce Describe Managed Event Subscription operationId: Describemanagedeventsubscription parameters: [] responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /apexrest/SBQQ/ServiceRouter: patch: tags: - Configuration - Loader summary: Salesforce Configuration Loader Api description: >- The Configuration Loader API returns all the data for the product, including its product options and configuration model. When configuring a nested bundle, set the parentProductproperty to the parent product to inherit configuration attributes on the nested bundle. Available in: Salesforce CPQ Spring ’17 and later https://developer.salesforce.com/docs/atlas.en-us.cpq_dev_api.meta/cpq_dev_api/cpq_api_config_loader.htm operationId: ConfigurationLoaderAPI parameters: - name: loader in: query description: '' required: true style: form explode: true schema: type: string examples: - SBQQ.ConfigAPI.ConfigLoader example: example_value - name: uid in: query description: '' required: true style: form explode: true schema: type: string example: '500123' - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK post: tags: - Quote - Save summary: Salesforce Save Quote Api description: >- The Save Quote API saves a CPQ quote. Available in: Salesforce CPQ Summer ’16 and later https://developer.salesforce.com/docs/atlas.en-us.cpq_dev_api.meta/cpq_dev_api/cpq_quote_api_save_final.htm operationId: SaveQuoteAPI parameters: - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK get: tags: - Quote - Read summary: Salesforce Read Quote Api description: >- The Read Quote API reads a quote from a CPQ quote ID. Available in: Salesforce CPQ Summer ’16 and later https://developer.salesforce.com/docs/atlas.en-us.cpq_dev_api.meta/cpq_dev_api/cpq_api_read_quote.htm operationId: ReadQuoteAPI parameters: - name: reader in: query description: '' required: true style: form explode: true schema: type: string examples: - SBQQ.QuoteAPI.QuoteReader example: example_value - name: uid in: query description: '' required: true style: form explode: true schema: type: string example: '500123' - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/loyalty-programs/{loyaltyProgramName}/corporate-member-enrollments: post: tags: - Corporate - Member summary: Salesforce Corporate Member Enrollments description: >- Standard Documentation: [https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_enroll_corporate_member.htm](https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_enroll_corporate_member.htm) operationId: CorporateMemberEnrollments parameters: - name: loyaltyProgramName in: path description: '' required: true schema: type: string example: example_value requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/CorporateMemberEnrollmentsRequest' - examples: - enrollmentDate: '2021-01-01T05:05:05.000Z' membershipNumber: Member123 associatedAccountDetails: name: Name1 phone: '908989898' website: www.ab.com allowDuplicateRecords: 'false' memberStatus: Active createTransactionJournals: 'true' contentMediaType: application/json example: enrollmentDate: '2021-01-01T05:05:05.000Z' membershipNumber: Member123 associatedAccountDetails: name: Name1 phone: '908989898' website: www.ab.com allowDuplicateRecords: 'false' memberStatus: Active createTransactionJournals: 'true' required: true responses: '201': description: Created headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 22 May 2024 15:35:25 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/CorporateMemberEnrollments' - examples: - accountId: 001J8000003MaJL loyaltyProgramMemberId: 0lMJ8000000CaRH loyaltyProgramName: NTO Insider membershipNumber: Member123 transactionJournals: - activityDate: '2021-01-01T04:05:05.000Z' journalSubType: Member Enrollment journalType: Accrual loyaltyProgram: NTO Insider loyaltyProgramMember: Member123 referredMember: status: Processed transactionJournalId: 0lVJ8000000GmaE contentMediaType: application/json;charset=UTF-8 example: accountId: 001J8000003MaJL loyaltyProgramMemberId: 0lMJ8000000CaRH loyaltyProgramName: NTO Insider membershipNumber: Member123 transactionJournals: - activityDate: '2021-01-01T04:05:05.000Z' journalSubType: Member Enrollment journalType: Accrual loyaltyProgram: NTO Insider loyaltyProgramMember: Member123 referredMember: status: Processed transactionJournalId: 0lVJ8000000GmaE deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/loyalty-programs/{loyaltyProgramName}/individual-member-enrollments: post: tags: - Individual - Member summary: Salesforce Individual Member Enrollments description: >- Standard Documentation: [https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_enroll_individual_member.htm](https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_enroll_individual_member.htm) operationId: IndividualMemberEnrollments parameters: - name: loyaltyProgramName in: path description: '' required: true schema: type: string example: example_value requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/IndividualMemberEnrollmentsRequest' - examples: - enrollmentDate: '2021-01-01T00:00:00.000Z' membershipNumber: Member1 associatedContactDetails: firstName: Name1 lastName: Name2 email: ab@email.com allowDuplicateRecords: 'false' memberStatus: Active createTransactionJournals: 'true' transactionJournalStatementFrequency: Monthly transactionJournalStatementMethod: Mail enrollmentChannel: Email canReceivePromotions: 'true' canReceivePartnerPromotions: 'true' membershipEndDate: '2022-01-01T00:00:00.000Z' contentMediaType: application/json example: enrollmentDate: '2021-01-01T00:00:00.000Z' membershipNumber: Member1 associatedContactDetails: firstName: Name1 lastName: Name2 email: ab@email.com allowDuplicateRecords: 'false' memberStatus: Active createTransactionJournals: 'true' transactionJournalStatementFrequency: Monthly transactionJournalStatementMethod: Mail enrollmentChannel: Email canReceivePromotions: 'true' canReceivePartnerPromotions: 'true' membershipEndDate: '2022-01-01T00:00:00.000Z' required: true responses: '201': description: Created headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 22 May 2024 15:39:01 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/IndividualMemberEnrollments' - examples: - contactId: 003J8000002Yu0Z loyaltyProgramMemberId: 0lMJ8000000CaRM loyaltyProgramName: NTO Insider membershipNumber: Member1 transactionJournals: - activityDate: '2020-12-31T23:00:00.000Z' journalSubType: Member Enrollment journalType: Accrual loyaltyProgram: NTO Insider loyaltyProgramMember: Member1 referredMember: status: Processed transactionJournalId: 0lVJ8000000GmaJ contentMediaType: application/json;charset=UTF-8 example: contactId: 003J8000002Yu0Z loyaltyProgramMemberId: 0lMJ8000000CaRM loyaltyProgramName: NTO Insider membershipNumber: Member1 transactionJournals: - activityDate: '2020-12-31T23:00:00.000Z' journalSubType: Member Enrollment journalType: Accrual loyaltyProgram: NTO Insider loyaltyProgramMember: Member1 referredMember: status: Processed transactionJournalId: 0lVJ8000000GmaJ deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/connect/loyalty/member/{memberId}/memberbenefits: get: tags: - Benefits - Member summary: Salesforce Member Benefits description: >- Standard Documentation: [https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_member_benefits.htm](https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_member_benefits.htm) operationId: MemberBenefits parameters: - name: memberId in: path description: '' required: true schema: type: string example: '500123' responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 22 May 2024 16:11:06 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/MemberBenefits' - examples: - memberBenefits: - benefitId: 0jiJ80000008OIFIA2 benefitName: Free Shipping benefitTypeId: 0jhJ80000008OI5IAM benefitTypeName: Shipping createdRecordId: createdRecordName: description: endDate: isActive: true memberBenefitStatus: startDate: - benefitId: 0jiJ80000008OI5IAM benefitName: 5% of Discount benefitTypeId: 0jhJ80000008OIAIA2 benefitTypeName: Discount Percentage createdRecordId: createdRecordName: description: endDate: isActive: true memberBenefitStatus: startDate: contentMediaType: application/json;charset=UTF-8 example: memberBenefits: - benefitId: 0jiJ80000008OIFIA2 benefitName: Free Shipping benefitTypeId: 0jhJ80000008OI5IAM benefitTypeName: Shipping createdRecordId: createdRecordName: description: endDate: isActive: true memberBenefitStatus: startDate: - benefitId: 0jiJ80000008OI5IAM benefitName: 5% of Discount benefitTypeId: 0jhJ80000008OIAIA2 benefitTypeName: Discount Percentage createdRecordId: createdRecordName: description: endDate: isActive: true memberBenefitStatus: startDate: deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/loyalty-programs/{loyaltyProgramName}/members: get: tags: - Member - Profile summary: Salesforce Member Profile description: >- Standard Documentation: [https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_member_profile.htm](https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_member_profile.htm) operationId: MemberProfile parameters: - name: memberId in: query description: The ID of the loyalty program member. required: true style: form explode: true schema: type: string example: '500123' - name: membershipNumber in: query description: The membership number of the loyalty program member. required: true style: form explode: true schema: type: string example: example_value - name: programCurrencyName in: query description: >- The name of the loyalty program currency associated with the member. Use this parameter to get the details of the member’s points-related information for a specific currency. required: true style: form explode: true schema: type: string example: example_value - name: loyaltyProgramName in: path description: '' required: true schema: type: string example: example_value responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 22 May 2024 16:16:23 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/MemberProfile' - examples: - additionalLoyaltyProgramMemberFields: {} associatedAccount: associatedContact: contactId: 003J8000002Yu0ZIAS email: ab@email.com firstName: Name1 lastName: Name2 canReceivePartnerPromotions: true canReceivePromotions: true enrollmentChannel: Email enrollmentDate: '2021-01-01T00:00:00.000Z' groupCreatedByMember: groupName: lastActivityDate: loyaltyProgramMemberId: 0lMJ8000000CaRMMA0 loyaltyProgramName: NTO Insider memberCurrencies: - additionalLoyaltyMemberCurrencyFields: Level_Before_Reset__c: escrowPointsBalance: 0 expirablePoints: 0 lastAccrualProcessedDate: lastEscrowProcessedDate: lastExpirationProcessRunDate: lastPointsAggregationDate: lastPointsResetDate: loyaltyMemberCurrencyName: NTO Qualifying Points loyaltyProgramCurrencyId: 0lcJ8000000CaR7IAK loyaltyProgramCurrencyName: memberCurrencyId: 0lzJ8000000CaRMIA0 nextQualifyingPointsResetDate: '2024-12-31T00:00:00.000Z' pointsBalance: 0 qualifyingPointsBalanceBeforeReset: 0 totalEscrowPointsAccrued: 0 totalEscrowRolloverPoints: 0 totalPointsAccrued: 0 totalPointsExpired: 0 totalPointsRedeemed: 0 memberStatus: Active memberTiers: - additionalLoyaltyMemberTierFields: {} areTierBenefitsAssigned: false loyaltyMemberTierId: 0lyJ8000000CaRMIA0 loyaltyMemberTierName: Bronze tierChangeReason: tierChangeReasonType: tierEffectiveDate: '2021-01-01T00:00:00.000Z' tierExpirationDate: tierGroupId: 0ltJ8000000CaR8IAK tierGroupName: tierId: 0lgJ80000008OI5IAM tierSequenceNumber: 10 memberType: Individual membershipEndDate: '2022-01-01T00:00:00.000Z' membershipLastRenewalDate: membershipNumber: Member1 referredBy: relatedCorporateMembershipNumber: transactionJournalStatementFrequency: Monthly transactionJournalStatementLastGeneratedDate: transactionJournalStatementMethod: Mail contentMediaType: application/json;charset=UTF-8 example: additionalLoyaltyProgramMemberFields: {} associatedAccount: associatedContact: contactId: 003J8000002Yu0ZIAS email: ab@email.com firstName: Name1 lastName: Name2 canReceivePartnerPromotions: true canReceivePromotions: true enrollmentChannel: Email enrollmentDate: '2021-01-01T00:00:00.000Z' groupCreatedByMember: groupName: lastActivityDate: loyaltyProgramMemberId: 0lMJ8000000CaRMMA0 loyaltyProgramName: NTO Insider memberCurrencies: - additionalLoyaltyMemberCurrencyFields: Level_Before_Reset__c: escrowPointsBalance: 0 expirablePoints: 0 lastAccrualProcessedDate: lastEscrowProcessedDate: lastExpirationProcessRunDate: lastPointsAggregationDate: lastPointsResetDate: loyaltyMemberCurrencyName: NTO Qualifying Points loyaltyProgramCurrencyId: 0lcJ8000000CaR7IAK loyaltyProgramCurrencyName: memberCurrencyId: 0lzJ8000000CaRMIA0 nextQualifyingPointsResetDate: '2024-12-31T00:00:00.000Z' pointsBalance: 0 qualifyingPointsBalanceBeforeReset: 0 totalEscrowPointsAccrued: 0 totalEscrowRolloverPoints: 0 totalPointsAccrued: 0 totalPointsExpired: 0 totalPointsRedeemed: 0 memberStatus: Active memberTiers: - additionalLoyaltyMemberTierFields: {} areTierBenefitsAssigned: false loyaltyMemberTierId: 0lyJ8000000CaRMIA0 loyaltyMemberTierName: Bronze tierChangeReason: tierChangeReasonType: tierEffectiveDate: '2021-01-01T00:00:00.000Z' tierExpirationDate: tierGroupId: 0ltJ8000000CaR8IAK tierGroupName: tierId: 0lgJ80000008OI5IAM tierSequenceNumber: 10 memberType: Individual membershipEndDate: '2022-01-01T00:00:00.000Z' membershipLastRenewalDate: membershipNumber: Member1 referredBy: relatedCorporateMembershipNumber: transactionJournalStatementFrequency: Monthly transactionJournalStatementLastGeneratedDate: transactionJournalStatementMethod: Mail deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/loyalty/programs/{loyaltyProgramName}/members/{membershipNumber}/vouchers/{voucherCode}/redeem: post: tags: - Redeem summary: Salesforce Redeem Voucher description: >- Standard Documentation: [https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_redeem_voucher.htm](https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_redeem_voucher.htm) operationId: RedeemVoucher parameters: - name: voucherNumber in: query description: '' required: true style: form explode: true schema: type: string example: example_value - name: loyaltyProgramName in: path description: The loyalty program name. required: true schema: type: string example: example_value - name: membershipNumber in: path description: The loyalty program membership number. required: true schema: type: string example: example_value - name: voucherCode in: path description: The voucher code to be redeemed. required: true schema: type: string example: example_value requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/RedeemVoucherRequest' - examples: - currencyIsoCode: EUR redeemAmount: 1.5 contentMediaType: application/json example: currencyIsoCode: EUR redeemAmount: 1.5 required: true responses: '201': description: Created headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 27 May 2024 19:35:17 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/RedeemVoucher' - examples: - currencyIsoCode: EUR remainingAmount: 3.5 contentMediaType: application/json;charset=UTF-8 example: currencyIsoCode: EUR remainingAmount: 3.5 deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/connect/loyalty/programs/{loyaltyProgramName}/transaction-history: post: tags: - History - Transaction summary: Salesforce Transaction History description: >- Standard Documentation: [https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_transaction_history.htm](https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_transaction_history.htm) operationId: TransactionHistory parameters: - name: page in: query description: '' required: true style: form explode: true schema: type: string example: example_value - name: loyaltyProgramName in: path description: '' required: true schema: type: string example: example_value requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/TransactionHistoryRequest' - examples: - membershipNumber: Member1 journalType: Accrual journalSubType: Social periodStartDate: '2022-01-27T00:00:00.000Z' periodEndDate: '2022-11-27T00:00:00.000Z' contentMediaType: application/json example: membershipNumber: Member1 journalType: Accrual journalSubType: Social periodStartDate: '2022-01-27T00:00:00.000Z' periodEndDate: '2022-11-27T00:00:00.000Z' required: true responses: '201': description: Created headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 22 May 2024 16:22:05 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/TransactionHistory' - examples: - message: status: true totalCount: 0 transactionJournals: [] contentMediaType: application/json;charset=UTF-8 example: message: status: true totalCount: 0 transactionJournals: [] deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/loyalty/programs/{loyaltyProgramName}/members/{membershipNumber}/transaction-ledger-summary: get: tags: - Summaries - Transaction summary: Salesforce Transaction Ledger Summary description: >- Standard Documentation: [https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_transaction_ledger.htm](https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_transaction_ledger.htm) operationId: TransactionLedgerSummary parameters: - name: loyaltyProgramName in: path description: '' required: true schema: type: string example: example_value - name: membershipNumber in: path description: '' required: true schema: type: string example: example_value responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 27 May 2024 19:37:52 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/TransactionLedgerSummary' - examples: - message: status: true transactionJournalCount: 1 transactionJournals: - activityDate: '2021-01-01T04:05:05.000Z' additionalTransactionJournalAttributes: [] journalSubTypeName: Member Enrollment journalTypeName: Accrual pointsChange: [] transactionJournalId: 0lVJ8000000GmaEMAS transactionJournalNumber: '00000008' contentMediaType: application/json;charset=UTF-8 example: message: status: true transactionJournalCount: 1 transactionJournals: - activityDate: '2021-01-01T04:05:05.000Z' additionalTransactionJournalAttributes: [] journalSubTypeName: Member Enrollment journalTypeName: Accrual pointsChange: [] transactionJournalId: 0lVJ8000000GmaEMAS transactionJournalNumber: '00000008' deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/connect/realtime/loyalty/programs/{loyaltyProgramName}: post: tags: - Execution - Journals - Transaction summary: Salesforce Transaction Journals Execution description: >- Standard Documentation: [https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_loyalty_program_realtime.htm](https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_loyalty_program_realtime.htm) operationId: TransactionJournalsExecution parameters: - name: loyaltyProgramName in: path description: '' required: true schema: type: string example: example_value requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/TransactionJournalsExecutionRequest' - examples: - transactionJournals: - ActivityDate: '2023-11-27T12:45:19.000Z' JournalTypeId: 0lERM00000001Bb2AI LoyaltyProgramId: 0lpRM00000002YTYAY MemberId: 0lMRM0000002Fmu2AE Status: Pending appliedPromotions: - promotionId: 0c8RM0000004FiXYAU rewards: - rewardType: Discount discountAmount: 15 - rewardType: Points loyaltyProgramCurrencyName: Coins points: 100 relatedInformation: Test notes: Test - rewardType: Voucher voucherDefinitionName: 10% Discount Voucher voucherExpirationDate: '2023-12-15T00:00:00.000Z' voucherEffectiveDate: '2023-11-29T00:00:00.000Z' notes: Test - rewardType: Badge loyaltyProgramBadgeName: Gen AI Badge memberBadgeStatus: Active badgeValidityEndDate: '2023-12-15T00:00:00.000Z' reason: Test - rewardType: Game gameDefinitionName: TestGame contentMediaType: application/json example: transactionJournals: - ActivityDate: '2023-11-27T12:45:19.000Z' JournalTypeId: 0lERM00000001Bb2AI LoyaltyProgramId: 0lpRM00000002YTYAY MemberId: 0lMRM0000002Fmu2AE Status: Pending appliedPromotions: - promotionId: 0c8RM0000004FiXYAU rewards: - rewardType: Discount discountAmount: 15 - rewardType: Points loyaltyProgramCurrencyName: Coins points: 100 relatedInformation: Test notes: Test - rewardType: Voucher voucherDefinitionName: 10% Discount Voucher voucherExpirationDate: '2023-12-15T00:00:00.000Z' voucherEffectiveDate: '2023-11-29T00:00:00.000Z' notes: Test - rewardType: Badge loyaltyProgramBadgeName: Gen AI Badge memberBadgeStatus: Active badgeValidityEndDate: '2023-12-15T00:00:00.000Z' reason: Test - rewardType: Game gameDefinitionName: TestGame required: true responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/loyalty/programs/{loyaltyProgramName}/members/{membershipNumber}/vouchers: get: tags: - Member summary: Salesforce Member Vouchers description: >- [Member Vouchers](https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_member_vouchers.htm) NOTE: In the Pre-request. Script Tab, make changes in the variables value accordingly with the real Process Name to invoke. operationId: MemberVouchers parameters: - name: loyaltyProgramName in: path description: '' required: true schema: type: string example: example_value - name: membershipNumber in: path description: '' required: true schema: type: string example: example_value responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 22 May 2024 16:34:18 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/MemberVouchers' - examples: - voucherCount: 0 vouchers: [] contentMediaType: application/json;charset=UTF-8 example: voucherCount: 0 vouchers: [] deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/connect/loyalty/programs/{loyaltyProgramName}/program-processes/{processName}: post: tags: - Cancel summary: Salesforce Cancel a Voucher description: >- Standard Documentation: [https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_cancel_voucher.htm](https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_cancel_voucher.htm) In the Pre-request. Script Tab, make changes in the variables value accordingly with the real Process Name to invoke. operationId: CancelaVoucher parameters: - name: loyaltyProgramName in: path description: '' required: true schema: type: string examples: - NTO Insider example: example_value - name: processName in: path description: '' required: true schema: type: string example: example_value requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/CancelaVoucherRequest' - examples: - processParameters: - MemberId: 0lMxx00000000BJEAY VoucherId: 0kdxx000000000B245 contentMediaType: application/json example: processParameters: - MemberId: 0lMxx00000000BJEAY VoucherId: 0kdxx000000000B245 required: true responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/game/participant/{participantId}/games: get: tags: - Games summary: Salesforce Games description: >- [Games](https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_gamification.htm) NOTE: In the Pre-request. Script Tab, make changes in the variables value accordingly with the real Process Name to invoke. operationId: Games parameters: - name: participantId in: path description: '' required: true schema: type: string example: '500123' responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/game/gameparticipantreward/{gameParticipantRewardId}/game-reward: get: tags: - Game - Reward summary: Salesforce Game Reward description: >- [Game Reward](https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_game_result.htm) NOTE: In the Pre-request. Script Tab, make changes in the variables value accordingly with the real Process Name to invoke. operationId: GameReward parameters: - name: gameParticipantRewardId in: path description: '' required: true schema: type: string example: '500123' responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/global-promotions-management/eligible-promotions: post: tags: - Eligible - Promotions summary: Salesforce Eligible Promotions description: >- [Eligible Promotions](https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_eligible_promotions.htm) NOTE: In the Pre-request. Script Tab, make changes in the variables value accordingly with the real Process Name to invoke. operationId: EligiblePromotions parameters: [] requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/EligiblePromotionsRequest' - examples: - cart: cartDetails: - activityStartDate: '2023-06-14T12:45:19.000Z' contactId: 003xx000004WjzAAAS transactionAmount: 499 currencyISOCode: INR cartLineDetails: - cartLineProductId: 01txx0000006iTsAAI cartLineItemQuantity: 3 cartLineItemAmount: 499 cartLineProductCatalogId: 0ZSSB0000002d8X4AQ contentMediaType: application/json example: cart: cartDetails: - activityStartDate: '2023-06-14T12:45:19.000Z' contactId: 003xx000004WjzAAAS transactionAmount: 499 currencyISOCode: INR cartLineDetails: - cartLineProductId: 01txx0000006iTsAAI cartLineItemQuantity: 3 cartLineItemAmount: 499 cartLineProductCatalogId: 0ZSSB0000002d8X4AQ required: true responses: default: description: '' headers: {} content: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/global-promotions-management/promotions: post: tags: - Creation - Promotions summary: Salesforce Promotions Creation description: >- [Promotions Creation](https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_unified_promotions.htm) NOTE: In the Pre-request. Script Tab, make changes in the variables value accordingly with the real Process Name to invoke. operationId: PromotionsCreation parameters: [] requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/PromotionsCreationRequest' - examples: - name: Free Beverage startDateTime: '2023-06-30T00:00:00.000Z' displayName: Free Beverage priorityNumber: 1 description: Buy 2 Get 1 free endDateTime: '2023-12-30T00:00:00.000Z' objective: To increase sales loyaltyProgram: name: Program-001 additionalFieldValues: attributes: promotionLocation__c: HYD promotionLimits: perLineItemLimit: 10 vouchersLimit: 100 vouchersPerCustomerLimit: 5 perCartLimit: 5 usePerCustomerLimit: 5 liabilityLimit: 10000 loyaltyProgramCurrency: id: 0lcSB00000001TxYAI pointsPerCustomerLimit: 5 promotionEligibility: eligibleProductCategories: - id: 0ZGSB0000002td74AA eligibleProducts: - name: Coke eligibleChannels: - channelType: Offline store: name: test Store retailLocationGroup: name: test eligibleCustomerEvents: event: MemberBirthday eventPeriodUnit: Date eligibleEnrollmentPeriod: isEnrollmentRequired: true enrollmentStartDate: '2023-06-30T00:00:00.000Z' enrollmentEndDate: '2023-12-30T00:00:00.000Z' eligibleLoyaltyTiers: - tierGroup: name: Group-001 id: 0ltSB00000000T3YAI tier: name: Silver id: 0lgSB00000000srYAA contentMediaType: application/json example: name: Free Beverage startDateTime: '2023-06-30T00:00:00.000Z' displayName: Free Beverage priorityNumber: 1 description: Buy 2 Get 1 free endDateTime: '2023-12-30T00:00:00.000Z' objective: To increase sales loyaltyProgram: name: Program-001 additionalFieldValues: attributes: promotionLocation__c: HYD promotionLimits: perLineItemLimit: 10 vouchersLimit: 100 vouchersPerCustomerLimit: 5 perCartLimit: 5 usePerCustomerLimit: 5 liabilityLimit: 10000 loyaltyProgramCurrency: id: 0lcSB00000001TxYAI pointsPerCustomerLimit: 5 promotionEligibility: eligibleProductCategories: - id: 0ZGSB0000002td74AA eligibleProducts: - name: Coke eligibleChannels: - channelType: Offline store: name: test Store retailLocationGroup: name: test eligibleCustomerEvents: event: MemberBirthday eventPeriodUnit: Date eligibleEnrollmentPeriod: isEnrollmentRequired: true enrollmentStartDate: '2023-06-30T00:00:00.000Z' enrollmentEndDate: '2023-12-30T00:00:00.000Z' eligibleLoyaltyTiers: - tierGroup: name: Group-001 id: 0ltSB00000000T3YAI tier: name: Silver id: 0lgSB00000000srYAA required: true responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/global-promotions-management/promotions/{promotionId}: get: tags: - Promotion summary: Salesforce Promotion Details description: >- [Promotions Creation](https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/connect_resources_unified_promotions.htm) NOTE: In the Pre-request. Script Tab, make changes in the variables value accordingly with the real Process Name to invoke. operationId: PromotionDetails parameters: - name: promotionId in: path description: '' required: true schema: type: string example: '500123' responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /apexrest/{NAMESPACE}/v1/integrationprocedure/{TYPE_SUBTYPE}: get: tags: - Get - Integration - Procedure summary: Salesforce Integration Procedure Invocation Using Get operationId: IntegrationProcedureInvocationUsingGET parameters: - name: NAMESPACE in: path description: >- The namespace: `omnistudio`, `vlocity_ins`, `vlocity_cmt`, or `vlocity_ps` required: true schema: type: string example: example_value - name: TYPE_SUBTYPE in: path description: >- Type and SubType of the Integration Procedure separated by an underscore. required: true schema: type: string example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK post: tags: - Integration - Post - Procedure summary: Salesforce Integration Procedure Invocation Using Post operationId: IntegrationProcedureInvocationUsingPOST parameters: - name: NAMESPACE in: path description: >- The namespace is `omnistudio`, `vlocity_ins`, `vlocity_cmt`, or `vlocity_ps` required: true schema: type: string example: example_value - name: TYPE_SUBTYPE in: path description: >- Type and SubType of the Integration Procedure separated by an underscore. required: true schema: type: string example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/graphql: post: tags: - Accounts summary: Salesforce Accounts operationId: Accounts parameters: - name: X-Chatter-Entity-Encoding in: header description: '' required: true schema: type: boolean examples: - false example: true responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Fri, 06 Oct 2023 09:03:56 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/Accounts' - examples: - data: uiapi: query: Account: edges: - node: Id: 0014H00002x6HUhQAM Name: value: ACME Inc. - node: Id: 0014H00002LbR7QQAV Name: value: ABC Computing - node: Id: 00158000006QBOqAAO Name: value: GenePoint - node: Id: 00158000006QBOoAAO Name: value: United Oil & Gas, Belgium - node: Id: 00158000006QBOpAAO Name: value: United Oil & Gas, Singapore - node: Id: 00158000006QBOgAAO Name: value: Edge Communications - node: Id: 00158000006QBOhAAO Name: value: Burlington Textiles Corp of America errors: [] contentMediaType: application/json;charset=UTF-8 example: data: uiapi: query: Account: edges: - node: Id: 0014H00002x6HUhQAM Name: value: ACME Inc. - node: Id: 0014H00002LbR7QQAV Name: value: ABC Computing - node: Id: 00158000006QBOqAAO Name: value: GenePoint - node: Id: 00158000006QBOoAAO Name: value: United Oil & Gas, Belgium - node: Id: 00158000006QBOpAAO Name: value: United Oil & Gas, Singapore - node: Id: 00158000006QBOgAAO Name: value: Edge Communications - node: Id: 00158000006QBOhAAO Name: value: Burlington Textiles Corp of America errors: [] deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/ui-api/themes/active: get: tags: - Active - Get - Theme summary: Salesforce Get Active Theme description: >- Get a Salesforce org’s active theme. A theme uses colors, images, and banners to change the overall appearance of Salesforce. Administrators can define themes and switch themes to provide a different look. The User Interface API response matches the Admin’s selection. operationId: GetActiveTheme parameters: [] responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Fri, 06 Oct 2023 09:24:07 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/GetActiveTheme' - examples: - brandColor: '#0176D3' brandImage: largeUrl: >- /_slds/images/themes/lightning_blue/lightning_blue_logo_3x.png mediumUrl: >- /_slds/images/themes/lightning_blue/lightning_blue_logo_2x.png smallUrl: >- /_slds/images/themes/lightning_blue/lightning_blue_logo_1x.png defaultGroupBanner: fullSizeUrl: >- /_slds/images/themes/lightning_blue/lightning_blue_group.png defaultGroupImage: largeUrl: >- /_slds/images/themes/lightning_blue/lightning_blue_group_icon_200.png mediumUrl: >- /_slds/images/themes/lightning_blue/lightning_blue_group_icon_160.png smallUrl: >- /_slds/images/themes/lightning_blue/lightning_blue_group_icon_96.png defaultPageBanner: fullSizeUrl: >- /_slds/images/themes/lightning_blue/lightning_blue_background.png defaultUserBanner: fullSizeUrl: >- /_slds/images/themes/lightning_blue/lightning_blue_profile.png defaultUserImage: largeUrl: >- /_slds/images/themes/lightning_blue/lightning_blue_profile_avatar_200.png mediumUrl: >- /_slds/images/themes/lightning_blue/lightning_blue_profile_avatar_160.png smallUrl: >- /_slds/images/themes/lightning_blue/lightning_blue_profile_avatar_96.png density: ViewOne headerColor: '#FFFFFF' linkColor: '#0176D3' pageColor: '#B0C4DF' contentMediaType: application/json;charset=UTF-8 example: brandColor: '#0176D3' brandImage: largeUrl: >- /_slds/images/themes/lightning_blue/lightning_blue_logo_3x.png mediumUrl: >- /_slds/images/themes/lightning_blue/lightning_blue_logo_2x.png smallUrl: >- /_slds/images/themes/lightning_blue/lightning_blue_logo_1x.png defaultGroupBanner: fullSizeUrl: /_slds/images/themes/lightning_blue/lightning_blue_group.png defaultGroupImage: largeUrl: >- /_slds/images/themes/lightning_blue/lightning_blue_group_icon_200.png mediumUrl: >- /_slds/images/themes/lightning_blue/lightning_blue_group_icon_160.png smallUrl: >- /_slds/images/themes/lightning_blue/lightning_blue_group_icon_96.png defaultPageBanner: fullSizeUrl: >- /_slds/images/themes/lightning_blue/lightning_blue_background.png defaultUserBanner: fullSizeUrl: >- /_slds/images/themes/lightning_blue/lightning_blue_profile.png defaultUserImage: largeUrl: >- /_slds/images/themes/lightning_blue/lightning_blue_profile_avatar_200.png mediumUrl: >- /_slds/images/themes/lightning_blue/lightning_blue_profile_avatar_160.png smallUrl: >- /_slds/images/themes/lightning_blue/lightning_blue_profile_avatar_96.png density: ViewOne headerColor: '#FFFFFF' linkColor: '#0176D3' pageColor: '#B0C4DF' deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /Soap/m/64.0: post: tags: - Soap summary: Salesforce Soap Describemetadata operationId: SOAPDescribeMetadata parameters: - name: Content-Type in: header description: '' required: true schema: const: text/xml type: string examples: - text/xml example: example_value - name: charset in: header description: '' required: true schema: type: string examples: - UTF-8 example: example_value - name: SOAPAction in: header description: '' required: true schema: type: string examples: - login example: example_value - name: Accept in: header description: '' required: true schema: type: string examples: - text/xml example: example_value requestBody: description: '' content: application/xml: schema: allOf: - $ref: '#/components/schemas/Envelope1' - xml: name: Envelope attribute: false wrapped: false examples: - |- 64 contentMediaType: application/xml example: |- 64 required: true responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Thu, 07 Sep 2023 09:22:24 GMT Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: text/xml; charset=utf-8: schema: allOf: - $ref: '#/components/schemas/Envelope2' - xml: name: Envelope attribute: false wrapped: false examples: - |- installedPackages false false installedPackage InstalledPackage CustomLabel labels false false labels CustomLabels staticresources false true resource StaticResource scontrols false true scf Scontrol certs false true crt Certificate messageChannels false false messageChannel LightningMessageChannel lwc false false LightningComponentBundle aura false false AuraDefinitionBundle components false true component ApexComponent pages false true page ApexPage queues false false queue Queue inboundNetworkConnections false false inboundNetworkConnection InboundNetworkConnection outboundNetworkConnections false false outboundNetworkConnection OutboundNetworkConnection externalCredentials false false externalCredential ExternalCredential namedCredentials false false namedCredential NamedCredential ExternalDataSrcDescriptor dataSources false false dataSource ExternalDataSource externalServiceRegistrations false false externalServiceRegistration ExternalServiceRegistration roles false false role Role groups false false group Group globalValueSets false false globalValueSet GlobalValueSet standardValueSets false false standardValueSet StandardValueSet customPermissions false false customPermission CustomPermission ["CustomField","Index","BusinessProcess","RecordType","CompactLayout","WebLink","ValidationRule","SharingReason","ListView","FieldSet"] objects false false object CustomObject reportTypes false false reportType ReportType reports true false report Report dashboards true false dashboard Dashboard analyticSnapshots false false snapshot AnalyticSnapshot feedFilters false false feedFilter CustomFeedFilter layouts false false layout Layout documents true true Document weblinks false false weblink CustomPageWebLink letterhead false false letter Letterhead email true true email EmailTemplate quickActions false false quickAction QuickAction flexipages false false flexipage FlexiPage tabs false false tab CustomTab customApplicationComponents false false customApplicationComponent CustomApplicationComponent applications false false app CustomApplication customMetadata false false md CustomMetadata flows false false flow Flow flowDefinitions false false flowDefinition FlowDefinition flowtests false false flowtest FlowTest processflowmigrations false false processflowmigration ProcessFlowMigration contentassets false true asset ContentAsset ["WorkflowFieldUpdate","WorkflowKnowledgePublish","WorkflowTask","WorkflowAlert","WorkflowSend","WorkflowOutboundMessage","WorkflowRule"] workflows false false workflow Workflow AssignmentRule assignmentRules false false assignmentRules AssignmentRules AutoResponseRule autoResponseRules false false autoResponseRules AutoResponseRules EscalationRule escalationRules false false escalationRules EscalationRules postTemplates false false postTemplate PostTemplate approvalProcesses false false approvalProcess ApprovalProcess homePageComponents false false homePageComponent HomePageComponent homePageLayouts false false homePageLayout HomePageLayout objectTranslations false false objectTranslation CustomObjectTranslation translations false false translation Translations globalValueSetTranslations false false globalValueSetTranslation GlobalValueSetTranslation standardValueSetTranslations false false standardValueSetTranslation StandardValueSetTranslation dw false true DataWeaveResource classes false true cls ApexClass triggers false true trigger ApexTrigger testSuites false false testSuite ApexTestSuite profiles false false profile Profile permissionsets false false permissionset PermissionSet mutingpermissionsets false false mutingpermissionset MutingPermissionSet permissionsetgroups false false permissionsetgroup PermissionSetGroup profilePasswordPolicies false false profilePasswordPolicy ProfilePasswordPolicy profileSessionSettings false false profileSessionSetting ProfileSessionSetting myDomainDiscoverableLogins false false myDomainDiscoverableLogin MyDomainDiscoverableLogin blacklistedConsumers false false blacklistedConsumer BlacklistedConsumer oauthcustomscopes false false oauthcustomscope OauthCustomScope userProvisioningConfigs false false userProvisioningConfig UserProvisioningConfig datacategorygroups false false datacategorygroup DataCategoryGroup remoteSiteSettings false false remoteSite RemoteSiteSetting cspTrustedSites false false cspTrustedSite CspTrustedSite redirectWhitelistUrls false false redirectWhitelistUrl RedirectWhitelistUrl MatchingRule matchingRules false false matchingRule MatchingRules duplicateRules false false duplicateRule DuplicateRule cleanDataServices false false cleanDataService CleanDataService customindex false false indx CustomIndex skilltypes false false skilltype SkillType skills false false skill Skill authproviders false false authprovider AuthProvider eclair false true geodata EclairGeoData IPAddressRanges false false IPAddressRange IPAddressRange briefcaseDefinitions false false briefcaseDefinition BriefcaseDefinition channelLayouts false false channelLayout ChannelLayout sites false false site CustomSite recordAlertCategories false false recordAlertCategory RecordAlertCategory apexEmailNotifications false false notifications ApexEmailNotifications ["SharingOwnerRule","SharingCriteriaRule","SharingGuestRule"] sharingRules false false sharingRules SharingRules sharingSets false false sharingSet SharingSet iframeWhiteListUrlSettings false false iframeWhiteListUrlSettings IframeWhiteListUrlSettings communities false false community Community ChatterExtensions false false ChatterExtension ChatterExtension decisionTables false false decisionTable DecisionTable decisionTableDatasetLinks false false decisionTableDatasetLink DecisionTableDatasetLink aiApplications false false ai AIApplication aiApplicationConfigs false false aiapplicationconfig AIApplicationConfig mlPredictions false false mlPrediction MLPredictionDefinition mlRecommendations false false mlRecommendation MLRecommendationDefinition mlDataDefinitions false false mlDataDefinition MLDataDefinition batchProcessJobDefinitions false false batchProcessJobDefinition BatchProcessJobDefinition batchCalcJobDefinitions false false batchCalcJobDefinition BatchCalcJobDefinition ExplainabilityMsgTemplates false false explainabilityMsgTemplate ExplainabilityMsgTemplate expressionSetDefinition false false expressionSetDefinition ExpressionSetDefinition expressionSetVersion false false expressionSetVersion ExpressionSetDefinitionVersion decisionMatrixDefinition false false decisionMatrixDefinition DecisionMatrixDefinition decisionMatrixVersion false false decisionMatrixVersion DecisionMatrixDefinitionVersion expressionSetObjectAlias false false expressionSetObjectAlias ExpressionSetObjectAlias platformEventChannels false false platformEventChannel PlatformEventChannel platformEventChannelMembers false false platformEventChannelMember PlatformEventChannelMember eventRelays false false eventRelay EventRelayConfig callCenters false false callCenter CallCenter milestoneTypes false false milestoneType MilestoneType entitlementProcesses false false entitlementProcess EntitlementProcess entitlementTemplates false false entitlementTemplate EntitlementTemplate timeSheetTemplates false false timeSheetTemplate TimeSheetTemplate appointmentAssignmentPolicies false false policy AppointmentAssignmentPolicy appointmentSchedulingPolicies false false policy AppointmentSchedulingPolicy documentTypes false false documentType DocumentType messagingChannels false false messagingChannel MessagingChannel Canvases false false Canvas CanvasMetadata MobileApplicationDetails false false MobileApplicationDetail MobileApplicationDetail notificationtypes false false notiftype CustomNotificationType connectedApps false false connectedApp ConnectedApp appMenus false false appMenu AppMenu notificationTypeConfig false false config NotificationTypeConfig delegateGroups false false delegateGroup DelegateGroup brandingSets false false brandingSet BrandingSet managedContentTypes false false managedContentType ManagedContentType experiencePropertyTypeBundles false false experiencePropertyTypeBundle ExperiencePropertyTypeBundle DigitalExperience digitalExperiences false true digitalExperience DigitalExperienceBundle siteDotComSites false true site SiteDotCom networkBranding false true networkBranding NetworkBranding flowCategories false false flowCategory FlowCategory lightningBolts false false lightningBolt LightningBolt lightningExperienceThemes false false lightningExperienceTheme LightningExperienceTheme lightningOnboardingConfigs false false lightningOnboardingConfig LightningOnboardingConfig customHelpMenuSections false false customHelpMenuSection CustomHelpMenuSection prompts false false prompt Prompt samlssoconfigs false false samlssoconfig SamlSsoConfig corsWhitelistOrigins false false corsWhitelistOrigin CorsWhitelistOrigin actionLinkGroupTemplates false false actionLinkGroupTemplate ActionLinkGroupTemplate transactionSecurityPolicies false false transactionSecurityPolicy TransactionSecurityPolicy synonymDictionaries false false synonymDictionary SynonymDictionary pathAssistants false false pathAssistant PathAssistant animationRules false false animationRule AnimationRule LeadConvertSettings false false LeadConvertSetting LeadConvertSettings cachePartitions false false cachePartition PlatformCachePartition topicsForObjects false false topicsForObjects TopicsForObjects restrictionRules false false rule RestrictionRule fieldRestrictionRules false false rule FieldRestrictionRule recommendationStrategies false false recommendationStrategy RecommendationStrategy entityImplements false false entityImplements EntityImplements emailservices false false xml EmailServicesFunction paymentGatewayProviders false false paymentGatewayProvider PaymentGatewayProvider gatewayProviderPaymentMethodTypes false false gatewayProviderPaymentMethodType GatewayProviderPaymentMethodType ActionLauncherItemDef false false actionLauncherItemDef ActionLauncherItemDef recordActionDeployments false false deployment RecordActionDeployment salesAgreementSettings false false salesAgreementSetting SalesAgreementSettings ObjectHierarchyRelationship false false settings ObjectHierarchyRelationship acctMgrTargetSettings false false acctMgrTargetSetting AcctMgrTargetSettings AccountForecastSettings false false accountForecastSetting AccountForecastSettings AdvAcctForecastPeriodGroup false false advAcctForecastPeriodGroup AdvAcctForecastPeriodGroup AdvAccountForecastSet false false advAccountForecastSet AdvAccountForecastSet AdvAcctForecastDimSource false false advAcctForecastDimSource AdvAcctForecastDimSource BusinessProcessTypeDefinitions false false businessProcessTypeDefinition BusinessProcessTypeDefinition ApplicationSubtypeDefinitions false false applicationSubtypeDefinition ApplicationSubtypeDefinition ExplainabilityActionDefinitions false false explainabilityActionDefinition ExplainabilityActionDefinition ExplainabilityActionVersions false false explainabilityActionVersion ExplainabilityActionVersion icons false false icon Icon EmbeddedServiceConfig false false EmbeddedServiceConfig EmbeddedServiceConfig EmbeddedServiceBranding false false EmbeddedServiceBranding EmbeddedServiceBranding EmbeddedServiceFlowConfig false false EmbeddedServiceFlowConfig EmbeddedServiceFlowConfig EmbeddedServiceMenuSettings false false EmbeddedServiceMenuSettings EmbeddedServiceMenuSettings callCoachingMediaProviders false false callCoachingMediaProvider CallCoachingMediaProvider actionPlanTemplates false false apt ActionPlanTemplate participantRoles false false participantRole ParticipantRole uiObjectRelationConfigs false false uiObjectRelationConfig UIObjectRelationConfig careRequestConfigurations false false careRequestConfiguration CareRequestConfiguration timelineObjectDefinitions false false timelineObjectDefinition TimelineObjectDefinition careBenefitVerifySettings false false careBenefitVerifySettings CareBenefitVerifySettings userProfileSearchScopes false false userProfileSearchScope UserProfileSearchScope relationshipGraphDefinitions false false relationshipGraphDefinition RelationshipGraphDefinition searchCustomizations false false searchCustomization SearchCustomization PlatformEventSubscriberConfigs false false platformEventSubscriberConfig PlatformEventSubscriberConfig SchedulingObjectives false false schedulingObjective SchedulingObjective recordAlertDataSources false false recordAlertDataSource RecordAlertDataSource recAlrtDataSrcExpSetDefs false false recAlrtDataSrcExpSetDef RecAlrtDataSrcExpSetDef recordAlertTemplates false false recordAlertTemplate RecordAlertTemplate careProviderSearchConfigs false false careProviderSearchConfig CareProviderSearchConfig careLimitTypes false false careLimitType CareLimitType SchedulingRules false false schedulingRule SchedulingRule settings false false settings Settings true false contentMediaType: text/xml; charset=utf-8 example: |- installedPackages false false installedPackage InstalledPackage CustomLabel labels false false labels CustomLabels staticresources false true resource StaticResource scontrols false true scf Scontrol certs false true crt Certificate messageChannels false false messageChannel LightningMessageChannel lwc false false LightningComponentBundle aura false false AuraDefinitionBundle components false true component ApexComponent pages false true page ApexPage queues false false queue Queue inboundNetworkConnections false false inboundNetworkConnection InboundNetworkConnection outboundNetworkConnections false false outboundNetworkConnection OutboundNetworkConnection externalCredentials false false externalCredential ExternalCredential namedCredentials false false namedCredential NamedCredential ExternalDataSrcDescriptor dataSources false false dataSource ExternalDataSource externalServiceRegistrations false false externalServiceRegistration ExternalServiceRegistration roles false false role Role groups false false group Group globalValueSets false false globalValueSet GlobalValueSet standardValueSets false false standardValueSet StandardValueSet customPermissions false false customPermission CustomPermission ["CustomField","Index","BusinessProcess","RecordType","CompactLayout","WebLink","ValidationRule","SharingReason","ListView","FieldSet"] objects false false object CustomObject reportTypes false false reportType ReportType reports true false report Report dashboards true false dashboard Dashboard analyticSnapshots false false snapshot AnalyticSnapshot feedFilters false false feedFilter CustomFeedFilter layouts false false layout Layout documents true true Document weblinks false false weblink CustomPageWebLink letterhead false false letter Letterhead email true true email EmailTemplate quickActions false false quickAction QuickAction flexipages false false flexipage FlexiPage tabs false false tab CustomTab customApplicationComponents false false customApplicationComponent CustomApplicationComponent applications false false app CustomApplication customMetadata false false md CustomMetadata flows false false flow Flow flowDefinitions false false flowDefinition FlowDefinition flowtests false false flowtest FlowTest processflowmigrations false false processflowmigration ProcessFlowMigration contentassets false true asset ContentAsset ["WorkflowFieldUpdate","WorkflowKnowledgePublish","WorkflowTask","WorkflowAlert","WorkflowSend","WorkflowOutboundMessage","WorkflowRule"] workflows false false workflow Workflow AssignmentRule assignmentRules false false assignmentRules AssignmentRules AutoResponseRule autoResponseRules false false autoResponseRules AutoResponseRules EscalationRule escalationRules false false escalationRules EscalationRules postTemplates false false postTemplate PostTemplate approvalProcesses false false approvalProcess ApprovalProcess homePageComponents false false homePageComponent HomePageComponent homePageLayouts false false homePageLayout HomePageLayout objectTranslations false false objectTranslation CustomObjectTranslation translations false false translation Translations globalValueSetTranslations false false globalValueSetTranslation GlobalValueSetTranslation standardValueSetTranslations false false standardValueSetTranslation StandardValueSetTranslation dw false true DataWeaveResource classes false true cls ApexClass triggers false true trigger ApexTrigger testSuites false false testSuite ApexTestSuite profiles false false profile Profile permissionsets false false permissionset PermissionSet mutingpermissionsets false false mutingpermissionset MutingPermissionSet permissionsetgroups false false permissionsetgroup PermissionSetGroup profilePasswordPolicies false false profilePasswordPolicy ProfilePasswordPolicy profileSessionSettings false false profileSessionSetting ProfileSessionSetting myDomainDiscoverableLogins false false myDomainDiscoverableLogin MyDomainDiscoverableLogin blacklistedConsumers false false blacklistedConsumer BlacklistedConsumer oauthcustomscopes false false oauthcustomscope OauthCustomScope userProvisioningConfigs false false userProvisioningConfig UserProvisioningConfig datacategorygroups false false datacategorygroup DataCategoryGroup remoteSiteSettings false false remoteSite RemoteSiteSetting cspTrustedSites false false cspTrustedSite CspTrustedSite redirectWhitelistUrls false false redirectWhitelistUrl RedirectWhitelistUrl MatchingRule matchingRules false false matchingRule MatchingRules duplicateRules false false duplicateRule DuplicateRule cleanDataServices false false cleanDataService CleanDataService customindex false false indx CustomIndex skilltypes false false skilltype SkillType skills false false skill Skill authproviders false false authprovider AuthProvider eclair false true geodata EclairGeoData IPAddressRanges false false IPAddressRange IPAddressRange briefcaseDefinitions false false briefcaseDefinition BriefcaseDefinition channelLayouts false false channelLayout ChannelLayout sites false false site CustomSite recordAlertCategories false false recordAlertCategory RecordAlertCategory apexEmailNotifications false false notifications ApexEmailNotifications ["SharingOwnerRule","SharingCriteriaRule","SharingGuestRule"] sharingRules false false sharingRules SharingRules sharingSets false false sharingSet SharingSet iframeWhiteListUrlSettings false false iframeWhiteListUrlSettings IframeWhiteListUrlSettings communities false false community Community ChatterExtensions false false ChatterExtension ChatterExtension decisionTables false false decisionTable DecisionTable decisionTableDatasetLinks false false decisionTableDatasetLink DecisionTableDatasetLink aiApplications false false ai AIApplication aiApplicationConfigs false false aiapplicationconfig AIApplicationConfig mlPredictions false false mlPrediction MLPredictionDefinition mlRecommendations false false mlRecommendation MLRecommendationDefinition mlDataDefinitions false false mlDataDefinition MLDataDefinition batchProcessJobDefinitions false false batchProcessJobDefinition BatchProcessJobDefinition batchCalcJobDefinitions false false batchCalcJobDefinition BatchCalcJobDefinition ExplainabilityMsgTemplates false false explainabilityMsgTemplate ExplainabilityMsgTemplate expressionSetDefinition false false expressionSetDefinition ExpressionSetDefinition expressionSetVersion false false expressionSetVersion ExpressionSetDefinitionVersion decisionMatrixDefinition false false decisionMatrixDefinition DecisionMatrixDefinition decisionMatrixVersion false false decisionMatrixVersion DecisionMatrixDefinitionVersion expressionSetObjectAlias false false expressionSetObjectAlias ExpressionSetObjectAlias platformEventChannels false false platformEventChannel PlatformEventChannel platformEventChannelMembers false false platformEventChannelMember PlatformEventChannelMember eventRelays false false eventRelay EventRelayConfig callCenters false false callCenter CallCenter milestoneTypes false false milestoneType MilestoneType entitlementProcesses false false entitlementProcess EntitlementProcess entitlementTemplates false false entitlementTemplate EntitlementTemplate timeSheetTemplates false false timeSheetTemplate TimeSheetTemplate appointmentAssignmentPolicies false false policy AppointmentAssignmentPolicy appointmentSchedulingPolicies false false policy AppointmentSchedulingPolicy documentTypes false false documentType DocumentType messagingChannels false false messagingChannel MessagingChannel Canvases false false Canvas CanvasMetadata MobileApplicationDetails false false MobileApplicationDetail MobileApplicationDetail notificationtypes false false notiftype CustomNotificationType connectedApps false false connectedApp ConnectedApp appMenus false false appMenu AppMenu notificationTypeConfig false false config NotificationTypeConfig delegateGroups false false delegateGroup DelegateGroup brandingSets false false brandingSet BrandingSet managedContentTypes false false managedContentType ManagedContentType experiencePropertyTypeBundles false false experiencePropertyTypeBundle ExperiencePropertyTypeBundle DigitalExperience digitalExperiences false true digitalExperience DigitalExperienceBundle siteDotComSites false true site SiteDotCom networkBranding false true networkBranding NetworkBranding flowCategories false false flowCategory FlowCategory lightningBolts false false lightningBolt LightningBolt lightningExperienceThemes false false lightningExperienceTheme LightningExperienceTheme lightningOnboardingConfigs false false lightningOnboardingConfig LightningOnboardingConfig customHelpMenuSections false false customHelpMenuSection CustomHelpMenuSection prompts false false prompt Prompt samlssoconfigs false false samlssoconfig SamlSsoConfig corsWhitelistOrigins false false corsWhitelistOrigin CorsWhitelistOrigin actionLinkGroupTemplates false false actionLinkGroupTemplate ActionLinkGroupTemplate transactionSecurityPolicies false false transactionSecurityPolicy TransactionSecurityPolicy synonymDictionaries false false synonymDictionary SynonymDictionary pathAssistants false false pathAssistant PathAssistant animationRules false false animationRule AnimationRule LeadConvertSettings false false LeadConvertSetting LeadConvertSettings cachePartitions false false cachePartition PlatformCachePartition topicsForObjects false false topicsForObjects TopicsForObjects restrictionRules false false rule RestrictionRule fieldRestrictionRules false false rule FieldRestrictionRule recommendationStrategies false false recommendationStrategy RecommendationStrategy entityImplements false false entityImplements EntityImplements emailservices false false xml EmailServicesFunction paymentGatewayProviders false false paymentGatewayProvider PaymentGatewayProvider gatewayProviderPaymentMethodTypes false false gatewayProviderPaymentMethodType GatewayProviderPaymentMethodType ActionLauncherItemDef false false actionLauncherItemDef ActionLauncherItemDef recordActionDeployments false false deployment RecordActionDeployment salesAgreementSettings false false salesAgreementSetting SalesAgreementSettings ObjectHierarchyRelationship false false settings ObjectHierarchyRelationship acctMgrTargetSettings false false acctMgrTargetSetting AcctMgrTargetSettings AccountForecastSettings false false accountForecastSetting AccountForecastSettings AdvAcctForecastPeriodGroup false false advAcctForecastPeriodGroup AdvAcctForecastPeriodGroup AdvAccountForecastSet false false advAccountForecastSet AdvAccountForecastSet AdvAcctForecastDimSource false false advAcctForecastDimSource AdvAcctForecastDimSource BusinessProcessTypeDefinitions false false businessProcessTypeDefinition BusinessProcessTypeDefinition ApplicationSubtypeDefinitions false false applicationSubtypeDefinition ApplicationSubtypeDefinition ExplainabilityActionDefinitions false false explainabilityActionDefinition ExplainabilityActionDefinition ExplainabilityActionVersions false false explainabilityActionVersion ExplainabilityActionVersion icons false false icon Icon EmbeddedServiceConfig false false EmbeddedServiceConfig EmbeddedServiceConfig EmbeddedServiceBranding false false EmbeddedServiceBranding EmbeddedServiceBranding EmbeddedServiceFlowConfig false false EmbeddedServiceFlowConfig EmbeddedServiceFlowConfig EmbeddedServiceMenuSettings false false EmbeddedServiceMenuSettings EmbeddedServiceMenuSettings callCoachingMediaProviders false false callCoachingMediaProvider CallCoachingMediaProvider actionPlanTemplates false false apt ActionPlanTemplate participantRoles false false participantRole ParticipantRole uiObjectRelationConfigs false false uiObjectRelationConfig UIObjectRelationConfig careRequestConfigurations false false careRequestConfiguration CareRequestConfiguration timelineObjectDefinitions false false timelineObjectDefinition TimelineObjectDefinition careBenefitVerifySettings false false careBenefitVerifySettings CareBenefitVerifySettings userProfileSearchScopes false false userProfileSearchScope UserProfileSearchScope relationshipGraphDefinitions false false relationshipGraphDefinition RelationshipGraphDefinition searchCustomizations false false searchCustomization SearchCustomization PlatformEventSubscriberConfigs false false platformEventSubscriberConfig PlatformEventSubscriberConfig SchedulingObjectives false false schedulingObjective SchedulingObjective recordAlertDataSources false false recordAlertDataSource RecordAlertDataSource recAlrtDataSrcExpSetDefs false false recAlrtDataSrcExpSetDef RecAlrtDataSrcExpSetDef recordAlertTemplates false false recordAlertTemplate RecordAlertTemplate careProviderSearchConfigs false false careProviderSearchConfig CareProviderSearchConfig careLimitTypes false false careLimitType CareLimitType SchedulingRules false false schedulingRule SchedulingRule settings false false settings Settings true false deprecated: false security: [] servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/actions/custom/runExpressionSet/{expressionSetAPIName}: post: tags: - Data summary: Salesforce Runexpressionset description: "# Expression Set Actions\n\nInvoke an active expression set. An expression set is a user-defined rule that accepts an input and returns the output based on the configured function.\n\ \nThe configured function of an expression set can be a simple decision matrix lookup, a calculation based on a mathematical formula, a condition, or another expression set.\n\nThese actions are available in API version 55.0 and later.\n\n## Supported REST HTTP Methods\n\nURI/services/data/v55.0/actions/custom/runExpressionSet/{ApiName}\n\n> `Note` \n \n> `The API name of an expression set is unique within your Salesforce instance.` \n \n\nFormats\n\nJSON\n\nHTTP Methods\n\nPOST\n\nAuthentication\n\nAuthorization: Bearer token\n\n## Inputs\n\nVary depending on the selected expression set.\n\n## Outputs\n\nVary depending on the inputs of the selected expression set.\n\n## Usage\n\nThis section has the sample request and response for invoking an expression set that does the following:\n\ \n1. Find the tax percentage and the premium corresponding to specific age and salary using a decision matrix lookup.\n \n2. Check the age criterion to calculate the total tax.\n \n3. Calculate the total tax to be paid based on the age group, salary, and the tax percentage.\n \n\nSample request\n\nHere’s an example POST request that has the inputs, such as, age and salary:\n\n```\n\ {\n \"inputs\":[\n {\n \"Age\":\"25.00\",\n \"Salary\":\"50000.00\"\n }\n ]\n}\n\n ```\n\nSample response\n\nHere’s an example response that has the premium and tax values based on the inputs provided in the example request:\n\n```\n[\n {\n \"actionName\":\"TaxPremiumES\",\n \"errors\":null,\n \"isSuccess\":true,\n \"outputValues\":{\n\ \ \"TaxPremium__Premium\":1000,\n \"TaxPremium__Tax\":10,\n \"TaxToBePaid\":1050,\n \"condition_output__2\":\"false\",\n \"condition_output__1\":\"true\"\n\ \ }\n }\n]\n\n ```" operationId: runExpressionSet parameters: - name: expressionSetAPIName in: path description: >- The API name of an expression set is unique within your Salesforce instance. required: true schema: type: string examples: - myExpressionSet example: example_value requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/runExpressionSetRequest' - examples: - inputs: - {} contentMediaType: application/json example: inputs: - {} required: true responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Thu, 07 Sep 2023 09:08:00 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=5/15000 Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: type: array items: $ref: '#/components/schemas/Status200-Successfull' description: '' examples: - - actionName: myExpressionSet errors: isSuccess: true outputValues: output: 1 version: 1 contentMediaType: application/json;charset=UTF-8 example: - actionName: myExpressionSet errors: isSuccess: true outputValues: output: 1 version: 1 '400': description: Bad Request headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Thu, 07 Sep 2023 09:04:01 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=1/15000 Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: type: array items: $ref: '#/components/schemas/Status400-EmptyExpressionSetAPIName1' description: '' examples: - - actionName: ':expressionSetAPIName' errors: - statusCode: MISSING_RECORD message: 'Action name not found: :expressionSetAPIName' fields: [] isSuccess: false outputValues: version: 1 contentMediaType: application/json;charset=UTF-8 example: - actionName: ':expressionSetAPIName' errors: - statusCode: MISSING_RECORD message: 'Action name not found: :expressionSetAPIName' fields: [] isSuccess: false outputValues: version: 1 deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/actions/custom/runDecisionMatrix/{UniqueName}: post: tags: - Data summary: Salesforce Rundecisionmatrix description: "# Decision Matrix Actions\n\nInvoke a decision matrix in a flow with the Decision Matrix Actions. A decision matrix is a user-defined table where you can look up an output based on the inputs you provide.\n\nFor example, you can look up a candidate’s eligibility to avail medical insurance in a decision matrix based on the candidate’s age and gender.\n\nThese actions are available in API version 55.0 and later.\n\n## Supported REST HTTP Methods\n\nURI/services/data/v55.0/actions/custom/runDecisionMatrix/{UniqueName}\n\nNote\n\nThe value of UniqueName is the unique identifier of the record, which is sourced from the name of a decision matrix.\n\nFormatsJSONHTTP MethodsPOSTAuthenticationAuthorization: Bearer token\n\n## Inputs\n\nVary depending on the selected decision matrix.\n\n## Outputs\n\nVary depending on the inputs of the selected decision matrix.\n\n## Usage\n\nSample Request\n\nHere’s an example POST request that has the inputs, such as, age and state:\n\ \n```\n{\n \"inputs\":[\n {\n \"age\":\"25\",\n \"state\":\"NY\"\n },\n {\n \"age\":\"25\",\n \"state\":\"CA\"\n },\n {\n \"age\"\ :\"\",\n \"state\":\"WA\"\n }\n ]\n}\n\n ```\n\nSample Response\n\nHere’s an example response that has the premium and tax values based on the inputs provided in the example request.\n\ \n```\n[\n {\n \"actionName\":\"premiumTaxLookup\",\n \"errors\":null,\n \"isSuccess\":true,\n \"outputValues\":{\n \"premium\":2400.0,\n \"tax\":200.0\n \ \ }\n },\n {\n \"actionName\":\"premiumTaxLookup\",\n \"errors\":null,\n \"isSuccess\":true,\n \"outputValues\":{\n \"premium\":2400.0,\n \"tax\":200.0\n\ \ }\n },\n {\n \"actionName\":\"premiumTaxLookup\",\n \"errors\":[\n {\n \"statusCode\":\"REQUIRED_FIELD_MISSING\",\n \"message\":\"Missing required input parameter: age\",\n \"fields\":[\n ]\n }\n ],\n \"isSuccess\":false,\n \"outputValues\":null\n }\n]\n\n ```" operationId: runDecisionMatrix parameters: - name: UniqueName in: path description: >- The value of UniqueName is the unique identifier of the record, which is sourced from the name of a decision matrix. required: true schema: type: string examples: - myDecisionMatrix example: example_value requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/runDecisionMatrixRequest' - examples: - inputs: - myColumnInput: One contentMediaType: application/json example: inputs: - myColumnInput: One required: true responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Thu, 07 Sep 2023 13:00:30 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=15/15000 Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: type: array items: $ref: '#/components/schemas/runDecisionMatrix' description: '' examples: - - actionName: myDecisionMatrix errors: isSuccess: true outputValues: myColumnOutput: '1' version: 1 contentMediaType: application/json;charset=UTF-8 example: - actionName: myDecisionMatrix errors: isSuccess: true outputValues: myColumnOutput: '1' version: 1 deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/actions/standard: get: tags: - Actions - Standard summary: Salesforce Standard Invocable Actions description: >- Returns the list of actions that can be statically invoked. You can also get basic information for each type of action. This resource is available in REST API version 32.0 and later. operationId: StandardInvocableActions parameters: - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/actions/custom: get: tags: - Actions - Custom summary: Salesforce Custom Invocable Actions description: >- Returns the list of all custom actions. You can also get basic information for each type of action. This resource is available in REST API version 32.0 and later. operationId: CustomInvocableActions parameters: - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/actions/custom/flow/{flowApiName}: post: tags: - Flow - Launch summary: Salesforce Launch Flow description: Launches an Autolaunched Flow with the supplied input parameters. operationId: LaunchFlow parameters: - name: flowApiName in: path description: Flow API Name required: true schema: type: string example: example_value requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/LaunchFlowRequest' - examples: - inputs: - {} contentMediaType: application/json example: inputs: - {} required: true responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/quickActions: get: tags: - Actions summary: Salesforce Quick Actions description: >- Returns a list of global actions and object-specific actions. This resource is available in REST API version 28.0 and later. When working with actions, also refer to SObject Quick Actions. https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_quickactions.htm operationId: QuickActions parameters: - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/ui-api/actions/global: get: tags: - Actions - Get - Global summary: Salesforce Get Global Actions description: Get the actions on record detail pages. operationId: GetGlobalActions parameters: [] responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Fri, 06 Oct 2023 10:14:55 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private ETag: content: text/plain: schema: type: string contentMediaType: text/plain example: '"96082978ff1803b51fcee9ce34121cfa--gzip"' Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/GetGlobalActions' - examples: - actions: Global: actions: - actionListContext: Global actionTarget: actionTargetType: apiName: FeedItem.TextPost externalId: >- 00D58000000arpq:Global::Global:Desktop:FeedItem.TextPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_post_120.png id: 0JV4H0000279052WAA isMassAction: 'false' label: Post lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: CollaborateComposer sourceObject: Global subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Global actionTarget: actionTargetType: apiName: FeedItem.ContentPost externalId: >- 00D58000000arpq:Global::Global:Desktop:FeedItem.ContentPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_file_120.png id: 0JV4H0000279053WAA isMassAction: 'false' label: File lwcComponent: primaryColor: '939393' relatedListRecordId: relatedSourceObject: section: sourceObject: Global subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Global actionTarget: >- /services/data/v58.0/quickActions/NewEvent/describe actionTargetType: Describe apiName: Global.NewEvent externalId: >- 00D58000000arpq:Global::Global:Desktop:09D58000002PE2j iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_event_120.png id: 0JV4H0000279054WAA isMassAction: 'false' label: New Event lwcComponent: primaryColor: FF538A relatedListRecordId: relatedSourceObject: section: ActivityComposer sourceObject: Global subtype: Create targetObject: Event targetUrl: type: QuickAction - actionListContext: Global actionTarget: >- /services/data/v58.0/quickActions/NewTask/describe actionTargetType: Describe apiName: Global.NewTask externalId: >- 00D58000000arpq:Global::Global:Desktop:09D58000002PE2f iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_task_120.png id: 0JV4H0000279055WAA isMassAction: 'false' label: New Task lwcComponent: primaryColor: 3BA755 relatedListRecordId: relatedSourceObject: section: ActivityComposer sourceObject: Global subtype: Create targetObject: Task targetUrl: type: QuickAction - actionListContext: Global actionTarget: >- /services/data/v58.0/quickActions/NewContact/describe actionTargetType: Describe apiName: Global.NewContact externalId: >- 00D58000000arpq:Global::Global:Desktop:09D58000002PE2k iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_contact_120.png id: 0JV4H0000279056WAA isMassAction: 'false' label: New Contact lwcComponent: primaryColor: '5867E8' relatedListRecordId: relatedSourceObject: section: Page sourceObject: Global subtype: Create targetObject: Contact targetUrl: type: QuickAction - actionListContext: Global actionTarget: >- /services/data/v58.0/quickActions/LogACall/describe actionTargetType: Describe apiName: Global.LogACall externalId: >- 00D58000000arpq:Global::Global:Desktop:09D58000002PE2g iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/log_a_call_120.png id: 0JV4H0000279057WAA isMassAction: 'false' label: Log a Call lwcComponent: primaryColor: 06A59A relatedListRecordId: relatedSourceObject: section: ActivityComposer sourceObject: Global subtype: LogACall targetObject: Task targetUrl: type: QuickAction - actionListContext: Global actionTarget: >- /services/data/v58.0/quickActions/NewOpportunity/describe actionTargetType: Describe apiName: Global.NewOpportunity externalId: >- 00D58000000arpq:Global::Global:Desktop:09D58000002PE2l iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_opportunity_120.png id: 0JV4H0000279058WAA isMassAction: 'false' label: New Opportunity lwcComponent: primaryColor: FF5D2D relatedListRecordId: relatedSourceObject: section: Page sourceObject: Global subtype: Create targetObject: Opportunity targetUrl: type: QuickAction - actionListContext: Global actionTarget: >- /services/data/v58.0/quickActions/NewCase/describe actionTargetType: Describe apiName: Global.NewCase externalId: >- 00D58000000arpq:Global::Global:Desktop:09D58000002PE2h iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_case_120.png id: 0JV4H0000279059WAA isMassAction: 'false' label: New Case lwcComponent: primaryColor: FF5D2D relatedListRecordId: relatedSourceObject: section: Page sourceObject: Global subtype: Create targetObject: Case targetUrl: type: QuickAction - actionListContext: Global actionTarget: >- /services/data/v58.0/quickActions/NewLead/describe actionTargetType: Describe apiName: Global.NewLead externalId: >- 00D58000000arpq:Global::Global:Desktop:09D58000002PE2m iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_lead_120.png id: 0JV4H0000279060WAA isMassAction: 'false' label: New Lead lwcComponent: primaryColor: FF5D2D relatedListRecordId: relatedSourceObject: section: Page sourceObject: Global subtype: Create targetObject: Lead targetUrl: type: QuickAction - actionListContext: Global actionTarget: actionTargetType: apiName: FeedItem.LinkPost externalId: >- 00D58000000arpq:Global::Global:Desktop:FeedItem.LinkPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_link_120.png id: 0JV4H0000279061WAA isMassAction: 'false' label: Link lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: sourceObject: Global subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Global actionTarget: actionTargetType: apiName: FeedItem.PollPost externalId: >- 00D58000000arpq:Global::Global:Desktop:FeedItem.PollPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_poll_120.png id: 0JV4H0000279062WAA isMassAction: 'false' label: Poll lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: CollaborateComposer sourceObject: Global subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Global actionTarget: actionTargetType: apiName: FeedItem.QuestionPost externalId: >- 00D58000000arpq:Global::Global:Desktop:FeedItem.QuestionPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/question_post_action_120.png id: 0JV4H0000279063WAA isMassAction: 'false' label: Question lwcComponent: primaryColor: 3BA755 relatedListRecordId: relatedSourceObject: section: CollaborateComposer sourceObject: Global subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Global actionTarget: >- /services/data/v58.0/quickActions/New_Detailed_Account/describe actionTargetType: Describe apiName: Global.New_Detailed_Account externalId: >- 00D58000000arpq:Global::Global:Desktop:09D58000002Pbt9 iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_account_120.png id: 0JV4H0000279064WAA isMassAction: 'false' label: New Detailed Account lwcComponent: primaryColor: '5867E8' relatedListRecordId: relatedSourceObject: section: Page sourceObject: Global subtype: Create targetObject: Account targetUrl: type: QuickAction links: [] url: /services/data/v58.0/ui-api/actions/global eTag: 96082978ff1803b51fcee9ce34121cfa url: /services/data/v58.0/ui-api/actions/global contentMediaType: application/json;charset=UTF-8 example: actions: Global: actions: - actionListContext: Global actionTarget: actionTargetType: apiName: FeedItem.TextPost externalId: >- 00D58000000arpq:Global::Global:Desktop:FeedItem.TextPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_post_120.png id: 0JV4H0000279052WAA isMassAction: 'false' label: Post lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: CollaborateComposer sourceObject: Global subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Global actionTarget: actionTargetType: apiName: FeedItem.ContentPost externalId: >- 00D58000000arpq:Global::Global:Desktop:FeedItem.ContentPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_file_120.png id: 0JV4H0000279053WAA isMassAction: 'false' label: File lwcComponent: primaryColor: '939393' relatedListRecordId: relatedSourceObject: section: sourceObject: Global subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Global actionTarget: /services/data/v58.0/quickActions/NewEvent/describe actionTargetType: Describe apiName: Global.NewEvent externalId: 00D58000000arpq:Global::Global:Desktop:09D58000002PE2j iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_event_120.png id: 0JV4H0000279054WAA isMassAction: 'false' label: New Event lwcComponent: primaryColor: FF538A relatedListRecordId: relatedSourceObject: section: ActivityComposer sourceObject: Global subtype: Create targetObject: Event targetUrl: type: QuickAction - actionListContext: Global actionTarget: /services/data/v58.0/quickActions/NewTask/describe actionTargetType: Describe apiName: Global.NewTask externalId: 00D58000000arpq:Global::Global:Desktop:09D58000002PE2f iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_task_120.png id: 0JV4H0000279055WAA isMassAction: 'false' label: New Task lwcComponent: primaryColor: 3BA755 relatedListRecordId: relatedSourceObject: section: ActivityComposer sourceObject: Global subtype: Create targetObject: Task targetUrl: type: QuickAction - actionListContext: Global actionTarget: /services/data/v58.0/quickActions/NewContact/describe actionTargetType: Describe apiName: Global.NewContact externalId: 00D58000000arpq:Global::Global:Desktop:09D58000002PE2k iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_contact_120.png id: 0JV4H0000279056WAA isMassAction: 'false' label: New Contact lwcComponent: primaryColor: '5867E8' relatedListRecordId: relatedSourceObject: section: Page sourceObject: Global subtype: Create targetObject: Contact targetUrl: type: QuickAction - actionListContext: Global actionTarget: /services/data/v58.0/quickActions/LogACall/describe actionTargetType: Describe apiName: Global.LogACall externalId: 00D58000000arpq:Global::Global:Desktop:09D58000002PE2g iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/log_a_call_120.png id: 0JV4H0000279057WAA isMassAction: 'false' label: Log a Call lwcComponent: primaryColor: 06A59A relatedListRecordId: relatedSourceObject: section: ActivityComposer sourceObject: Global subtype: LogACall targetObject: Task targetUrl: type: QuickAction - actionListContext: Global actionTarget: >- /services/data/v58.0/quickActions/NewOpportunity/describe actionTargetType: Describe apiName: Global.NewOpportunity externalId: 00D58000000arpq:Global::Global:Desktop:09D58000002PE2l iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_opportunity_120.png id: 0JV4H0000279058WAA isMassAction: 'false' label: New Opportunity lwcComponent: primaryColor: FF5D2D relatedListRecordId: relatedSourceObject: section: Page sourceObject: Global subtype: Create targetObject: Opportunity targetUrl: type: QuickAction - actionListContext: Global actionTarget: /services/data/v58.0/quickActions/NewCase/describe actionTargetType: Describe apiName: Global.NewCase externalId: 00D58000000arpq:Global::Global:Desktop:09D58000002PE2h iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_case_120.png id: 0JV4H0000279059WAA isMassAction: 'false' label: New Case lwcComponent: primaryColor: FF5D2D relatedListRecordId: relatedSourceObject: section: Page sourceObject: Global subtype: Create targetObject: Case targetUrl: type: QuickAction - actionListContext: Global actionTarget: /services/data/v58.0/quickActions/NewLead/describe actionTargetType: Describe apiName: Global.NewLead externalId: 00D58000000arpq:Global::Global:Desktop:09D58000002PE2m iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_lead_120.png id: 0JV4H0000279060WAA isMassAction: 'false' label: New Lead lwcComponent: primaryColor: FF5D2D relatedListRecordId: relatedSourceObject: section: Page sourceObject: Global subtype: Create targetObject: Lead targetUrl: type: QuickAction - actionListContext: Global actionTarget: actionTargetType: apiName: FeedItem.LinkPost externalId: >- 00D58000000arpq:Global::Global:Desktop:FeedItem.LinkPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_link_120.png id: 0JV4H0000279061WAA isMassAction: 'false' label: Link lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: sourceObject: Global subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Global actionTarget: actionTargetType: apiName: FeedItem.PollPost externalId: >- 00D58000000arpq:Global::Global:Desktop:FeedItem.PollPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_poll_120.png id: 0JV4H0000279062WAA isMassAction: 'false' label: Poll lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: CollaborateComposer sourceObject: Global subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Global actionTarget: actionTargetType: apiName: FeedItem.QuestionPost externalId: >- 00D58000000arpq:Global::Global:Desktop:FeedItem.QuestionPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/question_post_action_120.png id: 0JV4H0000279063WAA isMassAction: 'false' label: Question lwcComponent: primaryColor: 3BA755 relatedListRecordId: relatedSourceObject: section: CollaborateComposer sourceObject: Global subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Global actionTarget: >- /services/data/v58.0/quickActions/New_Detailed_Account/describe actionTargetType: Describe apiName: Global.New_Detailed_Account externalId: 00D58000000arpq:Global::Global:Desktop:09D58000002Pbt9 iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_account_120.png id: 0JV4H0000279064WAA isMassAction: 'false' label: New Detailed Account lwcComponent: primaryColor: '5867E8' relatedListRecordId: relatedSourceObject: section: Page sourceObject: Global subtype: Create targetObject: Account targetUrl: type: QuickAction links: [] url: /services/data/v58.0/ui-api/actions/global eTag: 96082978ff1803b51fcee9ce34121cfa url: /services/data/v58.0/ui-api/actions/global deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/ui-api/actions/record/{RECORD_IDS}: get: tags: - Actions - Detail - Get - Pages - Record summary: Salesforce Get Record Detail Page Actions description: Get the actions on record detail pages. operationId: GetRecordDetailPageActions parameters: - name: RECORD_IDS in: path description: A single record ID, or a comma-delimited list of record IDs. required: true schema: type: string example: example_value responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Fri, 06 Oct 2023 10:16:27 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private ETag: content: text/plain: schema: type: string contentMediaType: text/plain example: '"070a59ceff1430940937c233f1b952dd--gzip"' Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/GetRecordDetailPageActions' - examples: - actions: 0014H00002LbR7QQAV: actions: - actionListContext: Chatter actionTarget: actionTargetType: Invoke apiName: Follow externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Chatter:Desktop:StandardButton:Follow iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/follow_120.png id: 0JV4H0000328007WAA isMassAction: 'false' label: Follow lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: SingleActionLinks sourceObject: 0014H00002LbR7QQAV subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Chatter actionTarget: actionTargetType: apiName: FollowInStream externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Chatter:Desktop:StandardButton:FollowInStream iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/follow_120.png id: 0JV4H0000328008WAA isMassAction: 'false' label: Follow in Stream lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: SingleActionLinks sourceObject: 0014H00002LbR7QQAV subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: >- /services/data/v58.0/quickActions/NewTask/describe actionTargetType: Describe apiName: Global.NewTask externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:09D58000002PE2f iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_task_120.png id: 0JV4H0000328011WAA isMassAction: 'false' label: New Task lwcComponent: primaryColor: 3BA755 relatedListRecordId: relatedSourceObject: section: ActivityComposer sourceObject: 0014H00002LbR7QQAV subtype: Create targetObject: Task targetUrl: type: QuickAction - actionListContext: Record actionTarget: >- /services/data/v58.0/quickActions/NewEvent/describe actionTargetType: Describe apiName: Global.NewEvent externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:09D58000002PE2j iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_event_120.png id: 0JV4H0000328012WAA isMassAction: 'false' label: New Event lwcComponent: primaryColor: FF538A relatedListRecordId: relatedSourceObject: section: ActivityComposer sourceObject: 0014H00002LbR7QQAV subtype: Create targetObject: Event targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: apiName: FeedItem.TextPost externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:FeedItem.TextPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_post_120.png id: 0JV4H0000328013WAA isMassAction: 'false' label: Post lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: CollaborateComposer sourceObject: 0014H00002LbR7QQAV subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: Edit externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:StandardButton:Edit iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/edit_120.png id: 0JV4H0000328014WAA isMassAction: 'false' label: Edit lwcComponent: dxp_records:lwcEditActionHandler primaryColor: 06A59A relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: ScreenAction targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: apiName: FeedItem.ContentPost externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:FeedItem.ContentPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_file_120.png id: 0JV4H0000328015WAA isMassAction: 'false' label: File lwcComponent: primaryColor: '939393' relatedListRecordId: relatedSourceObject: section: sourceObject: 0014H00002LbR7QQAV subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Record actionTarget: >- /services/data/v58.0/quickActions/NewContact/describe actionTargetType: Describe apiName: Global.NewContact externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:09D58000002PE2k iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_contact_120.png id: 0JV4H0000328016WAA isMassAction: 'false' label: New Contact lwcComponent: primaryColor: '5867E8' relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: Create targetObject: Contact targetUrl: type: QuickAction - actionListContext: Record actionTarget: >- /services/data/v58.0/quickActions/LogACall/describe actionTargetType: Describe apiName: Global.LogACall externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:09D58000002PE2g iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/log_a_call_120.png id: 0JV4H0000328017WAA isMassAction: 'false' label: Log a Call lwcComponent: primaryColor: 06A59A relatedListRecordId: relatedSourceObject: section: ActivityComposer sourceObject: 0014H00002LbR7QQAV subtype: LogACall targetObject: Task targetUrl: type: QuickAction - actionListContext: Record actionTarget: >- /services/data/v58.0/quickActions/NewOpportunity/describe actionTargetType: Describe apiName: Global.NewOpportunity externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:09D58000002PE2l iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_opportunity_120.png id: 0JV4H0000328018WAA isMassAction: 'false' label: New Opportunity lwcComponent: primaryColor: FF5D2D relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: Create targetObject: Opportunity targetUrl: type: QuickAction - actionListContext: Record actionTarget: >- /services/data/v58.0/quickActions/NewCase/describe actionTargetType: Describe apiName: Global.NewCase externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:09D58000002PE2h iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_case_120.png id: 0JV4H0000328019WAA isMassAction: 'false' label: New Case lwcComponent: primaryColor: FF5D2D relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: Create targetObject: Case targetUrl: type: QuickAction - actionListContext: Record actionTarget: >- /services/data/v58.0/quickActions/NewLead/describe actionTargetType: Describe apiName: Global.NewLead externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:09D58000002PE2m iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_lead_120.png id: 0JV4H0000328020WAA isMassAction: 'false' label: New Lead lwcComponent: primaryColor: FF5D2D relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: Create targetObject: Lead targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: apiName: FeedItem.LinkPost externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:FeedItem.LinkPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_link_120.png id: 0JV4H0000328021WAA isMassAction: 'false' label: Link lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: sourceObject: 0014H00002LbR7QQAV subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: apiName: FeedItem.PollPost externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:FeedItem.PollPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_poll_120.png id: 0JV4H0000328022WAA isMassAction: 'false' label: Poll lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: CollaborateComposer sourceObject: 0014H00002LbR7QQAV subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: apiName: FeedItem.QuestionPost externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:FeedItem.QuestionPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/question_post_action_120.png id: 0JV4H0000328023WAA isMassAction: 'false' label: Question lwcComponent: primaryColor: 3BA755 relatedListRecordId: relatedSourceObject: section: CollaborateComposer sourceObject: 0014H00002LbR7QQAV subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Record actionTarget: >- /services/data/v58.0/quickActions/New_Detailed_Account/describe actionTargetType: Describe apiName: Global.New_Detailed_Account externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:09D58000002Pbt9 iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_account_120.png id: 0JV4H0000328024WAA isMassAction: 'false' label: New Detailed Account lwcComponent: primaryColor: '5867E8' relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: Create targetObject: Account targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: ChangeOwnerOne externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:StandardButton:ChangeOwnerOne iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/change_owner_120.png id: 0JV4H0000328025WAA isMassAction: 'false' label: Change Owner lwcComponent: primaryColor: 107CAD relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: Delete externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:StandardButton:Delete iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/delete_120.png id: 0JV4H0000328026WAA isMassAction: 'false' label: Delete lwcComponent: primaryColor: FF538A relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: AccountHierarchy externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:StandardButton:AccountHierarchy iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000328027WAA isMassAction: 'false' label: View Account Hierarchy lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: IncludeOffline externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:StandardButton:IncludeOffline iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000328028WAA isMassAction: 'false' label: Include Offline lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: EnableAsPartner externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:StandardButton:EnableAsPartner iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000328029WAA isMassAction: 'false' label: Enable As Partner lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: XClean externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:StandardButton:XClean iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000328030WAA isMassAction: 'false' label: Check for New Data lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: PrintableView externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:StandardButton:PrintableView iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000328031WAA isMassAction: 'false' label: Printable View lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: apiName: WebsiteHighlightAction externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:ProductivityAction:WebsiteHighlightAction iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/web_link_120.png id: 0JV4H0000328032WAA isMassAction: 'false' label: View Website lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: targetObject: Account targetUrl: type: ProductivityAction links: - >- /services/data/v58.0/ui-api/actions/record/0014H00002LbR7QQAV/record-edit - >- /services/data/v58.0/ui-api/actions/record/0014H00002LbR7QQAV/related-list - >- /services/data/v58.0/ui-api/actions/record/0014H00002LbR7QQAV/related-list-record/${relatedRecordId} url: >- /services/data/v58.0/ui-api/actions/record/0014H00002LbR7QQAV 00158000006QBOhAAO: actions: - actionListContext: Chatter actionTarget: actionTargetType: Invoke apiName: Follow externalId: >- 00D58000000arpq:00158000006QBOhAAO::Chatter:Desktop:StandardButton:Follow iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/follow_120.png id: 0JV4H0000328009WAA isMassAction: 'false' label: Follow lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: SingleActionLinks sourceObject: 00158000006QBOhAAO subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Chatter actionTarget: actionTargetType: apiName: FollowInStream externalId: >- 00D58000000arpq:00158000006QBOhAAO::Chatter:Desktop:StandardButton:FollowInStream iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/follow_120.png id: 0JV4H0000328010WAA isMassAction: 'false' label: Follow in Stream lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: SingleActionLinks sourceObject: 00158000006QBOhAAO subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: >- /services/data/v58.0/quickActions/NewTask/describe actionTargetType: Describe apiName: Global.NewTask externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:09D58000002PE2f iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_task_120.png id: 0JV4H0000328033WAA isMassAction: 'false' label: New Task lwcComponent: primaryColor: 3BA755 relatedListRecordId: relatedSourceObject: section: ActivityComposer sourceObject: 00158000006QBOhAAO subtype: Create targetObject: Task targetUrl: type: QuickAction - actionListContext: Record actionTarget: >- /services/data/v58.0/quickActions/NewEvent/describe actionTargetType: Describe apiName: Global.NewEvent externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:09D58000002PE2j iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_event_120.png id: 0JV4H0000328034WAA isMassAction: 'false' label: New Event lwcComponent: primaryColor: FF538A relatedListRecordId: relatedSourceObject: section: ActivityComposer sourceObject: 00158000006QBOhAAO subtype: Create targetObject: Event targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: apiName: FeedItem.TextPost externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:FeedItem.TextPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_post_120.png id: 0JV4H0000328035WAA isMassAction: 'false' label: Post lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: CollaborateComposer sourceObject: 00158000006QBOhAAO subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: Edit externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:StandardButton:Edit iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/edit_120.png id: 0JV4H0000328036WAA isMassAction: 'false' label: Edit lwcComponent: dxp_records:lwcEditActionHandler primaryColor: 06A59A relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: ScreenAction targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: apiName: FeedItem.ContentPost externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:FeedItem.ContentPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_file_120.png id: 0JV4H0000328037WAA isMassAction: 'false' label: File lwcComponent: primaryColor: '939393' relatedListRecordId: relatedSourceObject: section: sourceObject: 00158000006QBOhAAO subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Record actionTarget: >- /services/data/v58.0/quickActions/NewContact/describe actionTargetType: Describe apiName: Global.NewContact externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:09D58000002PE2k iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_contact_120.png id: 0JV4H0000328038WAA isMassAction: 'false' label: New Contact lwcComponent: primaryColor: '5867E8' relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: Create targetObject: Contact targetUrl: type: QuickAction - actionListContext: Record actionTarget: >- /services/data/v58.0/quickActions/LogACall/describe actionTargetType: Describe apiName: Global.LogACall externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:09D58000002PE2g iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/log_a_call_120.png id: 0JV4H0000328039WAA isMassAction: 'false' label: Log a Call lwcComponent: primaryColor: 06A59A relatedListRecordId: relatedSourceObject: section: ActivityComposer sourceObject: 00158000006QBOhAAO subtype: LogACall targetObject: Task targetUrl: type: QuickAction - actionListContext: Record actionTarget: >- /services/data/v58.0/quickActions/NewOpportunity/describe actionTargetType: Describe apiName: Global.NewOpportunity externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:09D58000002PE2l iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_opportunity_120.png id: 0JV4H0000328040WAA isMassAction: 'false' label: New Opportunity lwcComponent: primaryColor: FF5D2D relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: Create targetObject: Opportunity targetUrl: type: QuickAction - actionListContext: Record actionTarget: >- /services/data/v58.0/quickActions/NewCase/describe actionTargetType: Describe apiName: Global.NewCase externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:09D58000002PE2h iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_case_120.png id: 0JV4H0000328041WAA isMassAction: 'false' label: New Case lwcComponent: primaryColor: FF5D2D relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: Create targetObject: Case targetUrl: type: QuickAction - actionListContext: Record actionTarget: >- /services/data/v58.0/quickActions/NewLead/describe actionTargetType: Describe apiName: Global.NewLead externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:09D58000002PE2m iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_lead_120.png id: 0JV4H0000328042WAA isMassAction: 'false' label: New Lead lwcComponent: primaryColor: FF5D2D relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: Create targetObject: Lead targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: apiName: FeedItem.LinkPost externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:FeedItem.LinkPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_link_120.png id: 0JV4H0000328043WAA isMassAction: 'false' label: Link lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: sourceObject: 00158000006QBOhAAO subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: apiName: FeedItem.PollPost externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:FeedItem.PollPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_poll_120.png id: 0JV4H0000328044WAA isMassAction: 'false' label: Poll lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: CollaborateComposer sourceObject: 00158000006QBOhAAO subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: apiName: FeedItem.QuestionPost externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:FeedItem.QuestionPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/question_post_action_120.png id: 0JV4H0000328045WAA isMassAction: 'false' label: Question lwcComponent: primaryColor: 3BA755 relatedListRecordId: relatedSourceObject: section: CollaborateComposer sourceObject: 00158000006QBOhAAO subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Record actionTarget: >- /services/data/v58.0/quickActions/New_Detailed_Account/describe actionTargetType: Describe apiName: Global.New_Detailed_Account externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:09D58000002Pbt9 iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_account_120.png id: 0JV4H0000328046WAA isMassAction: 'false' label: New Detailed Account lwcComponent: primaryColor: '5867E8' relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: Create targetObject: Account targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: ChangeOwnerOne externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:StandardButton:ChangeOwnerOne iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/change_owner_120.png id: 0JV4H0000328047WAA isMassAction: 'false' label: Change Owner lwcComponent: primaryColor: 107CAD relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: Delete externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:StandardButton:Delete iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/delete_120.png id: 0JV4H0000328048WAA isMassAction: 'false' label: Delete lwcComponent: primaryColor: FF538A relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: AccountHierarchy externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:StandardButton:AccountHierarchy iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000328049WAA isMassAction: 'false' label: View Account Hierarchy lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: IncludeOffline externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:StandardButton:IncludeOffline iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000328050WAA isMassAction: 'false' label: Include Offline lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: EnableAsPartner externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:StandardButton:EnableAsPartner iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000328051WAA isMassAction: 'false' label: Enable As Partner lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: XClean externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:StandardButton:XClean iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000328052WAA isMassAction: 'false' label: Check for New Data lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: PrintableView externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:StandardButton:PrintableView iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000328053WAA isMassAction: 'false' label: Printable View lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: apiName: WebsiteHighlightAction externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:ProductivityAction:WebsiteHighlightAction iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/web_link_120.png id: 0JV4H0000328054WAA isMassAction: 'false' label: View Website lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: targetObject: Account targetUrl: type: ProductivityAction links: - >- /services/data/v58.0/ui-api/actions/record/00158000006QBOhAAO/record-edit - >- /services/data/v58.0/ui-api/actions/record/00158000006QBOhAAO/related-list - >- /services/data/v58.0/ui-api/actions/record/00158000006QBOhAAO/related-list-record/${relatedRecordId} url: >- /services/data/v58.0/ui-api/actions/record/00158000006QBOhAAO eTag: 070a59ceff1430940937c233f1b952dd url: >- /services/data/v58.0/ui-api/actions/record/0014H00002LbR7QQAV,00158000006QBOhAAO contentMediaType: application/json;charset=UTF-8 example: actions: 0014H00002LbR7QQAV: actions: - actionListContext: Chatter actionTarget: actionTargetType: Invoke apiName: Follow externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Chatter:Desktop:StandardButton:Follow iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/follow_120.png id: 0JV4H0000328007WAA isMassAction: 'false' label: Follow lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: SingleActionLinks sourceObject: 0014H00002LbR7QQAV subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Chatter actionTarget: actionTargetType: apiName: FollowInStream externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Chatter:Desktop:StandardButton:FollowInStream iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/follow_120.png id: 0JV4H0000328008WAA isMassAction: 'false' label: Follow in Stream lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: SingleActionLinks sourceObject: 0014H00002LbR7QQAV subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: /services/data/v58.0/quickActions/NewTask/describe actionTargetType: Describe apiName: Global.NewTask externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:09D58000002PE2f iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_task_120.png id: 0JV4H0000328011WAA isMassAction: 'false' label: New Task lwcComponent: primaryColor: 3BA755 relatedListRecordId: relatedSourceObject: section: ActivityComposer sourceObject: 0014H00002LbR7QQAV subtype: Create targetObject: Task targetUrl: type: QuickAction - actionListContext: Record actionTarget: /services/data/v58.0/quickActions/NewEvent/describe actionTargetType: Describe apiName: Global.NewEvent externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:09D58000002PE2j iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_event_120.png id: 0JV4H0000328012WAA isMassAction: 'false' label: New Event lwcComponent: primaryColor: FF538A relatedListRecordId: relatedSourceObject: section: ActivityComposer sourceObject: 0014H00002LbR7QQAV subtype: Create targetObject: Event targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: apiName: FeedItem.TextPost externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:FeedItem.TextPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_post_120.png id: 0JV4H0000328013WAA isMassAction: 'false' label: Post lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: CollaborateComposer sourceObject: 0014H00002LbR7QQAV subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: Edit externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:StandardButton:Edit iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/edit_120.png id: 0JV4H0000328014WAA isMassAction: 'false' label: Edit lwcComponent: dxp_records:lwcEditActionHandler primaryColor: 06A59A relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: ScreenAction targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: apiName: FeedItem.ContentPost externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:FeedItem.ContentPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_file_120.png id: 0JV4H0000328015WAA isMassAction: 'false' label: File lwcComponent: primaryColor: '939393' relatedListRecordId: relatedSourceObject: section: sourceObject: 0014H00002LbR7QQAV subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Record actionTarget: /services/data/v58.0/quickActions/NewContact/describe actionTargetType: Describe apiName: Global.NewContact externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:09D58000002PE2k iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_contact_120.png id: 0JV4H0000328016WAA isMassAction: 'false' label: New Contact lwcComponent: primaryColor: '5867E8' relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: Create targetObject: Contact targetUrl: type: QuickAction - actionListContext: Record actionTarget: /services/data/v58.0/quickActions/LogACall/describe actionTargetType: Describe apiName: Global.LogACall externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:09D58000002PE2g iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/log_a_call_120.png id: 0JV4H0000328017WAA isMassAction: 'false' label: Log a Call lwcComponent: primaryColor: 06A59A relatedListRecordId: relatedSourceObject: section: ActivityComposer sourceObject: 0014H00002LbR7QQAV subtype: LogACall targetObject: Task targetUrl: type: QuickAction - actionListContext: Record actionTarget: >- /services/data/v58.0/quickActions/NewOpportunity/describe actionTargetType: Describe apiName: Global.NewOpportunity externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:09D58000002PE2l iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_opportunity_120.png id: 0JV4H0000328018WAA isMassAction: 'false' label: New Opportunity lwcComponent: primaryColor: FF5D2D relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: Create targetObject: Opportunity targetUrl: type: QuickAction - actionListContext: Record actionTarget: /services/data/v58.0/quickActions/NewCase/describe actionTargetType: Describe apiName: Global.NewCase externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:09D58000002PE2h iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_case_120.png id: 0JV4H0000328019WAA isMassAction: 'false' label: New Case lwcComponent: primaryColor: FF5D2D relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: Create targetObject: Case targetUrl: type: QuickAction - actionListContext: Record actionTarget: /services/data/v58.0/quickActions/NewLead/describe actionTargetType: Describe apiName: Global.NewLead externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:09D58000002PE2m iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_lead_120.png id: 0JV4H0000328020WAA isMassAction: 'false' label: New Lead lwcComponent: primaryColor: FF5D2D relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: Create targetObject: Lead targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: apiName: FeedItem.LinkPost externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:FeedItem.LinkPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_link_120.png id: 0JV4H0000328021WAA isMassAction: 'false' label: Link lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: sourceObject: 0014H00002LbR7QQAV subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: apiName: FeedItem.PollPost externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:FeedItem.PollPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_poll_120.png id: 0JV4H0000328022WAA isMassAction: 'false' label: Poll lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: CollaborateComposer sourceObject: 0014H00002LbR7QQAV subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: apiName: FeedItem.QuestionPost externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:FeedItem.QuestionPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/question_post_action_120.png id: 0JV4H0000328023WAA isMassAction: 'false' label: Question lwcComponent: primaryColor: 3BA755 relatedListRecordId: relatedSourceObject: section: CollaborateComposer sourceObject: 0014H00002LbR7QQAV subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Record actionTarget: >- /services/data/v58.0/quickActions/New_Detailed_Account/describe actionTargetType: Describe apiName: Global.New_Detailed_Account externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:09D58000002Pbt9 iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_account_120.png id: 0JV4H0000328024WAA isMassAction: 'false' label: New Detailed Account lwcComponent: primaryColor: '5867E8' relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: Create targetObject: Account targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: ChangeOwnerOne externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:StandardButton:ChangeOwnerOne iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/change_owner_120.png id: 0JV4H0000328025WAA isMassAction: 'false' label: Change Owner lwcComponent: primaryColor: 107CAD relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: Delete externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:StandardButton:Delete iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/delete_120.png id: 0JV4H0000328026WAA isMassAction: 'false' label: Delete lwcComponent: primaryColor: FF538A relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: AccountHierarchy externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:StandardButton:AccountHierarchy iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000328027WAA isMassAction: 'false' label: View Account Hierarchy lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: IncludeOffline externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:StandardButton:IncludeOffline iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000328028WAA isMassAction: 'false' label: Include Offline lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: EnableAsPartner externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:StandardButton:EnableAsPartner iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000328029WAA isMassAction: 'false' label: Enable As Partner lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: XClean externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:StandardButton:XClean iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000328030WAA isMassAction: 'false' label: Check for New Data lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: PrintableView externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:StandardButton:PrintableView iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000328031WAA isMassAction: 'false' label: Printable View lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: apiName: WebsiteHighlightAction externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:ProductivityAction:WebsiteHighlightAction iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/web_link_120.png id: 0JV4H0000328032WAA isMassAction: 'false' label: View Website lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: targetObject: Account targetUrl: type: ProductivityAction links: - >- /services/data/v58.0/ui-api/actions/record/0014H00002LbR7QQAV/record-edit - >- /services/data/v58.0/ui-api/actions/record/0014H00002LbR7QQAV/related-list - >- /services/data/v58.0/ui-api/actions/record/0014H00002LbR7QQAV/related-list-record/${relatedRecordId} url: >- /services/data/v58.0/ui-api/actions/record/0014H00002LbR7QQAV 00158000006QBOhAAO: actions: - actionListContext: Chatter actionTarget: actionTargetType: Invoke apiName: Follow externalId: >- 00D58000000arpq:00158000006QBOhAAO::Chatter:Desktop:StandardButton:Follow iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/follow_120.png id: 0JV4H0000328009WAA isMassAction: 'false' label: Follow lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: SingleActionLinks sourceObject: 00158000006QBOhAAO subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Chatter actionTarget: actionTargetType: apiName: FollowInStream externalId: >- 00D58000000arpq:00158000006QBOhAAO::Chatter:Desktop:StandardButton:FollowInStream iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/follow_120.png id: 0JV4H0000328010WAA isMassAction: 'false' label: Follow in Stream lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: SingleActionLinks sourceObject: 00158000006QBOhAAO subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: /services/data/v58.0/quickActions/NewTask/describe actionTargetType: Describe apiName: Global.NewTask externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:09D58000002PE2f iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_task_120.png id: 0JV4H0000328033WAA isMassAction: 'false' label: New Task lwcComponent: primaryColor: 3BA755 relatedListRecordId: relatedSourceObject: section: ActivityComposer sourceObject: 00158000006QBOhAAO subtype: Create targetObject: Task targetUrl: type: QuickAction - actionListContext: Record actionTarget: /services/data/v58.0/quickActions/NewEvent/describe actionTargetType: Describe apiName: Global.NewEvent externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:09D58000002PE2j iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_event_120.png id: 0JV4H0000328034WAA isMassAction: 'false' label: New Event lwcComponent: primaryColor: FF538A relatedListRecordId: relatedSourceObject: section: ActivityComposer sourceObject: 00158000006QBOhAAO subtype: Create targetObject: Event targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: apiName: FeedItem.TextPost externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:FeedItem.TextPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_post_120.png id: 0JV4H0000328035WAA isMassAction: 'false' label: Post lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: CollaborateComposer sourceObject: 00158000006QBOhAAO subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: Edit externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:StandardButton:Edit iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/edit_120.png id: 0JV4H0000328036WAA isMassAction: 'false' label: Edit lwcComponent: dxp_records:lwcEditActionHandler primaryColor: 06A59A relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: ScreenAction targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: apiName: FeedItem.ContentPost externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:FeedItem.ContentPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_file_120.png id: 0JV4H0000328037WAA isMassAction: 'false' label: File lwcComponent: primaryColor: '939393' relatedListRecordId: relatedSourceObject: section: sourceObject: 00158000006QBOhAAO subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Record actionTarget: /services/data/v58.0/quickActions/NewContact/describe actionTargetType: Describe apiName: Global.NewContact externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:09D58000002PE2k iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_contact_120.png id: 0JV4H0000328038WAA isMassAction: 'false' label: New Contact lwcComponent: primaryColor: '5867E8' relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: Create targetObject: Contact targetUrl: type: QuickAction - actionListContext: Record actionTarget: /services/data/v58.0/quickActions/LogACall/describe actionTargetType: Describe apiName: Global.LogACall externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:09D58000002PE2g iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/log_a_call_120.png id: 0JV4H0000328039WAA isMassAction: 'false' label: Log a Call lwcComponent: primaryColor: 06A59A relatedListRecordId: relatedSourceObject: section: ActivityComposer sourceObject: 00158000006QBOhAAO subtype: LogACall targetObject: Task targetUrl: type: QuickAction - actionListContext: Record actionTarget: >- /services/data/v58.0/quickActions/NewOpportunity/describe actionTargetType: Describe apiName: Global.NewOpportunity externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:09D58000002PE2l iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_opportunity_120.png id: 0JV4H0000328040WAA isMassAction: 'false' label: New Opportunity lwcComponent: primaryColor: FF5D2D relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: Create targetObject: Opportunity targetUrl: type: QuickAction - actionListContext: Record actionTarget: /services/data/v58.0/quickActions/NewCase/describe actionTargetType: Describe apiName: Global.NewCase externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:09D58000002PE2h iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_case_120.png id: 0JV4H0000328041WAA isMassAction: 'false' label: New Case lwcComponent: primaryColor: FF5D2D relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: Create targetObject: Case targetUrl: type: QuickAction - actionListContext: Record actionTarget: /services/data/v58.0/quickActions/NewLead/describe actionTargetType: Describe apiName: Global.NewLead externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:09D58000002PE2m iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_lead_120.png id: 0JV4H0000328042WAA isMassAction: 'false' label: New Lead lwcComponent: primaryColor: FF5D2D relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: Create targetObject: Lead targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: apiName: FeedItem.LinkPost externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:FeedItem.LinkPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_link_120.png id: 0JV4H0000328043WAA isMassAction: 'false' label: Link lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: sourceObject: 00158000006QBOhAAO subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: apiName: FeedItem.PollPost externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:FeedItem.PollPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_poll_120.png id: 0JV4H0000328044WAA isMassAction: 'false' label: Poll lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: CollaborateComposer sourceObject: 00158000006QBOhAAO subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: apiName: FeedItem.QuestionPost externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:FeedItem.QuestionPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/question_post_action_120.png id: 0JV4H0000328045WAA isMassAction: 'false' label: Question lwcComponent: primaryColor: 3BA755 relatedListRecordId: relatedSourceObject: section: CollaborateComposer sourceObject: 00158000006QBOhAAO subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Record actionTarget: >- /services/data/v58.0/quickActions/New_Detailed_Account/describe actionTargetType: Describe apiName: Global.New_Detailed_Account externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:09D58000002Pbt9 iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_account_120.png id: 0JV4H0000328046WAA isMassAction: 'false' label: New Detailed Account lwcComponent: primaryColor: '5867E8' relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: Create targetObject: Account targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: ChangeOwnerOne externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:StandardButton:ChangeOwnerOne iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/change_owner_120.png id: 0JV4H0000328047WAA isMassAction: 'false' label: Change Owner lwcComponent: primaryColor: 107CAD relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: Delete externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:StandardButton:Delete iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/delete_120.png id: 0JV4H0000328048WAA isMassAction: 'false' label: Delete lwcComponent: primaryColor: FF538A relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: AccountHierarchy externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:StandardButton:AccountHierarchy iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000328049WAA isMassAction: 'false' label: View Account Hierarchy lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: IncludeOffline externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:StandardButton:IncludeOffline iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000328050WAA isMassAction: 'false' label: Include Offline lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: EnableAsPartner externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:StandardButton:EnableAsPartner iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000328051WAA isMassAction: 'false' label: Enable As Partner lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: XClean externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:StandardButton:XClean iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000328052WAA isMassAction: 'false' label: Check for New Data lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: PrintableView externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:StandardButton:PrintableView iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000328053WAA isMassAction: 'false' label: Printable View lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: apiName: WebsiteHighlightAction externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:ProductivityAction:WebsiteHighlightAction iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/web_link_120.png id: 0JV4H0000328054WAA isMassAction: 'false' label: View Website lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: targetObject: Account targetUrl: type: ProductivityAction links: - >- /services/data/v58.0/ui-api/actions/record/00158000006QBOhAAO/record-edit - >- /services/data/v58.0/ui-api/actions/record/00158000006QBOhAAO/related-list - >- /services/data/v58.0/ui-api/actions/record/00158000006QBOhAAO/related-list-record/${relatedRecordId} url: >- /services/data/v58.0/ui-api/actions/record/00158000006QBOhAAO eTag: 070a59ceff1430940937c233f1b952dd url: >- /services/data/v58.0/ui-api/actions/record/0014H00002LbR7QQAV,00158000006QBOhAAO deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/ui-api/actions/record/{RECORD_ID}/record-edit: get: tags: - Actions - Edit - Get - Pages - Record summary: Salesforce Get Record Edit Page Actions description: Get the actions on record detail pages. operationId: GetRecordEditPageActions parameters: - name: RECORD_ID in: path description: Record ID required: true schema: type: string example: '500123' responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Fri, 06 Oct 2023 10:17:45 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private ETag: content: text/plain: schema: type: string contentMediaType: text/plain example: '"550367168889732c414e90f1a22d15af--gzip"' Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/GetRecordEditPageActions' - examples: - actions: 0014H00002LbR7QQAV: actions: - actionListContext: RecordEdit actionTarget: actionTargetType: Invoke apiName: SaveEdit externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::RecordEdit:Desktop:StandardButton:SaveEdit iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000350887WAA isMassAction: 'false' label: Save lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: LightningWebComponent_Action targetObject: Account targetUrl: type: StandardButton - actionListContext: RecordEdit actionTarget: actionTargetType: Invoke apiName: SaveAndNew externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::RecordEdit:Desktop:StandardButton:SaveAndNew iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000350888WAA isMassAction: 'false' label: Save & New lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: LightningWebComponent_Action targetObject: Account targetUrl: type: StandardButton - actionListContext: RecordEdit actionTarget: actionTargetType: Invoke apiName: CancelEdit externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::RecordEdit:Desktop:StandardButton:CancelEdit iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000350889WAA isMassAction: 'false' label: Cancel lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: LightningWebComponent_Action targetObject: Account targetUrl: type: StandardButton links: [] url: >- /services/data/v58.0/ui-api/actions/record/0014H00002LbR7QQAV/record-edit eTag: 550367168889732c414e90f1a22d15af url: >- /services/data/v58.0/ui-api/actions/record/0014H00002LbR7QQAV/record-edit contentMediaType: application/json;charset=UTF-8 example: actions: 0014H00002LbR7QQAV: actions: - actionListContext: RecordEdit actionTarget: actionTargetType: Invoke apiName: SaveEdit externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::RecordEdit:Desktop:StandardButton:SaveEdit iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000350887WAA isMassAction: 'false' label: Save lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: LightningWebComponent_Action targetObject: Account targetUrl: type: StandardButton - actionListContext: RecordEdit actionTarget: actionTargetType: Invoke apiName: SaveAndNew externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::RecordEdit:Desktop:StandardButton:SaveAndNew iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000350888WAA isMassAction: 'false' label: Save & New lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: LightningWebComponent_Action targetObject: Account targetUrl: type: StandardButton - actionListContext: RecordEdit actionTarget: actionTargetType: Invoke apiName: CancelEdit externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::RecordEdit:Desktop:StandardButton:CancelEdit iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000350889WAA isMassAction: 'false' label: Cancel lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: LightningWebComponent_Action targetObject: Account targetUrl: type: StandardButton links: [] url: >- /services/data/v58.0/ui-api/actions/record/0014H00002LbR7QQAV/record-edit eTag: 550367168889732c414e90f1a22d15af url: >- /services/data/v58.0/ui-api/actions/record/0014H00002LbR7QQAV/record-edit deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/ui-api/actions/record/{RECORD_ID}/related-list/{RELATED_LIST_IDS}: get: tags: - Actions - Get - Lists - Related summary: Salesforce Get Related List Actions description: Get the actions on record detail pages. operationId: GetRelatedListActions parameters: - name: RECORD_ID in: path description: Record ID required: true schema: type: string example: '500123' - name: RELATED_LIST_IDS in: path description: >- Optional. A related list name, or a comma-delimited list of related list names. required: true schema: type: string example: example_value responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Fri, 06 Oct 2023 11:27:08 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private ETag: content: text/plain: schema: type: string contentMediaType: text/plain example: '"a20a5831cc59f674f527261d7469d62d--gzip"' Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/GetRelatedListActions' - examples: - actions: 00158000006QBOhAAO: actions: - actionListContext: RelatedList actionTarget: actionTargetType: Invoke apiName: NewContact externalId: >- 00D58000000arpq:00158000006QBOhAAO::RelatedList:Desktop:StandardButton:NewContact iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_contact_120.png id: 0JV4H0000119415WAA isMassAction: 'false' label: New lwcComponent: primaryColor: '5867E8' relatedListRecordId: relatedSourceObject: Contacts section: Page sourceObject: 00158000006QBOhAAO subtype: targetObject: Contact targetUrl: type: StandardButton links: [] url: >- /services/data/v58.0/ui-api/actions/record/00158000006QBOhAAO/related-list/Contacts eTag: a20a5831cc59f674f527261d7469d62d url: >- /services/data/v58.0/ui-api/actions/record/00158000006QBOhAAO/related-list/Contacts contentMediaType: application/json;charset=UTF-8 example: actions: 00158000006QBOhAAO: actions: - actionListContext: RelatedList actionTarget: actionTargetType: Invoke apiName: NewContact externalId: >- 00D58000000arpq:00158000006QBOhAAO::RelatedList:Desktop:StandardButton:NewContact iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_contact_120.png id: 0JV4H0000119415WAA isMassAction: 'false' label: New lwcComponent: primaryColor: '5867E8' relatedListRecordId: relatedSourceObject: Contacts section: Page sourceObject: 00158000006QBOhAAO subtype: targetObject: Contact targetUrl: type: StandardButton links: [] url: >- /services/data/v58.0/ui-api/actions/record/00158000006QBOhAAO/related-list/Contacts eTag: a20a5831cc59f674f527261d7469d62d url: >- /services/data/v58.0/ui-api/actions/record/00158000006QBOhAAO/related-list/Contacts deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/ui-api/actions/record/{RECORD_ID}/related-list-record/{RELATED_LIST_RECORD_IDS}: get: tags: - Actions - Get - Lists - Record - Related summary: Salesforce Get Related List Record Actions description: Get the actions on records in related lists. operationId: GetRelatedListRecordActions parameters: - name: RECORD_ID in: path description: Record ID required: true schema: type: string example: '500123' - name: RELATED_LIST_RECORD_IDS in: path description: >- A related list record ID, or a comma-delimited list of related list record IDs. required: true schema: type: string example: example_value responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Fri, 06 Oct 2023 11:37:18 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private ETag: content: text/plain: schema: type: string contentMediaType: text/plain example: '"f29ba79a7eda15543fca804e0e88bea6--gzip"' Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/GetRelatedListRecordActions' - examples: - actions: 00158000006QBOhAAO: actions: - actionListContext: RelatedListRecord actionTarget: actionTargetType: Invoke apiName: Edit externalId: >- 00D58000000arpq:00158000006QBOhAAO::RelatedListRecord:Desktop:StandardButton:Edit iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/edit_120.png id: 0JV4H0000122896WAA isMassAction: 'false' label: Edit lwcComponent: primaryColor: 06A59A relatedListRecordId: 00358000006woxwAAA relatedSourceObject: Contacts section: Page sourceObject: 00158000006QBOhAAO subtype: targetObject: Contact targetUrl: type: StandardButton - actionListContext: RelatedListRecord actionTarget: actionTargetType: Invoke apiName: Delete externalId: >- 00D58000000arpq:00158000006QBOhAAO::RelatedListRecord:Desktop:StandardButton:Delete iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/delete_120.png id: 0JV4H0000122897WAA isMassAction: 'false' label: Delete lwcComponent: primaryColor: FF538A relatedListRecordId: 00358000006woxwAAA relatedSourceObject: Contacts section: Page sourceObject: 00158000006QBOhAAO subtype: targetObject: Contact targetUrl: type: StandardButton links: [] url: >- /services/data/v58.0/ui-api/actions/record/00158000006QBOhAAO/related-list-record/00358000006woxwAAA eTag: f29ba79a7eda15543fca804e0e88bea6 url: >- /services/data/v58.0/ui-api/actions/record/00158000006QBOhAAO/related-list-record/00358000006woxwAAA contentMediaType: application/json;charset=UTF-8 example: actions: 00158000006QBOhAAO: actions: - actionListContext: RelatedListRecord actionTarget: actionTargetType: Invoke apiName: Edit externalId: >- 00D58000000arpq:00158000006QBOhAAO::RelatedListRecord:Desktop:StandardButton:Edit iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/edit_120.png id: 0JV4H0000122896WAA isMassAction: 'false' label: Edit lwcComponent: primaryColor: 06A59A relatedListRecordId: 00358000006woxwAAA relatedSourceObject: Contacts section: Page sourceObject: 00158000006QBOhAAO subtype: targetObject: Contact targetUrl: type: StandardButton - actionListContext: RelatedListRecord actionTarget: actionTargetType: Invoke apiName: Delete externalId: >- 00D58000000arpq:00158000006QBOhAAO::RelatedListRecord:Desktop:StandardButton:Delete iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/delete_120.png id: 0JV4H0000122897WAA isMassAction: 'false' label: Delete lwcComponent: primaryColor: FF538A relatedListRecordId: 00358000006woxwAAA relatedSourceObject: Contacts section: Page sourceObject: 00158000006QBOhAAO subtype: targetObject: Contact targetUrl: type: StandardButton links: [] url: >- /services/data/v58.0/ui-api/actions/record/00158000006QBOhAAO/related-list-record/00358000006woxwAAA eTag: f29ba79a7eda15543fca804e0e88bea6 url: >- /services/data/v58.0/ui-api/actions/record/00158000006QBOhAAO/related-list-record/00358000006woxwAAA deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/ui-api/actions/list-view/{LIST_VIEW_IDS}: get: tags: - Actions - Get - Lists - View summary: Salesforce Get List View Header Actions description: Get the actions on records in related lists. operationId: GetListViewHeaderActions parameters: - name: LIST_VIEW_IDS in: path description: A single list view ID, or a comma-delimited list of list view IDs. required: true schema: type: string example: example_value responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Fri, 06 Oct 2023 11:39:25 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private ETag: content: text/plain: schema: type: string contentMediaType: text/plain example: '"6f6e964d38807defe01bd28d144c9c0e--gzip"' Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/GetListViewHeaderActions' - examples: - actions: 00B58000002ssinEAA: actions: - actionListContext: ListView actionTarget: actionTargetType: Invoke apiName: EditFilter externalId: >- 00D58000000arpq:00B58000002ssinEAA::ListView:Desktop:StandardButton:EditFilter iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/filter_120.png id: 0JV4H0000132177WAA isMassAction: 'false' label: Filter lwcComponent: primaryColor: 0176D3 relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00B58000002ssinEAA subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: ListView actionTarget: actionTargetType: Invoke apiName: ListSort externalId: >- 00D58000000arpq:00B58000002ssinEAA::ListView:Desktop:StandardButton:ListSort iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/sort_120.png id: 0JV4H0000132178WAA isMassAction: 'false' label: Sort lwcComponent: primaryColor: FF538A relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00B58000002ssinEAA subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: ListView actionTarget: actionTargetType: Invoke apiName: New externalId: >- 00D58000000arpq:00B58000002ssinEAA::ListView:Desktop:StandardButton:New iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_120.png id: 0JV4H0000132179WAA isMassAction: 'false' label: New lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00B58000002ssinEAA subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: ListView actionTarget: actionTargetType: apiName: PrintableListView externalId: >- 00D58000000arpq:00B58000002ssinEAA::ListView:Desktop:StandardButton:PrintableListView iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000132180WAA isMassAction: 'false' label: Printable View lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00B58000002ssinEAA subtype: targetObject: Account targetUrl: type: StandardButton links: [] url: >- /services/data/v58.0/ui-api/actions/list-view/00B58000002ssinEAA eTag: 6f6e964d38807defe01bd28d144c9c0e url: >- /services/data/v58.0/ui-api/actions/list-view/00B58000002ssinEAA contentMediaType: application/json;charset=UTF-8 example: actions: 00B58000002ssinEAA: actions: - actionListContext: ListView actionTarget: actionTargetType: Invoke apiName: EditFilter externalId: >- 00D58000000arpq:00B58000002ssinEAA::ListView:Desktop:StandardButton:EditFilter iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/filter_120.png id: 0JV4H0000132177WAA isMassAction: 'false' label: Filter lwcComponent: primaryColor: 0176D3 relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00B58000002ssinEAA subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: ListView actionTarget: actionTargetType: Invoke apiName: ListSort externalId: >- 00D58000000arpq:00B58000002ssinEAA::ListView:Desktop:StandardButton:ListSort iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/sort_120.png id: 0JV4H0000132178WAA isMassAction: 'false' label: Sort lwcComponent: primaryColor: FF538A relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00B58000002ssinEAA subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: ListView actionTarget: actionTargetType: Invoke apiName: New externalId: >- 00D58000000arpq:00B58000002ssinEAA::ListView:Desktop:StandardButton:New iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_120.png id: 0JV4H0000132179WAA isMassAction: 'false' label: New lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00B58000002ssinEAA subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: ListView actionTarget: actionTargetType: apiName: PrintableListView externalId: >- 00D58000000arpq:00B58000002ssinEAA::ListView:Desktop:StandardButton:PrintableListView iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000132180WAA isMassAction: 'false' label: Printable View lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00B58000002ssinEAA subtype: targetObject: Account targetUrl: type: StandardButton links: [] url: >- /services/data/v58.0/ui-api/actions/list-view/00B58000002ssinEAA eTag: 6f6e964d38807defe01bd28d144c9c0e url: >- /services/data/v58.0/ui-api/actions/list-view/00B58000002ssinEAA deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/ui-api/actions/list-view-record/{RECORD_IDS}: get: tags: - Actions - Get - Lists - Record - View summary: Salesforce Get List View Record Actions description: Get the record actions on list views. operationId: GetListViewRecordActions parameters: - name: RECORD_IDS in: path description: A single record ID, or a comma-delimited list of record IDs. required: true schema: type: string example: example_value responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Fri, 06 Oct 2023 11:40:07 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private ETag: content: text/plain: schema: type: string contentMediaType: text/plain example: '"1baaebae684ef749af218f59bf4b1d4d--gzip"' Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/GetListViewRecordActions' - examples: - actions: 00358000006woxwAAA: actions: - actionListContext: ListViewRecord actionTarget: actionTargetType: Invoke apiName: Edit externalId: >- 00D58000000arpq:00358000006woxwAAA::ListViewRecord:Desktop:StandardButton:Edit iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/edit_120.png id: 0JV4H0000382730WAA isMassAction: 'false' label: Edit lwcComponent: primaryColor: 06A59A relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00358000006woxwAAA subtype: targetObject: Contact targetUrl: type: StandardButton - actionListContext: ListViewRecord actionTarget: actionTargetType: Invoke apiName: Delete externalId: >- 00D58000000arpq:00358000006woxwAAA::ListViewRecord:Desktop:StandardButton:Delete iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/delete_120.png id: 0JV4H0000382731WAA isMassAction: 'false' label: Delete lwcComponent: primaryColor: FF538A relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00358000006woxwAAA subtype: targetObject: Contact targetUrl: type: StandardButton - actionListContext: ListViewRecord actionTarget: actionTargetType: Invoke apiName: ChangeOwnerOne externalId: >- 00D58000000arpq:00358000006woxwAAA::ListViewRecord:Desktop:StandardButton:ChangeOwnerOne iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/change_owner_120.png id: 0JV4H0000382732WAA isMassAction: 'false' label: Change Owner lwcComponent: primaryColor: 107CAD relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00358000006woxwAAA subtype: targetObject: Contact targetUrl: type: StandardButton links: [] url: >- /services/data/v58.0/ui-api/actions/list-view-record/00358000006woxwAAA eTag: 1baaebae684ef749af218f59bf4b1d4d url: >- /services/data/v58.0/ui-api/actions/list-view-record/00358000006woxwAAA contentMediaType: application/json;charset=UTF-8 example: actions: 00358000006woxwAAA: actions: - actionListContext: ListViewRecord actionTarget: actionTargetType: Invoke apiName: Edit externalId: >- 00D58000000arpq:00358000006woxwAAA::ListViewRecord:Desktop:StandardButton:Edit iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/edit_120.png id: 0JV4H0000382730WAA isMassAction: 'false' label: Edit lwcComponent: primaryColor: 06A59A relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00358000006woxwAAA subtype: targetObject: Contact targetUrl: type: StandardButton - actionListContext: ListViewRecord actionTarget: actionTargetType: Invoke apiName: Delete externalId: >- 00D58000000arpq:00358000006woxwAAA::ListViewRecord:Desktop:StandardButton:Delete iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/delete_120.png id: 0JV4H0000382731WAA isMassAction: 'false' label: Delete lwcComponent: primaryColor: FF538A relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00358000006woxwAAA subtype: targetObject: Contact targetUrl: type: StandardButton - actionListContext: ListViewRecord actionTarget: actionTargetType: Invoke apiName: ChangeOwnerOne externalId: >- 00D58000000arpq:00358000006woxwAAA::ListViewRecord:Desktop:StandardButton:ChangeOwnerOne iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/change_owner_120.png id: 0JV4H0000382732WAA isMassAction: 'false' label: Change Owner lwcComponent: primaryColor: 107CAD relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00358000006woxwAAA subtype: targetObject: Contact targetUrl: type: StandardButton links: [] url: >- /services/data/v58.0/ui-api/actions/list-view-record/00358000006woxwAAA eTag: 1baaebae684ef749af218f59bf4b1d4d url: >- /services/data/v58.0/ui-api/actions/list-view-record/00358000006woxwAAA deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/ui-api/actions/list-view-chart/{SOBJECT_API_NAME}: get: tags: - Actions - Chart - Get - Lists - View summary: Salesforce Get List View Chart Actions description: Get the record actions on list views. operationId: GetListViewChartActions parameters: - name: SOBJECT_API_NAME in: path description: Currently, only `ListViewChartInstance` is valid. required: true schema: type: string examples: - ListViewChartInstance example: example_value responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Fri, 06 Oct 2023 11:41:26 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private ETag: content: text/plain: schema: type: string contentMediaType: text/plain example: '"60c273c4ba34efcc645bd0ce249c8cd4--gzip"' Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/GetListViewChartActions' - examples: - actions: ListViewChartInstance: actions: - actionListContext: ObjectHomeChart actionTarget: actionTargetType: apiName: NewObjectHomeChartAction externalId: >- 00D58000000arpq:ListViewChartInstance::ObjectHomeChart:Desktop:StandardButton:NewObjectHomeChartAction iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000138090WAA isMassAction: 'false' label: New Chart lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: ListViewChartInstance subtype: targetObject: ListViewChart targetUrl: type: StandardButton - actionListContext: ObjectHomeChart actionTarget: actionTargetType: apiName: EditObjectHomeChartAction externalId: >- 00D58000000arpq:ListViewChartInstance::ObjectHomeChart:Desktop:StandardButton:EditObjectHomeChartAction iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000138091WAA isMassAction: 'false' label: Edit Chart lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: ListViewChartInstance subtype: targetObject: ListViewChart targetUrl: type: StandardButton - actionListContext: ObjectHomeChart actionTarget: actionTargetType: apiName: DeleteObjectHomeChartAction externalId: >- 00D58000000arpq:ListViewChartInstance::ObjectHomeChart:Desktop:StandardButton:DeleteObjectHomeChartAction iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000138092WAA isMassAction: 'false' label: Delete Chart lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: ListViewChartInstance subtype: targetObject: ListViewChart targetUrl: type: StandardButton links: [] url: >- /services/data/v58.0/ui-api/actions/list-view-chart/ListViewChartInstance eTag: 60c273c4ba34efcc645bd0ce249c8cd4 url: >- /services/data/v58.0/ui-api/actions/list-view-chart/ListViewChartInstance contentMediaType: application/json;charset=UTF-8 example: actions: ListViewChartInstance: actions: - actionListContext: ObjectHomeChart actionTarget: actionTargetType: apiName: NewObjectHomeChartAction externalId: >- 00D58000000arpq:ListViewChartInstance::ObjectHomeChart:Desktop:StandardButton:NewObjectHomeChartAction iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000138090WAA isMassAction: 'false' label: New Chart lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: ListViewChartInstance subtype: targetObject: ListViewChart targetUrl: type: StandardButton - actionListContext: ObjectHomeChart actionTarget: actionTargetType: apiName: EditObjectHomeChartAction externalId: >- 00D58000000arpq:ListViewChartInstance::ObjectHomeChart:Desktop:StandardButton:EditObjectHomeChartAction iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000138091WAA isMassAction: 'false' label: Edit Chart lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: ListViewChartInstance subtype: targetObject: ListViewChart targetUrl: type: StandardButton - actionListContext: ObjectHomeChart actionTarget: actionTargetType: apiName: DeleteObjectHomeChartAction externalId: >- 00D58000000arpq:ListViewChartInstance::ObjectHomeChart:Desktop:StandardButton:DeleteObjectHomeChartAction iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000138092WAA isMassAction: 'false' label: Delete Chart lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: ListViewChartInstance subtype: targetObject: ListViewChart targetUrl: type: StandardButton links: [] url: >- /services/data/v58.0/ui-api/actions/list-view-chart/ListViewChartInstance eTag: 60c273c4ba34efcc645bd0ce249c8cd4 url: >- /services/data/v58.0/ui-api/actions/list-view-chart/ListViewChartInstance deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/ui-api/actions/flexipage/{FLEXIPAGE_NAMES}: get: tags: - Actions - Get - Lightning - Pages summary: Salesforce Get Lightning Page Actions description: Get the actions on Lightning pages (FlexiPages). operationId: GetLightningPageActions parameters: - name: FLEXIPAGE_NAMES in: path description: >- A Lightning page name, or a comma-delimited list of Lightning page names. required: true schema: type: string example: example_value responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Fri, 06 Oct 2023 11:45:49 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private ETag: content: text/plain: schema: type: string contentMediaType: text/plain example: '"ff4486597111fb5e059e5dab793c8231--gzip"' Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/GetLightningPageActions' - examples: - actions: Sample_Lightning_page: actions: - actionListContext: Flexipage actionTarget: >- /services/data/v58.0/quickActions/LogACall/describe actionTargetType: Describe apiName: Global.LogACall externalId: >- 00D58000000arpq:Sample_Lightning_page::Flexipage:Desktop:09D58000002PE2g iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/log_a_call_120.png id: 0JV4H0000295294WAA isMassAction: 'false' label: Log a Call lwcComponent: primaryColor: 06A59A relatedListRecordId: relatedSourceObject: section: sourceObject: Sample_Lightning_page subtype: LogACall targetObject: Task targetUrl: type: QuickAction - actionListContext: Flexipage actionTarget: >- /services/data/v58.0/quickActions/NewAccount/describe actionTargetType: Describe apiName: Global.NewAccount externalId: >- 00D58000000arpq:Sample_Lightning_page::Flexipage:Desktop:09D58000002PE2s iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_account_120.png id: 0JV4H0000295295WAA isMassAction: 'false' label: New Account lwcComponent: primaryColor: '5867E8' relatedListRecordId: relatedSourceObject: section: sourceObject: Sample_Lightning_page subtype: Create targetObject: Account targetUrl: type: QuickAction links: [] url: >- /services/data/v58.0/ui-api/actions/flexipage/Sample_Lightning_page eTag: ff4486597111fb5e059e5dab793c8231 url: >- /services/data/v58.0/ui-api/actions/flexipage/Sample_Lightning_page contentMediaType: application/json;charset=UTF-8 example: actions: Sample_Lightning_page: actions: - actionListContext: Flexipage actionTarget: /services/data/v58.0/quickActions/LogACall/describe actionTargetType: Describe apiName: Global.LogACall externalId: >- 00D58000000arpq:Sample_Lightning_page::Flexipage:Desktop:09D58000002PE2g iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/log_a_call_120.png id: 0JV4H0000295294WAA isMassAction: 'false' label: Log a Call lwcComponent: primaryColor: 06A59A relatedListRecordId: relatedSourceObject: section: sourceObject: Sample_Lightning_page subtype: LogACall targetObject: Task targetUrl: type: QuickAction - actionListContext: Flexipage actionTarget: /services/data/v58.0/quickActions/NewAccount/describe actionTargetType: Describe apiName: Global.NewAccount externalId: >- 00D58000000arpq:Sample_Lightning_page::Flexipage:Desktop:09D58000002PE2s iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_account_120.png id: 0JV4H0000295295WAA isMassAction: 'false' label: New Account lwcComponent: primaryColor: '5867E8' relatedListRecordId: relatedSourceObject: section: sourceObject: Sample_Lightning_page subtype: Create targetObject: Account targetUrl: type: QuickAction links: [] url: >- /services/data/v58.0/ui-api/actions/flexipage/Sample_Lightning_page eTag: ff4486597111fb5e059e5dab793c8231 url: >- /services/data/v58.0/ui-api/actions/flexipage/Sample_Lightning_page deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/ui-api/actions/lookup/{SOBJECT_API_NAMES}: get: tags: - Actions - Field - Get summary: Salesforce Get Lookup Field Actions description: Get the actions on Lightning pages (FlexiPages). operationId: GetLookupFieldActions parameters: - name: SOBJECT_API_NAMES in: path description: >- A lookup field name, or a comma-delimited list of lookup field names. required: true schema: type: string example: example_value responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Fri, 06 Oct 2023 11:47:33 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private ETag: content: text/plain: schema: type: string contentMediaType: text/plain example: '"1b573078964111c994670eea1c038003--gzip"' Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/GetLookupFieldActions' - examples: - actions: Account: actions: - actionListContext: Lookup actionTarget: actionTargetType: Invoke apiName: CreateFromLookup externalId: >- 00D58000000arpq:Account::Lookup:Desktop:StandardButton:CreateFromLookup iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_120.png id: 0JV4H0000327596WAA isMassAction: 'false' label: New lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: Page sourceObject: Account subtype: targetObject: Account targetUrl: type: StandardButton links: [] url: /services/data/v58.0/ui-api/actions/lookup/Account eTag: 1b573078964111c994670eea1c038003 url: /services/data/v58.0/ui-api/actions/lookup/Account contentMediaType: application/json;charset=UTF-8 example: actions: Account: actions: - actionListContext: Lookup actionTarget: actionTargetType: Invoke apiName: CreateFromLookup externalId: >- 00D58000000arpq:Account::Lookup:Desktop:StandardButton:CreateFromLookup iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_120.png id: 0JV4H0000327596WAA isMassAction: 'false' label: New lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: Page sourceObject: Account subtype: targetObject: Account targetUrl: type: StandardButton links: [] url: /services/data/v58.0/ui-api/actions/lookup/Account eTag: 1b573078964111c994670eea1c038003 url: /services/data/v58.0/ui-api/actions/lookup/Account deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/ui-api/actions/mru-list/{SOBJECT_API_NAMES}: get: tags: - Actions - Get - Lists - View summary: Salesforce Get Mru List View Actions description: >- Get the header actions on the most recently used (MRU) list view for objects. operationId: GetMRUListViewActions parameters: - name: SOBJECT_API_NAMES in: path description: An object name, or a comma-delimited list of object names. required: true schema: type: string example: example_value responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Fri, 06 Oct 2023 11:48:01 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private ETag: content: text/plain: schema: type: string contentMediaType: text/plain example: '"e40070982f76ef03ffdc6f70e91b9321--gzip"' Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/GetMRUListViewActions' - examples: - actions: Account: actions: - actionListContext: MruList actionTarget: actionTargetType: Invoke apiName: New externalId: >- 00D58000000arpq:Account::MruList:Desktop:StandardButton:New iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_120.png id: 0JV4H0000102212WAA isMassAction: 'false' label: New lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: Page sourceObject: Account subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: MruList actionTarget: actionTargetType: apiName: MruListSort externalId: >- 00D58000000arpq:Account::MruList:Desktop:StandardButton:MruListSort iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/sort_120.png id: 0JV4H0000102213WAA isMassAction: 'false' label: Sort lwcComponent: primaryColor: FF538A relatedListRecordId: relatedSourceObject: section: Page sourceObject: Account subtype: targetObject: Account targetUrl: type: StandardButton links: [] url: >- /services/data/v58.0/ui-api/actions/mru-list/Account eTag: e40070982f76ef03ffdc6f70e91b9321 url: /services/data/v58.0/ui-api/actions/mru-list/Account contentMediaType: application/json;charset=UTF-8 example: actions: Account: actions: - actionListContext: MruList actionTarget: actionTargetType: Invoke apiName: New externalId: >- 00D58000000arpq:Account::MruList:Desktop:StandardButton:New iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_120.png id: 0JV4H0000102212WAA isMassAction: 'false' label: New lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: Page sourceObject: Account subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: MruList actionTarget: actionTargetType: apiName: MruListSort externalId: >- 00D58000000arpq:Account::MruList:Desktop:StandardButton:MruListSort iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/sort_120.png id: 0JV4H0000102213WAA isMassAction: 'false' label: Sort lwcComponent: primaryColor: FF538A relatedListRecordId: relatedSourceObject: section: Page sourceObject: Account subtype: targetObject: Account targetUrl: type: StandardButton links: [] url: /services/data/v58.0/ui-api/actions/mru-list/Account eTag: e40070982f76ef03ffdc6f70e91b9321 url: /services/data/v58.0/ui-api/actions/mru-list/Account deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/ui-api/actions/photo/{RECORD_IDS}: get: tags: - Actions - Get - Photo summary: Salesforce Get Photo Actions description: >- Get the photo actions for pages. Currently, only group and user pages support photo actions. operationId: GetPhotoActions parameters: - name: RECORD_IDS in: path description: '' required: true schema: type: string example: example_value responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Fri, 06 Oct 2023 11:50:11 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private ETag: content: text/plain: schema: type: string contentMediaType: text/plain example: '"802f98780c61a3109be0a574d2915772--gzip"' Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/GetPhotoActions' - examples: - actions: 0F94H000000UF2xSAG: actions: - actionListContext: Photo actionTarget: actionTargetType: Invoke apiName: ViewPhotoAction externalId: >- 00D58000000arpq:0F94H000000UF2xSAG::Photo:Desktop:StandardButton:ViewPhotoAction iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/email_120.png id: 0JV4H0000301820WAA isMassAction: 'false' label: View Photo lwcComponent: primaryColor: '939393' relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0F94H000000UF2xSAG subtype: targetObject: targetUrl: type: StandardButton - actionListContext: Photo actionTarget: actionTargetType: Invoke apiName: UpdatePhotoAction externalId: >- 00D58000000arpq:0F94H000000UF2xSAG::Photo:Desktop:StandardButton:UpdatePhotoAction iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/email_120.png id: 0JV4H0000301821WAA isMassAction: 'false' label: Update Photo lwcComponent: primaryColor: '939393' relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0F94H000000UF2xSAG subtype: targetObject: targetUrl: type: StandardButton - actionListContext: Photo actionTarget: actionTargetType: Invoke apiName: DeletePhotoAction externalId: >- 00D58000000arpq:0F94H000000UF2xSAG::Photo:Desktop:StandardButton:DeletePhotoAction iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/email_120.png id: 0JV4H0000301822WAA isMassAction: 'false' label: Delete Photo lwcComponent: primaryColor: '939393' relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0F94H000000UF2xSAG subtype: targetObject: targetUrl: type: StandardButton links: [] url: >- /services/data/v58.0/ui-api/actions/photo/0F94H000000UF2xSAG eTag: 802f98780c61a3109be0a574d2915772 url: >- /services/data/v58.0/ui-api/actions/photo/0F94H000000UF2xSAG contentMediaType: application/json;charset=UTF-8 example: actions: 0F94H000000UF2xSAG: actions: - actionListContext: Photo actionTarget: actionTargetType: Invoke apiName: ViewPhotoAction externalId: >- 00D58000000arpq:0F94H000000UF2xSAG::Photo:Desktop:StandardButton:ViewPhotoAction iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/email_120.png id: 0JV4H0000301820WAA isMassAction: 'false' label: View Photo lwcComponent: primaryColor: '939393' relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0F94H000000UF2xSAG subtype: targetObject: targetUrl: type: StandardButton - actionListContext: Photo actionTarget: actionTargetType: Invoke apiName: UpdatePhotoAction externalId: >- 00D58000000arpq:0F94H000000UF2xSAG::Photo:Desktop:StandardButton:UpdatePhotoAction iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/email_120.png id: 0JV4H0000301821WAA isMassAction: 'false' label: Update Photo lwcComponent: primaryColor: '939393' relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0F94H000000UF2xSAG subtype: targetObject: targetUrl: type: StandardButton - actionListContext: Photo actionTarget: actionTargetType: Invoke apiName: DeletePhotoAction externalId: >- 00D58000000arpq:0F94H000000UF2xSAG::Photo:Desktop:StandardButton:DeletePhotoAction iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/email_120.png id: 0JV4H0000301822WAA isMassAction: 'false' label: Delete Photo lwcComponent: primaryColor: '939393' relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0F94H000000UF2xSAG subtype: targetObject: targetUrl: type: StandardButton links: [] url: >- /services/data/v58.0/ui-api/actions/photo/0F94H000000UF2xSAG eTag: 802f98780c61a3109be0a574d2915772 url: /services/data/v58.0/ui-api/actions/photo/0F94H000000UF2xSAG deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/sobjects: get: tags: - Describe - Global summary: Salesforce Describe Global description: >- Lists the available objects and their metadata for your organization’s data. In addition, it provides the organization encoding, as well as the maximum batch size permitted in queries. You can use the If-Modified-Since header with this resource, with the date format EEE, dd MMM yyyy HH:mm:ss z. When using this header, if no available object’s metadata has changed since the provided date, a 304 Not Modified status code is returned with no response body. operationId: DescribeGlobal parameters: - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v54.0/sobjects/ContentVersion/0681k0000020wLFAAY/VersionData: get: tags: - Download - Files summary: Salesforce Download File description: >- Lists the available objects and their metadata for your organization’s data. In addition, it provides the organization encoding, as well as the maximum batch size permitted in queries. You can use the If-Modified-Since header with this resource, with the date format EEE, dd MMM yyyy HH:mm:ss z. When using this header, if no available object’s metadata has changed since the provided date, a 304 Not Modified status code is returned with no response body. operationId: Downloadfile parameters: - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/sobjects/{SOBJECT_API_NAME}: get: tags: - Basic - Information summary: Salesforce Sobject Basic Information description: >- Describes the individual metadata for the specified object. Can also be used to create a new record for a given object. For example, this can be used to retrieve the metadata for the Account object using the GET method, or create a new Account object using the POST method. operationId: SObjectBasicInformation parameters: - name: SOBJECT_API_NAME in: path description: '' required: true schema: type: string example: example_value - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK post: tags: - Create summary: Salesforce Sobject Create operationId: SObjectCreate parameters: - name: SOBJECT_API_NAME in: path description: SObject API name required: true schema: type: string example: example_value - name: Authorization in: header description: >- Only used for Postman Notebooks. Auth is defined at collection-level and inherited down. required: true schema: type: string example: example_value requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/SObjectCreateRequest' - examples: - Name: Some value contentMediaType: application/json example: Name: Some value required: true responses: '201': description: Created headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 21 Jul 2025 14:34:26 GMT X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=2/15000 Location: content: text/plain: schema: type: string contentMediaType: text/plain example: /services/data/v64.0/sobjects/Contact/003J800000DeOXjIAN Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/SObjectCreate' - examples: - id: 003J800000DeOXjIAN success: true errors: [] contentMediaType: application/json;charset=UTF-8 example: id: 003J800000DeOXjIAN success: true errors: [] deprecated: false security: [] servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/sobjects/{SOBJECT_API_NAME}/describe: get: tags: - Describe summary: Salesforce Sobject Describe description: >- Describes the individual metadata for the specified object. Can also be used to create a new record for a given object. For example, this can be used to retrieve the metadata for the Account object using the GET method, or create a new Account object using the POST method. operationId: SObjectDescribe parameters: - name: SOBJECT_API_NAME in: path description: Object API name required: true schema: type: string example: example_value - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Fri, 06 Oct 2023 09:03:07 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=54/15000 ETag: content: text/plain: schema: type: string contentMediaType: text/plain example: '"dd40d18c--gzip"' Last-Modified: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 04 Oct 2023 18:33:03 GMT Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: $ref: '#/components/schemas/SObjectDescribe' examples: Sobjectdescribe200Example: summary: Default SObjectDescribe 200 response x-microcks-default: true value: actionOverrides: - formFactor: example_value isAvailableInTouch: true name: Example Title pageId: '500123' url: https://www.example.com activateable: true associateEntityType: example_value associateParentEntity: example_value childRelationships: - cascadeDelete: true childSObject: example_value deprecatedAndHidden: true field: example_value junctionIdListNames: {} junctionReferenceTo: {} relationshipName: example_value restrictedDelete: true compactLayoutable: true createable: true custom: true customSetting: true deepCloneable: true defaultImplementation: example_value deletable: true deprecatedAndHidden: true extendedBy: example_value extendsInterfaces: example_value feedEnabled: true fields: - aggregatable: true aiPredictionField: true autoNumber: true byteLength: 10 calculated: true calculatedFormula: example_value cascadeDelete: true caseSensitive: true compoundFieldName: example_value controllerName: example_value createable: true custom: true defaultValue: example_value defaultValueFormula: example_value defaultedOnCreate: true dependentPicklist: true deprecatedAndHidden: true digits: 10 displayLocationInDecimal: true encrypted: true externalId: '500123' extraTypeInfo: example_value filterable: true filteredLookupInfo: example_value formulaTreatNullNumberAsZero: true groupable: true highScaleNumber: true htmlFormatted: true idLookup: true inlineHelpText: example_value label: Example Title length: 10 mask: example_value maskType: example_value name: Example Title nameField: true namePointing: true nillable: true permissionable: true picklistValues: {} polymorphicForeignKey: true precision: 10 queryByDistance: true referenceTargetField: example_value referenceTo: {} relationshipName: example_value relationshipOrder: example_value restrictedDelete: true restrictedPicklist: true scale: 10 searchPrefilterable: true soapType: example_value sortable: true type: example_value unique: true updateable: true writeRequiresMasterRead: true hasSubtypes: true implementedBy: example_value implementsInterfaces: example_value isInterface: true isSubtype: true keyPrefix: example_value label: Example Title labelPlural: example_value layoutable: true listviewable: example_value lookupLayoutable: example_value mergeable: true mruEnabled: true name: Example Title namedLayoutInfos: - example_value networkScopeFieldName: example_value queryable: true recordTypeInfos: - active: true available: true defaultRecordTypeMapping: true developerName: example_value master: true name: Example Title recordTypeId: '500123' replicateable: true retrieveable: true searchLayoutable: true searchable: true sobjectDescribeOption: example_value supportedScopes: - label: Example Title name: Example Title triggerable: true undeletable: true updateable: true urls: compactLayouts: example_value rowTemplate: example_value approvalLayouts: example_value uiDetailTemplate: example_value uiEditTemplate: example_value listviews: example_value describe: example_value uiNewRecord: example_value quickActions: example_value layouts: example_value sobject: example_value deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/sobjects/{SOBJECT_API_NAME}/deleted: get: tags: - Get summary: Salesforce Sobject Get Deleted description: >- Retrieves the list of individual records that have been deleted within the given timespan for the specified object. SObject Get Deleted is available in API version 29.0 and later. This resource is commonly used in data replication applications. Note the following considerations: Deleted records are written to a delete log which this resource accesses. A background process that runs every two hours purges records that have been in an organization's delete log for more than two hours if the number of records is above a certain limit. Starting with the oldest records, the process purges delete log entries until the delete log is back below the limit. This is done to protect Salesforce from performance issues related to massive delete logs Information on deleted records are returned only if the current session user has access to them. Results are returned for no more than 15 days previous to the day the call is executed (or earlier if an administrator has purged the Recycle Bin). operationId: SObjectGetDeleted parameters: - name: start in: query description: '' required: true style: form explode: true schema: type: string example: example_value - name: end in: query description: '' required: true style: form explode: true schema: type: string example: example_value - name: SOBJECT_API_NAME in: path description: '' required: true schema: type: string example: example_value - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/sobjects/{SOBJECT_API_NAME}/updated: get: tags: - Get summary: Salesforce Sobject Get Updated description: >- Retrieves the list of individual records that have been updated (added or changed) within the given timespan for the specified object. SObject Get Updated is available in API version 29.0 and later. This resource is commonly used in data replication applications. Note the following considerations: Results are returned for no more than 30 days previous to the day the call is executed. Your client application can replicate any objects to which it has sufficient permissions. For example, to replicate all data for your organization, your client application must be logged in with “View All Data” access rights to the specified object. Similarly, the objects must be within your sharing rules. There is a limit of 600,000 IDs returned from this resource. If more than 600,000 IDs would be returned, EXCEEDED_ID_LIMIT is returned. You can correct the error by choosing start and end dates that are closer together. operationId: SObjectGetUpdated parameters: - name: start in: query description: '' required: true style: form explode: true schema: type: string example: example_value - name: end in: query description: '' required: true style: form explode: true schema: type: string example: example_value - name: SOBJECT_API_NAME in: path description: '' required: true schema: type: string example: example_value - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/sobjects/{SOBJECT_API_NAME}/describe/namedLayouts/{LAYOUT_NAME}: get: tags: - Layouts - Named summary: Salesforce Sobject Named Layouts description: Retrieves information about alternate named layouts for a given object. operationId: SObjectNamedLayouts parameters: - name: SOBJECT_API_NAME in: path description: '' required: true schema: type: string example: example_value - name: LAYOUT_NAME in: path description: '' required: true schema: type: string example: example_value - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/sobjects/{SOBJECT_API_NAME}/{RECORD_ID}: get: tags: - Rows summary: Salesforce Sobject Rows description: >- Accesses records based on the specified object ID. Retrieves, updates, or deletes records. This resource can also be used to retrieve field values. Use the GET method to retrieve records or fields, the DELETE method to delete records, and the PATCH method to update records. operationId: SObjectRows parameters: - name: SOBJECT_API_NAME in: path description: '' required: true schema: type: string example: example_value - name: RECORD_ID in: path description: '' required: true schema: type: string example: '500123' - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK patch: tags: - Rows - Update summary: Salesforce Sobject Rows Update description: >- Accesses records based on the specified object ID. Retrieves, updates, or deletes records. This resource can also be used to retrieve field values. Use the GET method to retrieve records or fields, the DELETE method to delete records, and the PATCH method to update records. operationId: SObjectRowsUpdate parameters: - name: SOBJECT_API_NAME in: path description: '' required: true schema: type: string example: example_value - name: RECORD_ID in: path description: '' required: true schema: type: string example: '500123' requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/SObjectRowsUpdateRequest' - examples: - field API name: value contentMediaType: application/json example: field API name: value required: true responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK delete: tags: - Deletes - Rows summary: Salesforce Sobject Rows Delete description: >- Accesses records based on the specified object ID. Retrieves, updates, or deletes records. This resource can also be used to retrieve field values. Use the GET method to retrieve records or fields, the DELETE method to delete records, and the PATCH method to update records. operationId: SObjectRowsDelete parameters: - name: SOBJECT_API_NAME in: path description: '' required: true schema: type: string example: example_value - name: RECORD_ID in: path description: '' required: true schema: type: string example: '500123' - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/sobjects/{SOBJECT_API_NAME}/{FIELD_NAME}/{FIELD_VALUE}: get: tags: - External - Identifiers - Rows summary: Salesforce Sobject Rows by External Id description: >- Creates new records or updates existing records (upserts records) based on the value of a specified external ID field. If the specified value doesn't exist, a new record is created. If a record does exist with that value, the field values specified in the request body are updated. If the value is not unique, the REST API returns a 300 response with the list of matching records. HEAD, GET, PATCH, DELETE, POST operationId: SObjectRowsbyExternalID parameters: - name: SOBJECT_API_NAME in: path description: '' required: true schema: type: string example: example_value - name: FIELD_NAME in: path description: '' required: true schema: type: string example: example_value - name: FIELD_VALUE in: path description: '' required: true schema: type: string example: example_value - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/sobjects/{SOBJECT_API_NAME}/{RECORD_ID}/{BLOB_FIELD}: get: tags: - Blobs - Retrieves summary: Salesforce Sobject Blob Retrieve description: Retrieves the specified blob field from an individual record. operationId: SObjectBlobRetrieve parameters: - name: SOBJECT_API_NAME in: path description: '' required: true schema: type: string example: example_value - name: RECORD_ID in: path description: '' required: true schema: type: string example: '500123' - name: BLOB_FIELD in: path description: '' required: true schema: type: string example: example_value - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/sobjects/{SOBJECT_API_NAME}/describe/approvalLayouts/{APPROVAL_PROCESS_NAME}: get: tags: - Data summary: Salesforce Sobject Approvallayouts description: >- Returns a list of approval layouts for a specified object. Specify a particular approval process name to limit the return value to one specific approval layout. This resource is available in REST API version 30.0 and later. approvalProcessName parameter is optional operationId: SObjectApprovalLayouts parameters: - name: SOBJECT_API_NAME in: path description: '' required: true schema: type: string example: example_value - name: APPROVAL_PROCESS_NAME in: path description: '' required: true schema: type: string example: example_value - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/sobjects/{SOBJECT_API_NAME}/describe/describe/compactLayouts: get: tags: - Data summary: Salesforce Sobject Compactlayouts description: >- Returns a list of compact layouts for a specific object. This resource is available in REST API version 29.0 and later. operationId: SObjectCompactLayouts parameters: - name: SOBJECT_API_NAME in: path description: '' required: true schema: type: string example: example_value - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/sobjects/Global/describe/layouts: get: tags: - Describe - Global - Layouts summary: Salesforce Describe Global Layouts description: >- Returns a list of layouts and descriptions. The list of fields and the layout name are returned. operationId: DescribeGlobalLayouts parameters: - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/sobjects/{SOBJECT_API_NAME}/describe/layouts: get: tags: - Describe - Layouts summary: Salesforce Describe Sobject Layouts description: >- Returns a list of layouts and descriptions. The list of fields and the layout name are returned. operationId: DescribeSObjectLayouts parameters: - name: SOBJECT_API_NAME in: path description: '' required: true schema: type: string example: example_value - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/sobjects/{SOBJECT_API_NAME}/describe/layouts/{RECORD_TYPE_ID}: get: tags: - Describe - Layouts - Record - Type summary: Salesforce Describe Sobject Layouts Per Record Type description: >- Returns a list of layouts and descriptions. The list of fields and the layout name are returned. operationId: DescribeSObjectLayoutsPerRecordType parameters: - name: SOBJECT_API_NAME in: path description: '' required: true schema: type: string example: example_value - name: RECORD_TYPE_ID in: path description: '' required: true schema: type: string example: '500123' - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/sobjects/PlatformAction: get: tags: - Data summary: Salesforce Sobject Platformaction description: >- PlatformAction is a virtual read-only object. It enables you to query for actions displayed in the UI, given a user, a context, device format, and a record ID. Examples include standard and custom buttons, quick actions, and productivity actions. Returns the description of the PlatformAction. operationId: SObjectPlatformAction parameters: - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/sobjects/{SOBJECT_API_NAME}/quickActions: get: tags: - Actions summary: Salesforce Sobject Quick Actions description: >- Returns a list of actions and their details. This resource is available in REST API version 28.0 and later. When working with actions, also refer to Quick Actions. To return a specific object’s actions as well as global actions, use: /vXX.X/sobjects/object/quickActions/ To return a specific action, use /vXX.X/sobjects/object/quickActions/{action name} To return a specific action’s descriptive detail, use /vXX.X/sobjects/object/quickActions/{action name}/describe/ To return a specific action’s default values, including default field values, use services/data/vXX.X/sobjects/object/quickActions/{action name}/defaultValues/ In API version 28.0, to evaluate the default values for an action, use vXX.X/sobjects/object/quickActions/{action name}/defaultValues/{parent id} In API version 29.0 and greater, to evaluate the default values for an action, use vXX.X/sobjects/object/quickActions/{action name}/defaultValues/{context id} This returns the default values specific to the {context id} object. operationId: SObjectQuickActions parameters: - name: SOBJECT_API_NAME in: path description: '' required: true schema: type: string example: example_value - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/sobjects/{SOBJECT_API_NAME}/{RECORD_ID}/richTextImageFields/{FIELD_NAME}/{CONTENT_REFERENCE_ID}: get: tags: - Image - Retrieves - Text summary: Salesforce Sobject Rich Text Image Retrieve description: "Retrieves the specified image data from a specific rich text area field in a given record.\ncontentReferenceId\tThe reference ID that uniquely identifies an image within a rich text area field.\nYou can obtain the reference by retrieving information for the object. The description will show the contents of the rich text area field" operationId: SObjectRichTextImageRetrieve parameters: - name: SOBJECT_API_NAME in: path description: '' required: true schema: type: string example: example_value - name: RECORD_ID in: path description: '' required: true schema: type: string example: '500123' - name: FIELD_NAME in: path description: '' required: true schema: type: string example: example_value - name: CONTENT_REFERENCE_ID in: path description: '' required: true schema: type: string example: '500123' - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/sobjects/{SOBJECT_API_NAME}/{RECORD_ID}/{RELATIONSHIP_FIELD_NAME}: get: tags: - Relationships summary: Salesforce Sobject Relationships description: >- Accesses records by traversing object relationships via friendly URLs. You can retrieve, update, or delete the record associated with the traversed relationship field. If there are multiple related records, you can retrieve the complete set of associated records. This resource is available in REST API version 36.0 and later. GET, PATCH, DELETE operationId: SObjectRelationships parameters: - name: SOBJECT_API_NAME in: path description: '' required: true schema: type: string example: example_value - name: RECORD_ID in: path description: '' required: true schema: type: string example: '500123' - name: RELATIONSHIP_FIELD_NAME in: path description: '' required: true schema: type: string example: example_value - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/sobjects/{SOBJECT_API_NAME}/suggestedArticles: get: tags: - Suggested summary: Salesforce Sobject Suggested Articles description: >- Returns a list of suggested Salesforce Knowledge articles for a case, work order, or work order line item. operationId: SObjectSuggestedArticles parameters: - name: description in: query description: '' required: true style: form explode: true schema: type: string example: A sample description. - name: language in: query description: '' required: true style: form explode: true schema: type: string example: example_value - name: subject in: query description: '' required: true style: form explode: true schema: type: string example: example_value - name: SOBJECT_API_NAME in: path description: '' required: true schema: type: string example: example_value - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/sobjects/User/{USER_ID}/password: get: tags: - Password - Users summary: Salesforce Sobject User Password description: >- Set, reset, or get information about a user password. This resource is available in REST API version 24.0 and later. operationId: SObjectUserPassword parameters: - name: USER_ID in: path description: '' required: true schema: type: string example: '500123' - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/sobjects/SelfServiceUser/{USER_ID}/password: get: tags: - Password - Self - Users summary: Salesforce Sobject Self Service User Password description: >- Set, reset, or get information about a user password. This resource is available in REST API version 24.0 and later. operationId: SObjectSelfServiceUserPassword parameters: - name: USER_ID in: path description: '' required: true schema: type: string example: '500123' - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/compactLayouts: get: tags: - Compact - Layouts summary: Salesforce Compact Layouts description: >- Returns a list of compact layouts for multiple objects. This resource is available in REST API version 31.0 and later. operationId: CompactLayouts parameters: - name: q in: query description: object list required: true style: form explode: true schema: type: string examples: - Account,Contact example: example_value - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/async/specifications/oas3: post: tags: - Requests - Schema summary: Salesforce Request Openapi Schema description: >- Requests an Open API document for the selected SObject REST API resources. operationId: RequestOpenAPISchema parameters: [] requestBody: description: '' content: text/plain: schema: type: string examples: - |- { "resources": [ YOUR_SOBJECT_SELECTORS ] } contentMediaType: text/plain example: |- { "resources": [ YOUR_SOBJECT_SELECTORS ] } required: true responses: '202': description: Accepted headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 26 Feb 2024 13:50:18 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=9/15000 Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/GenerateOpenAPISchema' - examples: - href: /v59.0/async/specifications/oas3/NTByNEgwMDAwMDAwMDAx contentMediaType: application/json;charset=UTF-8 example: href: /v59.0/async/specifications/oas3/NTByNEgwMDAwMDAwMDAx deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/async/specifications/oas3/{schemaId}: get: tags: - Retrieves - Schema summary: Salesforce Retrieve Openapi Schema description: >- Generate an OpenAPI 3.0 document for the sObjects REST API. This is a [Beta feature](https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/openapi_beta.htm) that requires an activation step before it can be used. operationId: RetrieveOpenAPISchema parameters: - name: schemaId in: path description: >- Identifier that was returned in the original request to generate the Schema. required: true schema: type: string example: '500123' responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 26 Feb 2024 13:53:54 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=11/15000 Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json: schema: $ref: '#/components/schemas/RetrieveOpenAPISchema' examples: Retrieveopenapischema200Example: summary: Default RetrieveOpenAPISchema 200 response x-microcks-default: true value: openapi: example_value info: title: Example Title description: A sample description. version: example_value servers: - url: https://www.example.com security: - bearerAuth: {} oAuth2: {} openIDConnectDiscovery: {} paths: {} components: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/sobjects/LightningToggleMetrics: get: tags: - Lightning - Metrics - Toggle summary: Salesforce Lightning Toggle Metrics description: >- Return details about users who switched between Salesforce Classic and Lightning Experience. https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_lightning_togglemetrics.htm operationId: LightningToggleMetrics parameters: - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/sobjects/LightningUsageByBrowserMetrics: get: tags: - Lightning - Pages - Usage summary: Salesforce Lightning Usage by Page description: >- Represents standard pages users viewed most frequently in Lightning Experience. https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_lightning_usagebypagemetrics.htm operationId: LightningUsagebyPage parameters: - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/sobjects/LightningUsageByAppTypeMetrics: get: tags: - Applications - Lightning - Type - Usage summary: Salesforce Lightning Usage by App Type description: >- Return the total number of Lightning Experience and Salesforce Mobile users. https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_lightning_usagebyapptypemetrics.htm operationId: LightningUsagebyAppType parameters: - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/sobjects/LightningUsageByFlexiPageMetrics: get: tags: - Lightning - Usage summary: Salesforce Lightning Usage by Flexipage description: >- Return details about the custom pages viewed most frequently in Lightning Experience. https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_lightning_usagebyflexipagemetrics.htm operationId: LightningUsagebyFlexiPage parameters: - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/sobjects/LightningExitByPageMetrics: get: tags: - Exit - Lightning - Metrics - Pages summary: Salesforce Lightning Exit by Page Metrics description: >- Return frequency metrics about the standard pages within which users switched from Lightning Experience to Salesforce Classic. https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_lightning_exitbypagemetrics.htm operationId: LightningExitbyPageMetrics parameters: - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/sobjects/{SOBJECT_API_NAME}/listviews: get: tags: - Lists - Views summary: Salesforce List Views description: >- Returns the list of list views for the specified sObject, including the ID and other basic information about each list view. You can also get basic information for a specific list view by ID. operationId: ListViews parameters: - name: SOBJECT_API_NAME in: path description: '' required: true schema: type: string example: example_value - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/sobjects/{SOBJECT_API_NAME}/listviews/{QUERY_LOCATOR}/describe: get: tags: - Describe - Lists - View summary: Salesforce List View Describe description: >- Returns detailed information about a list view, including the ID, the columns, and the SOQL query. operationId: ListViewDescribe parameters: - name: SOBJECT_API_NAME in: path description: '' required: true schema: type: string example: example_value - name: QUERY_LOCATOR in: path description: '' required: true schema: type: string example: example_value - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/sobjects/{SOBJECT_API_NAME}/listviews/{LIST_VIEW_ID}/results: get: tags: - Lists - Results - View summary: Salesforce List View Results description: >- Returns detailed information about a list view, including the ID, the columns, and the SOQL query. operationId: ListViewResults parameters: - name: SOBJECT_API_NAME in: path description: '' required: true schema: type: string example: example_value - name: LIST_VIEW_ID in: path description: '' required: true schema: type: string example: '500123' - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/sobjects/{SOBJECT_API_NAME}/listviews/recent: get: tags: - Items - Recently summary: Salesforce Recently Viewed Items description: >- Gets the most recently accessed items that were viewed or referenced by the current user. Salesforce stores information about record views in the interface and uses it to generate a list of recently viewed and referenced records, such as in the sidebar and for the auto-complete options in search. This resource only accesses most recently used item information. If you want to modify the list of recently viewed items, you’ll need to update recently viewed information directly by using a SOQL Query with a FOR VIEW or FOR REFERENCE clause. https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_recent_items.htm operationId: RecentlyViewedItems parameters: - name: limit in: query description: '' required: true style: form explode: true schema: type: string example: example_value - name: SOBJECT_API_NAME in: path description: '' required: true schema: type: string example: example_value - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/ui-api/list-info/{SOBJECT_API_NAME}: get: tags: - Get - Lists - Objects - Views summary: Salesforce Get List Views for an Object description: Get list views associated with an object. operationId: GetListViewsforanObject parameters: - name: SOBJECT_API_NAME in: path description: API name of a UI API supported object. required: true schema: type: string examples: - Account example: example_value responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Fri, 06 Oct 2023 09:49:33 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private ETag: content: text/plain: schema: type: string contentMediaType: text/plain example: '"7a9cf6dc597cbc985bab8a26df2f1752--gzip"' Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/GetListViewsforanObject' - examples: - count: 6 currentPageToken: '0' currentPageUrl: >- /services/data/v62.0/ui-api/list-info/Account?pageSize=20&pageToken=0 lists: - apiName: AllAccounts id: 00B58000002ssinEAA label: All Accounts url: >- /services/data/v62.0/ui-api/list-info/Account/AllAccounts - apiName: MyAccounts id: 00B58000002ssivEAA label: My Accounts url: >- /services/data/v62.0/ui-api/list-info/Account/MyAccounts - apiName: NewLastWeek id: 00B58000002ssiHEAQ label: New Last Week url: >- /services/data/v62.0/ui-api/list-info/Account/NewLastWeek - apiName: NewThisWeek id: 00B58000002ssi6EAA label: New This Week url: >- /services/data/v62.0/ui-api/list-info/Account/NewThisWeek - apiName: PlatinumandGoldSLACustomers id: 00B58000002ssiXEAQ label: Platinum and Gold SLA Customers url: >- /services/data/v62.0/ui-api/list-info/Account/PlatinumandGoldSLACustomers - apiName: RecentlyViewedAccounts id: 00B58000002ssimEAA label: Recently Viewed Accounts url: >- /services/data/v62.0/ui-api/list-info/Account/RecentlyViewedAccounts nextPageToken: nextPageUrl: objectApiName: Account pageSize: 20 previousPageToken: previousPageUrl: queryString: recentListsOnly: false contentMediaType: application/json;charset=UTF-8 example: count: 6 currentPageToken: '0' currentPageUrl: >- /services/data/v62.0/ui-api/list-info/Account?pageSize=20&pageToken=0 lists: - apiName: AllAccounts id: 00B58000002ssinEAA label: All Accounts url: /services/data/v62.0/ui-api/list-info/Account/AllAccounts - apiName: MyAccounts id: 00B58000002ssivEAA label: My Accounts url: /services/data/v62.0/ui-api/list-info/Account/MyAccounts - apiName: NewLastWeek id: 00B58000002ssiHEAQ label: New Last Week url: /services/data/v62.0/ui-api/list-info/Account/NewLastWeek - apiName: NewThisWeek id: 00B58000002ssi6EAA label: New This Week url: /services/data/v62.0/ui-api/list-info/Account/NewThisWeek - apiName: PlatinumandGoldSLACustomers id: 00B58000002ssiXEAQ label: Platinum and Gold SLA Customers url: >- /services/data/v62.0/ui-api/list-info/Account/PlatinumandGoldSLACustomers - apiName: RecentlyViewedAccounts id: 00B58000002ssimEAA label: Recently Viewed Accounts url: >- /services/data/v62.0/ui-api/list-info/Account/RecentlyViewedAccounts nextPageToken: nextPageUrl: objectApiName: Account pageSize: 20 previousPageToken: previousPageUrl: queryString: recentListsOnly: false deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/ui-api/list-records/{LIST_VIEW_ID}: get: tags: - Get - Identifiers - Lists - Records - View summary: Salesforce Get List View Records by Id description: Get record data for a list view by list view ID using URL parameters. operationId: GetListViewRecordsbyID parameters: - name: LIST_VIEW_ID in: path description: The ID of a list view. required: true schema: type: string example: '500123' responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Fri, 06 Oct 2023 09:52:06 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/GetListViewRecordsbyID' - examples: - count: 50 currentPageToken: '0' currentPageUrl: >- /services/data/v62.0/ui-api/list-records/00B58000002ssinEAA?pageSize=50&pageToken=0 fields: [] listInfoETag: 55ebdd0de6c2f1e17f63bf4581d64f76 listReference: id: 00B58000002ssinEAA listViewApiName: AllAccounts objectApiName: Account type: listView nextPageToken: '50' nextPageUrl: >- /services/data/v62.0/ui-api/list-records/00B58000002ssinEAA?pageSize=50&pageToken=50 optionalFields: [] pageSize: 50 previousPageToken: previousPageUrl: records: - apiName: Account childRelationships: {} eTag: c7b296e1aa5fa482e1f77e8dc0e0b5e1 fields: BillingCountry: displayValue: value: USA CreatedDate: displayValue: value: '2020-02-27T09:28:06.000Z' Id: displayValue: value: 0014H00002LbR7QQAV LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-04T18:35:13.000Z' Name: displayValue: value: ABC Computing Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: '123123123' Site: displayValue: value: SystemModstamp: displayValue: value: '2023-10-04T18:35:13.000Z' Type: displayValue: value: id: 0014H00002LbR7QQAV lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-04T18:35:13.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2023-10-04T18:35:13.000Z' - apiName: Account childRelationships: {} eTag: cfeff90a24208129b7cf7be4e47dda99 fields: BillingCountry: displayValue: value: USA CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOhAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2020-09-29T16:04:02.000Z' Name: displayValue: value: Burlington Textiles Corp of America Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (336) 222-7000 Site: displayValue: value: SystemModstamp: displayValue: value: '2020-09-29T16:04:02.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOhAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2020-09-29T16:04:02.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2020-09-29T16:04:02.000Z' - apiName: Account childRelationships: {} eTag: c42c5257506520c737965101b225840c fields: BillingCountry: displayValue: value: USA CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOjAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2020-09-29T15:52:06.000Z' Name: displayValue: value: Dickenson Co. Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (785) 241-6200 Site: displayValue: value: SystemModstamp: displayValue: value: '2020-09-29T15:52:06.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOjAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2020-09-29T15:52:06.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2020-09-29T15:52:06.000Z' - apiName: Account childRelationships: {} eTag: 2f21e61d45d05263809593342f5761f4 fields: BillingCountry: displayValue: value: France CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOiAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-05-11T08:48:05.000Z' Name: displayValue: value: Pyramid Construction Inc. Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (014) 427-4427 Site: displayValue: value: SystemModstamp: displayValue: value: '2016-05-11T08:48:05.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOiAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-05-11T08:48:05.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-05-11T08:48:05.000Z' - apiName: Account childRelationships: {} eTag: a5b391b1caf935de4bbc96858a4e6a12 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2020-02-04T18:26:08.000Z' Id: displayValue: value: 0014H00002E6wi6QAB LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2020-02-04T18:26:08.000Z' Name: displayValue: value: Sample Account Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2020-02-04T18:26:08.000Z' Type: displayValue: value: id: 0014H00002E6wi6QAB lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2020-02-04T18:26:08.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2020-02-04T18:26:08.000Z' - apiName: Account childRelationships: {} eTag: fe60d8fe25895ac63644cf563fdc35d6 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2021-02-02T13:47:39.000Z' Id: displayValue: value: 0014H00002x6HUhQAM LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2021-02-25T09:30:33.000Z' Name: displayValue: value: ACME Inc. Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2021-02-25T09:30:33.000Z' Type: displayValue: value: id: 0014H00002x6HUhQAM lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2021-02-25T09:30:33.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2021-02-25T09:30:33.000Z' - apiName: Account childRelationships: {} eTag: 3e85e3f4d6851dd2922333dcec928b1e fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2023-04-25T16:02:10.000Z' Id: displayValue: value: 0014H00004CXfY8QAL LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-04-25T16:02:10.000Z' Name: displayValue: value: test Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2023-04-25T16:02:10.000Z' Type: displayValue: value: id: 0014H00004CXfY8QAL lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-04-25T16:02:10.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2023-04-25T16:02:10.000Z' - apiName: Account childRelationships: {} eTag: d33080f9749c8d05a6b936a01419362e fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2023-09-13T22:04:24.000Z' Id: displayValue: value: 0014H00004GXwPnQAL LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-09-13T22:04:24.000Z' Name: displayValue: value: test Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2023-09-13T22:04:24.000Z' Type: displayValue: value: id: 0014H00004GXwPnQAL lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-09-13T22:04:24.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2023-09-13T22:04:24.000Z' - apiName: Account childRelationships: {} eTag: 02a02f9955d21594f12eca00514ae1e4 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOgAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-05-11T08:47:54.000Z' Name: displayValue: value: Edge Communications Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (512) 757-6000 Site: displayValue: value: SystemModstamp: displayValue: value: '2016-05-11T08:47:54.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOgAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-05-11T08:47:54.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-05-11T08:47:54.000Z' - apiName: Account childRelationships: {} eTag: 0eebc826426d1f09795db27deb0d0bfb fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOkAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-05-11T08:47:54.000Z' Name: displayValue: value: Grand Hotels & Resorts Ltd Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (312) 596-1000 Site: displayValue: value: SystemModstamp: displayValue: value: '2016-05-11T08:47:54.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOkAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-05-11T08:47:54.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-05-11T08:47:54.000Z' - apiName: Account childRelationships: {} eTag: 2a79ba99e5085e9392464789b92ef370 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOlAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T09:14:04.000Z' Name: displayValue: value: United Oil & Gas Corp. Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (212) 842-5500 Site: displayValue: value: SystemModstamp: displayValue: value: '2023-10-06T09:14:04.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOlAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T09:14:04.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2023-10-06T09:14:04.000Z' - apiName: Account childRelationships: {} eTag: c031e5ed9bda34a3a4c9f8485e2b45f5 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOmAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-05-11T08:48:05.000Z' Name: displayValue: value: Express Logistics and Transport Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (503) 421-7800 Site: displayValue: value: SystemModstamp: displayValue: value: '2016-05-11T08:48:05.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOmAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-05-11T08:48:05.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-05-11T08:48:05.000Z' - apiName: Account childRelationships: {} eTag: 8502b4f929b405553fe618841d8ac28b fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOnAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-05-11T08:47:54.000Z' Name: displayValue: value: University of Arizona Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (520) 773-9050 Site: displayValue: value: SystemModstamp: displayValue: value: '2016-05-11T08:47:54.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOnAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-05-11T08:47:54.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-05-11T08:47:54.000Z' - apiName: Account childRelationships: {} eTag: 65fc29db312ce8476ed58913eafcdb36 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOoAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2017-04-28T13:15:12.000Z' Name: displayValue: value: United Oil & Gas, Belgium Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: +44 191 4956203 Site: displayValue: value: SystemModstamp: displayValue: value: '2017-04-29T04:59:15.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOoAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2017-04-28T13:15:12.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2017-04-29T04:59:15.000Z' - apiName: Account childRelationships: {} eTag: 95b274689e30df21eac0c029c63587db fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOpAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-05-11T08:47:54.000Z' Name: displayValue: value: United Oil & Gas, Singapore Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (650) 450-8810 Site: displayValue: value: SystemModstamp: displayValue: value: '2016-05-11T08:47:54.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOpAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-05-11T08:47:54.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-05-11T08:47:54.000Z' - apiName: Account childRelationships: {} eTag: c368a7ee82696b7014aa50bd1f3097a0 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOqAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2020-09-29T16:04:43.000Z' Name: displayValue: value: GenePoint Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (650) 867-3450 Site: displayValue: value: SystemModstamp: displayValue: value: '2020-09-29T16:04:43.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOqAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2020-09-29T16:04:43.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2020-09-29T16:04:43.000Z' - apiName: Account childRelationships: {} eTag: 683d780209e8523cee5dfc75e4ecb655 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-14T14:54:05.000Z' Id: displayValue: value: 00158000007uG58AAE LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-14T14:54:05.000Z' Name: displayValue: value: Blackbeards Grog Emporium Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-14T14:54:05.000Z' Type: displayValue: value: id: 00158000007uG58AAE lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-14T14:54:05.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-14T14:54:05.000Z' - apiName: Account childRelationships: {} eTag: 08039118577ad459353eab0201c0da32 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-14T15:50:24.000Z' Id: displayValue: value: 00158000007uGY4AAM LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-14T15:50:24.000Z' Name: displayValue: value: Bluebeards Grog House Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-14T15:50:24.000Z' Type: displayValue: value: id: 00158000007uGY4AAM lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-14T15:50:24.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-14T15:50:24.000Z' - apiName: Account childRelationships: {} eTag: a46a048bcdcaf162a8c28219851a8726 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wBAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Insuron Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wBAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 53150ff4fad935b11a01d9c963d7ed2a fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wCAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Orboid Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wCAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: eb9e9002c0593cfd90d1fc8a89866e99 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wDAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Bovis Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wDAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: ce0b94e93ac9f29572d11f45662dc29b fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wEAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Roughies Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wEAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: a4bd35ad888f0ee47309af6645dbf9cc fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wFAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Otherside Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wFAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: fe9e0915af3f1048c0aa1d4aefa3bc22 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wGAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Endipin Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wGAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 6775eb7790169ada29bdf917f1334f2f fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wHAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Austech Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wHAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 28e08e57f11ad365ded07a49e0aab7b4 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wIAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Quility Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wIAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 7be73bde9fa7f2b6b672deaf6210c120 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wJAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Bleendot Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wJAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 490fb10e5dba5d155f2ede10bdf04043 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wKAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Apex Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wKAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 261acd5ca365592c6b5942d65c772d8d fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wLAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Cognicode Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wLAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 26f79e588eb05aa8cc5d994f3bd25ea0 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wMAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Securia Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wMAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 23b8ecbe0eacd2d4a23164cf92540615 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wNAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Fanfare Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wNAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: f0a49b68d802cb1ff30d6cef2f3f76e9 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wOAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Obones Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wOAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: df9ac3b4d6bcdaa75433fec054979643 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wPAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Eyeris Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wPAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: bcc5d95f4910344dd315a4ec9ca2b563 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wQAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Techtrix Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wQAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 51256f88c8db64e2f48187dc284a4eec fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wRAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Ceprene Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wRAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 7e0414c03ff4e63c5ddf286547fb6f42 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wSAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Vortexaco Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wSAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 0686be1a780882d98a9d0d32e18c76d9 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wTAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Techmania Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wTAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 3a97d66d9945233c1808db5478239335 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wUAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Gleamink Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wUAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 64fd8ccfd8894be8fb92d252f48ab3e2 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wVAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Apextri Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wVAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: cc6d0f4e15833d7f129d8248c6d0bb80 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wWAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Orbalix Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wWAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 8f0488216ee66c508d3f5fa715fbe1ea fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wXAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Zentry Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wXAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 2fae444d48ac673c879c28f9ea827cce fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wYAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Inear Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wYAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: cc5f9877af7c8e35e4bdf919009ae7b6 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wZAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Genesynk Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wZAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: b03cf2ca4e3b4607399375238769bfc5 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1waAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Flum Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1waAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: cb431803b04ef9646ae1f2de9520bc47 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wbAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Yogasm Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wbAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 5501cba638729bb1156928e6735563ac fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wcAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Mangelica Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wcAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: b2c53b40494c7d3de6bfdf689186e975 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wdAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Exoplode Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wdAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 007f696062d0fd6df9bfb0d3af01f8a9 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1weAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Digigene Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1weAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 30d9d2147c63da2beefb987268df1613 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wfAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Zanymax Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wfAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: a8272664cf5dfc36939ba2b2bc78f6f3 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wgAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Imperium Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wgAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' searchTerm: sortBy: '-BillingCountry,Id' where: contentMediaType: application/json;charset=UTF-8 example: count: 50 currentPageToken: '0' currentPageUrl: >- /services/data/v62.0/ui-api/list-records/00B58000002ssinEAA?pageSize=50&pageToken=0 fields: [] listInfoETag: 55ebdd0de6c2f1e17f63bf4581d64f76 listReference: id: 00B58000002ssinEAA listViewApiName: AllAccounts objectApiName: Account type: listView nextPageToken: '50' nextPageUrl: >- /services/data/v62.0/ui-api/list-records/00B58000002ssinEAA?pageSize=50&pageToken=50 optionalFields: [] pageSize: 50 previousPageToken: previousPageUrl: records: - apiName: Account childRelationships: {} eTag: c7b296e1aa5fa482e1f77e8dc0e0b5e1 fields: BillingCountry: displayValue: value: USA CreatedDate: displayValue: value: '2020-02-27T09:28:06.000Z' Id: displayValue: value: 0014H00002LbR7QQAV LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-04T18:35:13.000Z' Name: displayValue: value: ABC Computing Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: '123123123' Site: displayValue: value: SystemModstamp: displayValue: value: '2023-10-04T18:35:13.000Z' Type: displayValue: value: id: 0014H00002LbR7QQAV lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-04T18:35:13.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2023-10-04T18:35:13.000Z' - apiName: Account childRelationships: {} eTag: cfeff90a24208129b7cf7be4e47dda99 fields: BillingCountry: displayValue: value: USA CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOhAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2020-09-29T16:04:02.000Z' Name: displayValue: value: Burlington Textiles Corp of America Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (336) 222-7000 Site: displayValue: value: SystemModstamp: displayValue: value: '2020-09-29T16:04:02.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOhAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2020-09-29T16:04:02.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2020-09-29T16:04:02.000Z' - apiName: Account childRelationships: {} eTag: c42c5257506520c737965101b225840c fields: BillingCountry: displayValue: value: USA CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOjAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2020-09-29T15:52:06.000Z' Name: displayValue: value: Dickenson Co. Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (785) 241-6200 Site: displayValue: value: SystemModstamp: displayValue: value: '2020-09-29T15:52:06.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOjAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2020-09-29T15:52:06.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2020-09-29T15:52:06.000Z' - apiName: Account childRelationships: {} eTag: 2f21e61d45d05263809593342f5761f4 fields: BillingCountry: displayValue: value: France CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOiAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-05-11T08:48:05.000Z' Name: displayValue: value: Pyramid Construction Inc. Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (014) 427-4427 Site: displayValue: value: SystemModstamp: displayValue: value: '2016-05-11T08:48:05.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOiAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-05-11T08:48:05.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-05-11T08:48:05.000Z' - apiName: Account childRelationships: {} eTag: a5b391b1caf935de4bbc96858a4e6a12 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2020-02-04T18:26:08.000Z' Id: displayValue: value: 0014H00002E6wi6QAB LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2020-02-04T18:26:08.000Z' Name: displayValue: value: Sample Account Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2020-02-04T18:26:08.000Z' Type: displayValue: value: id: 0014H00002E6wi6QAB lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2020-02-04T18:26:08.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2020-02-04T18:26:08.000Z' - apiName: Account childRelationships: {} eTag: fe60d8fe25895ac63644cf563fdc35d6 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2021-02-02T13:47:39.000Z' Id: displayValue: value: 0014H00002x6HUhQAM LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2021-02-25T09:30:33.000Z' Name: displayValue: value: ACME Inc. Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2021-02-25T09:30:33.000Z' Type: displayValue: value: id: 0014H00002x6HUhQAM lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2021-02-25T09:30:33.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2021-02-25T09:30:33.000Z' - apiName: Account childRelationships: {} eTag: 3e85e3f4d6851dd2922333dcec928b1e fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2023-04-25T16:02:10.000Z' Id: displayValue: value: 0014H00004CXfY8QAL LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-04-25T16:02:10.000Z' Name: displayValue: value: test Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2023-04-25T16:02:10.000Z' Type: displayValue: value: id: 0014H00004CXfY8QAL lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-04-25T16:02:10.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2023-04-25T16:02:10.000Z' - apiName: Account childRelationships: {} eTag: d33080f9749c8d05a6b936a01419362e fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2023-09-13T22:04:24.000Z' Id: displayValue: value: 0014H00004GXwPnQAL LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-09-13T22:04:24.000Z' Name: displayValue: value: test Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2023-09-13T22:04:24.000Z' Type: displayValue: value: id: 0014H00004GXwPnQAL lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-09-13T22:04:24.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2023-09-13T22:04:24.000Z' - apiName: Account childRelationships: {} eTag: 02a02f9955d21594f12eca00514ae1e4 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOgAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-05-11T08:47:54.000Z' Name: displayValue: value: Edge Communications Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (512) 757-6000 Site: displayValue: value: SystemModstamp: displayValue: value: '2016-05-11T08:47:54.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOgAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-05-11T08:47:54.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-05-11T08:47:54.000Z' - apiName: Account childRelationships: {} eTag: 0eebc826426d1f09795db27deb0d0bfb fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOkAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-05-11T08:47:54.000Z' Name: displayValue: value: Grand Hotels & Resorts Ltd Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (312) 596-1000 Site: displayValue: value: SystemModstamp: displayValue: value: '2016-05-11T08:47:54.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOkAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-05-11T08:47:54.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-05-11T08:47:54.000Z' - apiName: Account childRelationships: {} eTag: 2a79ba99e5085e9392464789b92ef370 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOlAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T09:14:04.000Z' Name: displayValue: value: United Oil & Gas Corp. Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (212) 842-5500 Site: displayValue: value: SystemModstamp: displayValue: value: '2023-10-06T09:14:04.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOlAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T09:14:04.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2023-10-06T09:14:04.000Z' - apiName: Account childRelationships: {} eTag: c031e5ed9bda34a3a4c9f8485e2b45f5 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOmAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-05-11T08:48:05.000Z' Name: displayValue: value: Express Logistics and Transport Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (503) 421-7800 Site: displayValue: value: SystemModstamp: displayValue: value: '2016-05-11T08:48:05.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOmAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-05-11T08:48:05.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-05-11T08:48:05.000Z' - apiName: Account childRelationships: {} eTag: 8502b4f929b405553fe618841d8ac28b fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOnAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-05-11T08:47:54.000Z' Name: displayValue: value: University of Arizona Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (520) 773-9050 Site: displayValue: value: SystemModstamp: displayValue: value: '2016-05-11T08:47:54.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOnAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-05-11T08:47:54.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-05-11T08:47:54.000Z' - apiName: Account childRelationships: {} eTag: 65fc29db312ce8476ed58913eafcdb36 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOoAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2017-04-28T13:15:12.000Z' Name: displayValue: value: United Oil & Gas, Belgium Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: +44 191 4956203 Site: displayValue: value: SystemModstamp: displayValue: value: '2017-04-29T04:59:15.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOoAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2017-04-28T13:15:12.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2017-04-29T04:59:15.000Z' - apiName: Account childRelationships: {} eTag: 95b274689e30df21eac0c029c63587db fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOpAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-05-11T08:47:54.000Z' Name: displayValue: value: United Oil & Gas, Singapore Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (650) 450-8810 Site: displayValue: value: SystemModstamp: displayValue: value: '2016-05-11T08:47:54.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOpAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-05-11T08:47:54.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-05-11T08:47:54.000Z' - apiName: Account childRelationships: {} eTag: c368a7ee82696b7014aa50bd1f3097a0 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOqAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2020-09-29T16:04:43.000Z' Name: displayValue: value: GenePoint Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (650) 867-3450 Site: displayValue: value: SystemModstamp: displayValue: value: '2020-09-29T16:04:43.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOqAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2020-09-29T16:04:43.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2020-09-29T16:04:43.000Z' - apiName: Account childRelationships: {} eTag: 683d780209e8523cee5dfc75e4ecb655 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-14T14:54:05.000Z' Id: displayValue: value: 00158000007uG58AAE LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-14T14:54:05.000Z' Name: displayValue: value: Blackbeards Grog Emporium Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-14T14:54:05.000Z' Type: displayValue: value: id: 00158000007uG58AAE lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-14T14:54:05.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-14T14:54:05.000Z' - apiName: Account childRelationships: {} eTag: 08039118577ad459353eab0201c0da32 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-14T15:50:24.000Z' Id: displayValue: value: 00158000007uGY4AAM LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-14T15:50:24.000Z' Name: displayValue: value: Bluebeards Grog House Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-14T15:50:24.000Z' Type: displayValue: value: id: 00158000007uGY4AAM lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-14T15:50:24.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-14T15:50:24.000Z' - apiName: Account childRelationships: {} eTag: a46a048bcdcaf162a8c28219851a8726 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wBAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Insuron Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wBAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 53150ff4fad935b11a01d9c963d7ed2a fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wCAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Orboid Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wCAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: eb9e9002c0593cfd90d1fc8a89866e99 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wDAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Bovis Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wDAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: ce0b94e93ac9f29572d11f45662dc29b fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wEAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Roughies Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wEAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: a4bd35ad888f0ee47309af6645dbf9cc fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wFAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Otherside Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wFAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: fe9e0915af3f1048c0aa1d4aefa3bc22 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wGAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Endipin Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wGAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 6775eb7790169ada29bdf917f1334f2f fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wHAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Austech Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wHAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 28e08e57f11ad365ded07a49e0aab7b4 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wIAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Quility Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wIAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 7be73bde9fa7f2b6b672deaf6210c120 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wJAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Bleendot Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wJAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 490fb10e5dba5d155f2ede10bdf04043 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wKAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Apex Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wKAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 261acd5ca365592c6b5942d65c772d8d fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wLAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Cognicode Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wLAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 26f79e588eb05aa8cc5d994f3bd25ea0 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wMAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Securia Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wMAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 23b8ecbe0eacd2d4a23164cf92540615 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wNAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Fanfare Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wNAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: f0a49b68d802cb1ff30d6cef2f3f76e9 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wOAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Obones Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wOAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: df9ac3b4d6bcdaa75433fec054979643 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wPAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Eyeris Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wPAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: bcc5d95f4910344dd315a4ec9ca2b563 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wQAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Techtrix Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wQAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 51256f88c8db64e2f48187dc284a4eec fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wRAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Ceprene Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wRAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 7e0414c03ff4e63c5ddf286547fb6f42 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wSAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Vortexaco Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wSAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 0686be1a780882d98a9d0d32e18c76d9 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wTAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Techmania Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wTAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 3a97d66d9945233c1808db5478239335 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wUAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Gleamink Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wUAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 64fd8ccfd8894be8fb92d252f48ab3e2 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wVAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Apextri Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wVAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: cc6d0f4e15833d7f129d8248c6d0bb80 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wWAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Orbalix Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wWAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 8f0488216ee66c508d3f5fa715fbe1ea fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wXAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Zentry Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wXAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 2fae444d48ac673c879c28f9ea827cce fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wYAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Inear Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wYAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: cc5f9877af7c8e35e4bdf919009ae7b6 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wZAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Genesynk Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wZAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: b03cf2ca4e3b4607399375238769bfc5 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1waAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Flum Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1waAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: cb431803b04ef9646ae1f2de9520bc47 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wbAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Yogasm Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wbAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 5501cba638729bb1156928e6735563ac fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wcAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Mangelica Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wcAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: b2c53b40494c7d3de6bfdf689186e975 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wdAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Exoplode Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wdAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 007f696062d0fd6df9bfb0d3af01f8a9 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1weAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Digigene Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1weAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 30d9d2147c63da2beefb987268df1613 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wfAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Zanymax Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wfAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: a8272664cf5dfc36939ba2b2bc78f6f3 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wgAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Imperium Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wgAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' searchTerm: sortBy: '-BillingCountry,Id' where: deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/ui-api/list-records/{SOBJECT_API_NAME}/{LIST_VIEW_API_NAME}: get: tags: - Get - Lists - Names - Records - View summary: Salesforce Get List View Records by Api Name description: >- Get record data for a list view by list view API name using URL parameters. operationId: GetListViewRecordsbyAPIName parameters: - name: SOBJECT_API_NAME in: path description: API name of a UI API supported object. required: true schema: type: string example: example_value - name: LIST_VIEW_API_NAME in: path description: >- API name of a list view, such as AllAccounts, __Recent, or __SearchResult. required: true schema: type: string example: example_value responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Fri, 06 Oct 2023 09:54:16 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/GetListViewRecordsperAPIName' - examples: - count: 50 currentPageToken: '0' currentPageUrl: >- /services/data/v62.0/ui-api/list-records/00B58000002ssinEAA?pageSize=50&pageToken=0 fields: [] listInfoETag: 55ebdd0de6c2f1e17f63bf4581d64f76 listReference: id: 00B58000002ssinEAA listViewApiName: AllAccounts objectApiName: Account type: listView nextPageToken: '50' nextPageUrl: >- /services/data/v62.0/ui-api/list-records/00B58000002ssinEAA?pageSize=50&pageToken=50 optionalFields: [] pageSize: 50 previousPageToken: previousPageUrl: records: - apiName: Account childRelationships: {} eTag: c7b296e1aa5fa482e1f77e8dc0e0b5e1 fields: BillingCountry: displayValue: value: USA CreatedDate: displayValue: value: '2020-02-27T09:28:06.000Z' Id: displayValue: value: 0014H00002LbR7QQAV LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-04T18:35:13.000Z' Name: displayValue: value: ABC Computing Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: '123123123' Site: displayValue: value: SystemModstamp: displayValue: value: '2023-10-04T18:35:13.000Z' Type: displayValue: value: id: 0014H00002LbR7QQAV lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-04T18:35:13.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2023-10-04T18:35:13.000Z' - apiName: Account childRelationships: {} eTag: cfeff90a24208129b7cf7be4e47dda99 fields: BillingCountry: displayValue: value: USA CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOhAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2020-09-29T16:04:02.000Z' Name: displayValue: value: Burlington Textiles Corp of America Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (336) 222-7000 Site: displayValue: value: SystemModstamp: displayValue: value: '2020-09-29T16:04:02.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOhAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2020-09-29T16:04:02.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2020-09-29T16:04:02.000Z' - apiName: Account childRelationships: {} eTag: c42c5257506520c737965101b225840c fields: BillingCountry: displayValue: value: USA CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOjAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2020-09-29T15:52:06.000Z' Name: displayValue: value: Dickenson Co. Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (785) 241-6200 Site: displayValue: value: SystemModstamp: displayValue: value: '2020-09-29T15:52:06.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOjAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2020-09-29T15:52:06.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2020-09-29T15:52:06.000Z' - apiName: Account childRelationships: {} eTag: 2f21e61d45d05263809593342f5761f4 fields: BillingCountry: displayValue: value: France CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOiAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-05-11T08:48:05.000Z' Name: displayValue: value: Pyramid Construction Inc. Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (014) 427-4427 Site: displayValue: value: SystemModstamp: displayValue: value: '2016-05-11T08:48:05.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOiAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-05-11T08:48:05.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-05-11T08:48:05.000Z' - apiName: Account childRelationships: {} eTag: a5b391b1caf935de4bbc96858a4e6a12 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2020-02-04T18:26:08.000Z' Id: displayValue: value: 0014H00002E6wi6QAB LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2020-02-04T18:26:08.000Z' Name: displayValue: value: Sample Account Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2020-02-04T18:26:08.000Z' Type: displayValue: value: id: 0014H00002E6wi6QAB lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2020-02-04T18:26:08.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2020-02-04T18:26:08.000Z' - apiName: Account childRelationships: {} eTag: fe60d8fe25895ac63644cf563fdc35d6 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2021-02-02T13:47:39.000Z' Id: displayValue: value: 0014H00002x6HUhQAM LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2021-02-25T09:30:33.000Z' Name: displayValue: value: ACME Inc. Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2021-02-25T09:30:33.000Z' Type: displayValue: value: id: 0014H00002x6HUhQAM lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2021-02-25T09:30:33.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2021-02-25T09:30:33.000Z' - apiName: Account childRelationships: {} eTag: 3e85e3f4d6851dd2922333dcec928b1e fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2023-04-25T16:02:10.000Z' Id: displayValue: value: 0014H00004CXfY8QAL LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-04-25T16:02:10.000Z' Name: displayValue: value: test Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2023-04-25T16:02:10.000Z' Type: displayValue: value: id: 0014H00004CXfY8QAL lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-04-25T16:02:10.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2023-04-25T16:02:10.000Z' - apiName: Account childRelationships: {} eTag: d33080f9749c8d05a6b936a01419362e fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2023-09-13T22:04:24.000Z' Id: displayValue: value: 0014H00004GXwPnQAL LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-09-13T22:04:24.000Z' Name: displayValue: value: test Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2023-09-13T22:04:24.000Z' Type: displayValue: value: id: 0014H00004GXwPnQAL lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-09-13T22:04:24.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2023-09-13T22:04:24.000Z' - apiName: Account childRelationships: {} eTag: 02a02f9955d21594f12eca00514ae1e4 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOgAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-05-11T08:47:54.000Z' Name: displayValue: value: Edge Communications Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (512) 757-6000 Site: displayValue: value: SystemModstamp: displayValue: value: '2016-05-11T08:47:54.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOgAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-05-11T08:47:54.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-05-11T08:47:54.000Z' - apiName: Account childRelationships: {} eTag: 0eebc826426d1f09795db27deb0d0bfb fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOkAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-05-11T08:47:54.000Z' Name: displayValue: value: Grand Hotels & Resorts Ltd Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (312) 596-1000 Site: displayValue: value: SystemModstamp: displayValue: value: '2016-05-11T08:47:54.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOkAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-05-11T08:47:54.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-05-11T08:47:54.000Z' - apiName: Account childRelationships: {} eTag: 2a79ba99e5085e9392464789b92ef370 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOlAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T09:14:04.000Z' Name: displayValue: value: United Oil & Gas Corp. Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (212) 842-5500 Site: displayValue: value: SystemModstamp: displayValue: value: '2023-10-06T09:14:04.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOlAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T09:14:04.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2023-10-06T09:14:04.000Z' - apiName: Account childRelationships: {} eTag: c031e5ed9bda34a3a4c9f8485e2b45f5 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOmAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-05-11T08:48:05.000Z' Name: displayValue: value: Express Logistics and Transport Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (503) 421-7800 Site: displayValue: value: SystemModstamp: displayValue: value: '2016-05-11T08:48:05.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOmAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-05-11T08:48:05.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-05-11T08:48:05.000Z' - apiName: Account childRelationships: {} eTag: 8502b4f929b405553fe618841d8ac28b fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOnAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-05-11T08:47:54.000Z' Name: displayValue: value: University of Arizona Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (520) 773-9050 Site: displayValue: value: SystemModstamp: displayValue: value: '2016-05-11T08:47:54.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOnAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-05-11T08:47:54.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-05-11T08:47:54.000Z' - apiName: Account childRelationships: {} eTag: 65fc29db312ce8476ed58913eafcdb36 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOoAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2017-04-28T13:15:12.000Z' Name: displayValue: value: United Oil & Gas, Belgium Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: +44 191 4956203 Site: displayValue: value: SystemModstamp: displayValue: value: '2017-04-29T04:59:15.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOoAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2017-04-28T13:15:12.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2017-04-29T04:59:15.000Z' - apiName: Account childRelationships: {} eTag: 95b274689e30df21eac0c029c63587db fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOpAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-05-11T08:47:54.000Z' Name: displayValue: value: United Oil & Gas, Singapore Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (650) 450-8810 Site: displayValue: value: SystemModstamp: displayValue: value: '2016-05-11T08:47:54.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOpAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-05-11T08:47:54.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-05-11T08:47:54.000Z' - apiName: Account childRelationships: {} eTag: c368a7ee82696b7014aa50bd1f3097a0 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOqAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2020-09-29T16:04:43.000Z' Name: displayValue: value: GenePoint Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (650) 867-3450 Site: displayValue: value: SystemModstamp: displayValue: value: '2020-09-29T16:04:43.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOqAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2020-09-29T16:04:43.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2020-09-29T16:04:43.000Z' - apiName: Account childRelationships: {} eTag: 683d780209e8523cee5dfc75e4ecb655 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-14T14:54:05.000Z' Id: displayValue: value: 00158000007uG58AAE LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-14T14:54:05.000Z' Name: displayValue: value: Blackbeards Grog Emporium Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-14T14:54:05.000Z' Type: displayValue: value: id: 00158000007uG58AAE lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-14T14:54:05.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-14T14:54:05.000Z' - apiName: Account childRelationships: {} eTag: 08039118577ad459353eab0201c0da32 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-14T15:50:24.000Z' Id: displayValue: value: 00158000007uGY4AAM LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-14T15:50:24.000Z' Name: displayValue: value: Bluebeards Grog House Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-14T15:50:24.000Z' Type: displayValue: value: id: 00158000007uGY4AAM lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-14T15:50:24.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-14T15:50:24.000Z' - apiName: Account childRelationships: {} eTag: a46a048bcdcaf162a8c28219851a8726 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wBAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Insuron Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wBAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 53150ff4fad935b11a01d9c963d7ed2a fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wCAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Orboid Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wCAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: eb9e9002c0593cfd90d1fc8a89866e99 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wDAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Bovis Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wDAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: ce0b94e93ac9f29572d11f45662dc29b fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wEAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Roughies Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wEAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: a4bd35ad888f0ee47309af6645dbf9cc fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wFAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Otherside Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wFAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: fe9e0915af3f1048c0aa1d4aefa3bc22 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wGAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Endipin Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wGAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 6775eb7790169ada29bdf917f1334f2f fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wHAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Austech Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wHAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 28e08e57f11ad365ded07a49e0aab7b4 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wIAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Quility Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wIAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 7be73bde9fa7f2b6b672deaf6210c120 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wJAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Bleendot Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wJAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 490fb10e5dba5d155f2ede10bdf04043 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wKAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Apex Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wKAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 261acd5ca365592c6b5942d65c772d8d fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wLAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Cognicode Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wLAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 26f79e588eb05aa8cc5d994f3bd25ea0 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wMAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Securia Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wMAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 23b8ecbe0eacd2d4a23164cf92540615 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wNAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Fanfare Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wNAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: f0a49b68d802cb1ff30d6cef2f3f76e9 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wOAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Obones Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wOAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: df9ac3b4d6bcdaa75433fec054979643 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wPAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Eyeris Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wPAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: bcc5d95f4910344dd315a4ec9ca2b563 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wQAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Techtrix Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wQAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 51256f88c8db64e2f48187dc284a4eec fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wRAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Ceprene Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wRAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 7e0414c03ff4e63c5ddf286547fb6f42 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wSAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Vortexaco Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wSAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 0686be1a780882d98a9d0d32e18c76d9 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wTAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Techmania Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wTAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 3a97d66d9945233c1808db5478239335 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wUAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Gleamink Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wUAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 64fd8ccfd8894be8fb92d252f48ab3e2 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wVAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Apextri Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wVAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: cc6d0f4e15833d7f129d8248c6d0bb80 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wWAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Orbalix Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wWAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 8f0488216ee66c508d3f5fa715fbe1ea fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wXAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Zentry Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wXAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 2fae444d48ac673c879c28f9ea827cce fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wYAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Inear Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wYAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: cc5f9877af7c8e35e4bdf919009ae7b6 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wZAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Genesynk Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wZAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: b03cf2ca4e3b4607399375238769bfc5 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1waAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Flum Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1waAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: cb431803b04ef9646ae1f2de9520bc47 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wbAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Yogasm Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wbAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 5501cba638729bb1156928e6735563ac fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wcAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Mangelica Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wcAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: b2c53b40494c7d3de6bfdf689186e975 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wdAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Exoplode Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wdAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 007f696062d0fd6df9bfb0d3af01f8a9 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1weAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Digigene Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1weAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 30d9d2147c63da2beefb987268df1613 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wfAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Zanymax Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wfAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: a8272664cf5dfc36939ba2b2bc78f6f3 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wgAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Imperium Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wgAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' searchTerm: sortBy: '-BillingCountry,Id' where: contentMediaType: application/json;charset=UTF-8 example: count: 50 currentPageToken: '0' currentPageUrl: >- /services/data/v62.0/ui-api/list-records/00B58000002ssinEAA?pageSize=50&pageToken=0 fields: [] listInfoETag: 55ebdd0de6c2f1e17f63bf4581d64f76 listReference: id: 00B58000002ssinEAA listViewApiName: AllAccounts objectApiName: Account type: listView nextPageToken: '50' nextPageUrl: >- /services/data/v62.0/ui-api/list-records/00B58000002ssinEAA?pageSize=50&pageToken=50 optionalFields: [] pageSize: 50 previousPageToken: previousPageUrl: records: - apiName: Account childRelationships: {} eTag: c7b296e1aa5fa482e1f77e8dc0e0b5e1 fields: BillingCountry: displayValue: value: USA CreatedDate: displayValue: value: '2020-02-27T09:28:06.000Z' Id: displayValue: value: 0014H00002LbR7QQAV LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-04T18:35:13.000Z' Name: displayValue: value: ABC Computing Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: '123123123' Site: displayValue: value: SystemModstamp: displayValue: value: '2023-10-04T18:35:13.000Z' Type: displayValue: value: id: 0014H00002LbR7QQAV lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-04T18:35:13.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2023-10-04T18:35:13.000Z' - apiName: Account childRelationships: {} eTag: cfeff90a24208129b7cf7be4e47dda99 fields: BillingCountry: displayValue: value: USA CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOhAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2020-09-29T16:04:02.000Z' Name: displayValue: value: Burlington Textiles Corp of America Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (336) 222-7000 Site: displayValue: value: SystemModstamp: displayValue: value: '2020-09-29T16:04:02.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOhAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2020-09-29T16:04:02.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2020-09-29T16:04:02.000Z' - apiName: Account childRelationships: {} eTag: c42c5257506520c737965101b225840c fields: BillingCountry: displayValue: value: USA CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOjAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2020-09-29T15:52:06.000Z' Name: displayValue: value: Dickenson Co. Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (785) 241-6200 Site: displayValue: value: SystemModstamp: displayValue: value: '2020-09-29T15:52:06.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOjAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2020-09-29T15:52:06.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2020-09-29T15:52:06.000Z' - apiName: Account childRelationships: {} eTag: 2f21e61d45d05263809593342f5761f4 fields: BillingCountry: displayValue: value: France CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOiAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-05-11T08:48:05.000Z' Name: displayValue: value: Pyramid Construction Inc. Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (014) 427-4427 Site: displayValue: value: SystemModstamp: displayValue: value: '2016-05-11T08:48:05.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOiAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-05-11T08:48:05.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-05-11T08:48:05.000Z' - apiName: Account childRelationships: {} eTag: a5b391b1caf935de4bbc96858a4e6a12 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2020-02-04T18:26:08.000Z' Id: displayValue: value: 0014H00002E6wi6QAB LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2020-02-04T18:26:08.000Z' Name: displayValue: value: Sample Account Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2020-02-04T18:26:08.000Z' Type: displayValue: value: id: 0014H00002E6wi6QAB lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2020-02-04T18:26:08.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2020-02-04T18:26:08.000Z' - apiName: Account childRelationships: {} eTag: fe60d8fe25895ac63644cf563fdc35d6 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2021-02-02T13:47:39.000Z' Id: displayValue: value: 0014H00002x6HUhQAM LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2021-02-25T09:30:33.000Z' Name: displayValue: value: ACME Inc. Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2021-02-25T09:30:33.000Z' Type: displayValue: value: id: 0014H00002x6HUhQAM lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2021-02-25T09:30:33.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2021-02-25T09:30:33.000Z' - apiName: Account childRelationships: {} eTag: 3e85e3f4d6851dd2922333dcec928b1e fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2023-04-25T16:02:10.000Z' Id: displayValue: value: 0014H00004CXfY8QAL LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-04-25T16:02:10.000Z' Name: displayValue: value: test Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2023-04-25T16:02:10.000Z' Type: displayValue: value: id: 0014H00004CXfY8QAL lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-04-25T16:02:10.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2023-04-25T16:02:10.000Z' - apiName: Account childRelationships: {} eTag: d33080f9749c8d05a6b936a01419362e fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2023-09-13T22:04:24.000Z' Id: displayValue: value: 0014H00004GXwPnQAL LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-09-13T22:04:24.000Z' Name: displayValue: value: test Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2023-09-13T22:04:24.000Z' Type: displayValue: value: id: 0014H00004GXwPnQAL lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-09-13T22:04:24.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2023-09-13T22:04:24.000Z' - apiName: Account childRelationships: {} eTag: 02a02f9955d21594f12eca00514ae1e4 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOgAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-05-11T08:47:54.000Z' Name: displayValue: value: Edge Communications Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (512) 757-6000 Site: displayValue: value: SystemModstamp: displayValue: value: '2016-05-11T08:47:54.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOgAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-05-11T08:47:54.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-05-11T08:47:54.000Z' - apiName: Account childRelationships: {} eTag: 0eebc826426d1f09795db27deb0d0bfb fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOkAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-05-11T08:47:54.000Z' Name: displayValue: value: Grand Hotels & Resorts Ltd Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (312) 596-1000 Site: displayValue: value: SystemModstamp: displayValue: value: '2016-05-11T08:47:54.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOkAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-05-11T08:47:54.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-05-11T08:47:54.000Z' - apiName: Account childRelationships: {} eTag: 2a79ba99e5085e9392464789b92ef370 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOlAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T09:14:04.000Z' Name: displayValue: value: United Oil & Gas Corp. Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (212) 842-5500 Site: displayValue: value: SystemModstamp: displayValue: value: '2023-10-06T09:14:04.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOlAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T09:14:04.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2023-10-06T09:14:04.000Z' - apiName: Account childRelationships: {} eTag: c031e5ed9bda34a3a4c9f8485e2b45f5 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOmAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-05-11T08:48:05.000Z' Name: displayValue: value: Express Logistics and Transport Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (503) 421-7800 Site: displayValue: value: SystemModstamp: displayValue: value: '2016-05-11T08:48:05.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOmAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-05-11T08:48:05.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-05-11T08:48:05.000Z' - apiName: Account childRelationships: {} eTag: 8502b4f929b405553fe618841d8ac28b fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOnAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-05-11T08:47:54.000Z' Name: displayValue: value: University of Arizona Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (520) 773-9050 Site: displayValue: value: SystemModstamp: displayValue: value: '2016-05-11T08:47:54.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOnAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-05-11T08:47:54.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-05-11T08:47:54.000Z' - apiName: Account childRelationships: {} eTag: 65fc29db312ce8476ed58913eafcdb36 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOoAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2017-04-28T13:15:12.000Z' Name: displayValue: value: United Oil & Gas, Belgium Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: +44 191 4956203 Site: displayValue: value: SystemModstamp: displayValue: value: '2017-04-29T04:59:15.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOoAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2017-04-28T13:15:12.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2017-04-29T04:59:15.000Z' - apiName: Account childRelationships: {} eTag: 95b274689e30df21eac0c029c63587db fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOpAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-05-11T08:47:54.000Z' Name: displayValue: value: United Oil & Gas, Singapore Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (650) 450-8810 Site: displayValue: value: SystemModstamp: displayValue: value: '2016-05-11T08:47:54.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOpAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-05-11T08:47:54.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-05-11T08:47:54.000Z' - apiName: Account childRelationships: {} eTag: c368a7ee82696b7014aa50bd1f3097a0 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOqAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2020-09-29T16:04:43.000Z' Name: displayValue: value: GenePoint Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (650) 867-3450 Site: displayValue: value: SystemModstamp: displayValue: value: '2020-09-29T16:04:43.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOqAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2020-09-29T16:04:43.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2020-09-29T16:04:43.000Z' - apiName: Account childRelationships: {} eTag: 683d780209e8523cee5dfc75e4ecb655 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-14T14:54:05.000Z' Id: displayValue: value: 00158000007uG58AAE LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-14T14:54:05.000Z' Name: displayValue: value: Blackbeards Grog Emporium Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-14T14:54:05.000Z' Type: displayValue: value: id: 00158000007uG58AAE lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-14T14:54:05.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-14T14:54:05.000Z' - apiName: Account childRelationships: {} eTag: 08039118577ad459353eab0201c0da32 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-14T15:50:24.000Z' Id: displayValue: value: 00158000007uGY4AAM LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-14T15:50:24.000Z' Name: displayValue: value: Bluebeards Grog House Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-14T15:50:24.000Z' Type: displayValue: value: id: 00158000007uGY4AAM lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-14T15:50:24.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-14T15:50:24.000Z' - apiName: Account childRelationships: {} eTag: a46a048bcdcaf162a8c28219851a8726 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wBAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Insuron Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wBAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 53150ff4fad935b11a01d9c963d7ed2a fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wCAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Orboid Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wCAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: eb9e9002c0593cfd90d1fc8a89866e99 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wDAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Bovis Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wDAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: ce0b94e93ac9f29572d11f45662dc29b fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wEAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Roughies Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wEAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: a4bd35ad888f0ee47309af6645dbf9cc fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wFAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Otherside Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wFAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: fe9e0915af3f1048c0aa1d4aefa3bc22 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wGAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Endipin Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wGAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 6775eb7790169ada29bdf917f1334f2f fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wHAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Austech Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wHAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 28e08e57f11ad365ded07a49e0aab7b4 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wIAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Quility Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wIAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 7be73bde9fa7f2b6b672deaf6210c120 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wJAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Bleendot Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wJAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 490fb10e5dba5d155f2ede10bdf04043 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wKAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Apex Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wKAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 261acd5ca365592c6b5942d65c772d8d fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wLAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Cognicode Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wLAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 26f79e588eb05aa8cc5d994f3bd25ea0 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wMAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Securia Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wMAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 23b8ecbe0eacd2d4a23164cf92540615 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wNAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Fanfare Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wNAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: f0a49b68d802cb1ff30d6cef2f3f76e9 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wOAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Obones Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wOAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: df9ac3b4d6bcdaa75433fec054979643 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wPAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Eyeris Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wPAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: bcc5d95f4910344dd315a4ec9ca2b563 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wQAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Techtrix Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wQAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 51256f88c8db64e2f48187dc284a4eec fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wRAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Ceprene Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wRAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 7e0414c03ff4e63c5ddf286547fb6f42 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wSAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Vortexaco Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wSAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 0686be1a780882d98a9d0d32e18c76d9 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wTAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Techmania Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wTAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 3a97d66d9945233c1808db5478239335 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wUAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Gleamink Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wUAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 64fd8ccfd8894be8fb92d252f48ab3e2 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wVAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Apextri Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wVAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: cc6d0f4e15833d7f129d8248c6d0bb80 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wWAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Orbalix Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wWAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 8f0488216ee66c508d3f5fa715fbe1ea fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wXAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Zentry Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wXAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 2fae444d48ac673c879c28f9ea827cce fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wYAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Inear Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wYAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: cc5f9877af7c8e35e4bdf919009ae7b6 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wZAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Genesynk Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wZAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: b03cf2ca4e3b4607399375238769bfc5 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1waAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Flum Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1waAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: cb431803b04ef9646ae1f2de9520bc47 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wbAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Yogasm Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wbAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 5501cba638729bb1156928e6735563ac fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wcAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Mangelica Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wcAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: b2c53b40494c7d3de6bfdf689186e975 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wdAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Exoplode Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wdAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 007f696062d0fd6df9bfb0d3af01f8a9 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1weAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Digigene Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1weAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 30d9d2147c63da2beefb987268df1613 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wfAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Zanymax Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wfAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: a8272664cf5dfc36939ba2b2bc78f6f3 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wgAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Imperium Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wgAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' searchTerm: sortBy: '-BillingCountry,Id' where: deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK post: tags: - Get - Lists - Records - View summary: Salesforce Get List View Records description: Get record data for a list view using a request body. operationId: GetListViewRecords parameters: - name: SOBJECT_API_NAME in: path description: API name of the UI API supported object. required: true schema: type: string example: example_value - name: LIST_VIEW_API_NAME in: path description: API name of a list view. required: true schema: type: string example: example_value requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/GetListViewRecordsRequest' - examples: - fields: - Name - Type - AnnualRevenue - CreatedDate pageSize: 10 sortBy: - CreatedDate searchTerm: United where: '{AnnualRevenue: { gt: 1000000}}' contentMediaType: application/json example: fields: - Name - Type - AnnualRevenue - CreatedDate pageSize: 10 sortBy: - CreatedDate searchTerm: United where: '{AnnualRevenue: { gt: 1000000}}' required: true responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Fri, 06 Oct 2023 09:58:55 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private ETag: content: text/plain: schema: type: string contentMediaType: text/plain example: '"140a7beb741fbb3ff17e2ebcd4495182--gzip"' Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/GetListViewRecords' - examples: - count: 50 currentPageToken: '0' currentPageUrl: >- /services/data/v62.0/ui-api/list-records/00B58000002ssinEAA?pageSize=50&pageToken=0 fields: [] listInfoETag: 55ebdd0de6c2f1e17f63bf4581d64f76 listReference: id: 00B58000002ssinEAA listViewApiName: AllAccounts objectApiName: Account type: listView nextPageToken: '50' nextPageUrl: >- /services/data/v62.0/ui-api/list-records/00B58000002ssinEAA?pageSize=50&pageToken=50 optionalFields: [] pageSize: 50 previousPageToken: previousPageUrl: records: - apiName: Account childRelationships: {} eTag: c7b296e1aa5fa482e1f77e8dc0e0b5e1 fields: BillingCountry: displayValue: value: USA CreatedDate: displayValue: value: '2020-02-27T09:28:06.000Z' Id: displayValue: value: 0014H00002LbR7QQAV LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-04T18:35:13.000Z' Name: displayValue: value: ABC Computing Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: '123123123' Site: displayValue: value: SystemModstamp: displayValue: value: '2023-10-04T18:35:13.000Z' Type: displayValue: value: id: 0014H00002LbR7QQAV lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-04T18:35:13.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2023-10-04T18:35:13.000Z' - apiName: Account childRelationships: {} eTag: cfeff90a24208129b7cf7be4e47dda99 fields: BillingCountry: displayValue: value: USA CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOhAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2020-09-29T16:04:02.000Z' Name: displayValue: value: Burlington Textiles Corp of America Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (336) 222-7000 Site: displayValue: value: SystemModstamp: displayValue: value: '2020-09-29T16:04:02.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOhAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2020-09-29T16:04:02.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2020-09-29T16:04:02.000Z' - apiName: Account childRelationships: {} eTag: c42c5257506520c737965101b225840c fields: BillingCountry: displayValue: value: USA CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOjAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2020-09-29T15:52:06.000Z' Name: displayValue: value: Dickenson Co. Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (785) 241-6200 Site: displayValue: value: SystemModstamp: displayValue: value: '2020-09-29T15:52:06.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOjAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2020-09-29T15:52:06.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2020-09-29T15:52:06.000Z' - apiName: Account childRelationships: {} eTag: 2f21e61d45d05263809593342f5761f4 fields: BillingCountry: displayValue: value: France CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOiAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-05-11T08:48:05.000Z' Name: displayValue: value: Pyramid Construction Inc. Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (014) 427-4427 Site: displayValue: value: SystemModstamp: displayValue: value: '2016-05-11T08:48:05.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOiAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-05-11T08:48:05.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-05-11T08:48:05.000Z' - apiName: Account childRelationships: {} eTag: a5b391b1caf935de4bbc96858a4e6a12 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2020-02-04T18:26:08.000Z' Id: displayValue: value: 0014H00002E6wi6QAB LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2020-02-04T18:26:08.000Z' Name: displayValue: value: Sample Account Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2020-02-04T18:26:08.000Z' Type: displayValue: value: id: 0014H00002E6wi6QAB lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2020-02-04T18:26:08.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2020-02-04T18:26:08.000Z' - apiName: Account childRelationships: {} eTag: fe60d8fe25895ac63644cf563fdc35d6 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2021-02-02T13:47:39.000Z' Id: displayValue: value: 0014H00002x6HUhQAM LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2021-02-25T09:30:33.000Z' Name: displayValue: value: ACME Inc. Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2021-02-25T09:30:33.000Z' Type: displayValue: value: id: 0014H00002x6HUhQAM lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2021-02-25T09:30:33.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2021-02-25T09:30:33.000Z' - apiName: Account childRelationships: {} eTag: 3e85e3f4d6851dd2922333dcec928b1e fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2023-04-25T16:02:10.000Z' Id: displayValue: value: 0014H00004CXfY8QAL LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-04-25T16:02:10.000Z' Name: displayValue: value: test Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2023-04-25T16:02:10.000Z' Type: displayValue: value: id: 0014H00004CXfY8QAL lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-04-25T16:02:10.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2023-04-25T16:02:10.000Z' - apiName: Account childRelationships: {} eTag: d33080f9749c8d05a6b936a01419362e fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2023-09-13T22:04:24.000Z' Id: displayValue: value: 0014H00004GXwPnQAL LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-09-13T22:04:24.000Z' Name: displayValue: value: test Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2023-09-13T22:04:24.000Z' Type: displayValue: value: id: 0014H00004GXwPnQAL lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-09-13T22:04:24.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2023-09-13T22:04:24.000Z' - apiName: Account childRelationships: {} eTag: 02a02f9955d21594f12eca00514ae1e4 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOgAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-05-11T08:47:54.000Z' Name: displayValue: value: Edge Communications Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (512) 757-6000 Site: displayValue: value: SystemModstamp: displayValue: value: '2016-05-11T08:47:54.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOgAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-05-11T08:47:54.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-05-11T08:47:54.000Z' - apiName: Account childRelationships: {} eTag: 0eebc826426d1f09795db27deb0d0bfb fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOkAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-05-11T08:47:54.000Z' Name: displayValue: value: Grand Hotels & Resorts Ltd Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (312) 596-1000 Site: displayValue: value: SystemModstamp: displayValue: value: '2016-05-11T08:47:54.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOkAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-05-11T08:47:54.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-05-11T08:47:54.000Z' - apiName: Account childRelationships: {} eTag: 2a79ba99e5085e9392464789b92ef370 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOlAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T09:14:04.000Z' Name: displayValue: value: United Oil & Gas Corp. Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (212) 842-5500 Site: displayValue: value: SystemModstamp: displayValue: value: '2023-10-06T09:14:04.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOlAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T09:14:04.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2023-10-06T09:14:04.000Z' - apiName: Account childRelationships: {} eTag: c031e5ed9bda34a3a4c9f8485e2b45f5 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOmAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-05-11T08:48:05.000Z' Name: displayValue: value: Express Logistics and Transport Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (503) 421-7800 Site: displayValue: value: SystemModstamp: displayValue: value: '2016-05-11T08:48:05.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOmAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-05-11T08:48:05.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-05-11T08:48:05.000Z' - apiName: Account childRelationships: {} eTag: 8502b4f929b405553fe618841d8ac28b fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOnAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-05-11T08:47:54.000Z' Name: displayValue: value: University of Arizona Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (520) 773-9050 Site: displayValue: value: SystemModstamp: displayValue: value: '2016-05-11T08:47:54.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOnAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-05-11T08:47:54.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-05-11T08:47:54.000Z' - apiName: Account childRelationships: {} eTag: 65fc29db312ce8476ed58913eafcdb36 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOoAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2017-04-28T13:15:12.000Z' Name: displayValue: value: United Oil & Gas, Belgium Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: +44 191 4956203 Site: displayValue: value: SystemModstamp: displayValue: value: '2017-04-29T04:59:15.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOoAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2017-04-28T13:15:12.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2017-04-29T04:59:15.000Z' - apiName: Account childRelationships: {} eTag: 95b274689e30df21eac0c029c63587db fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOpAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-05-11T08:47:54.000Z' Name: displayValue: value: United Oil & Gas, Singapore Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (650) 450-8810 Site: displayValue: value: SystemModstamp: displayValue: value: '2016-05-11T08:47:54.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOpAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-05-11T08:47:54.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-05-11T08:47:54.000Z' - apiName: Account childRelationships: {} eTag: c368a7ee82696b7014aa50bd1f3097a0 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOqAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2020-09-29T16:04:43.000Z' Name: displayValue: value: GenePoint Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (650) 867-3450 Site: displayValue: value: SystemModstamp: displayValue: value: '2020-09-29T16:04:43.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOqAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2020-09-29T16:04:43.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2020-09-29T16:04:43.000Z' - apiName: Account childRelationships: {} eTag: 683d780209e8523cee5dfc75e4ecb655 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-14T14:54:05.000Z' Id: displayValue: value: 00158000007uG58AAE LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-14T14:54:05.000Z' Name: displayValue: value: Blackbeards Grog Emporium Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-14T14:54:05.000Z' Type: displayValue: value: id: 00158000007uG58AAE lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-14T14:54:05.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-14T14:54:05.000Z' - apiName: Account childRelationships: {} eTag: 08039118577ad459353eab0201c0da32 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-14T15:50:24.000Z' Id: displayValue: value: 00158000007uGY4AAM LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-14T15:50:24.000Z' Name: displayValue: value: Bluebeards Grog House Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-14T15:50:24.000Z' Type: displayValue: value: id: 00158000007uGY4AAM lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-14T15:50:24.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-14T15:50:24.000Z' - apiName: Account childRelationships: {} eTag: a46a048bcdcaf162a8c28219851a8726 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wBAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Insuron Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wBAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 53150ff4fad935b11a01d9c963d7ed2a fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wCAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Orboid Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wCAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: eb9e9002c0593cfd90d1fc8a89866e99 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wDAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Bovis Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wDAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: ce0b94e93ac9f29572d11f45662dc29b fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wEAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Roughies Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wEAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: a4bd35ad888f0ee47309af6645dbf9cc fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wFAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Otherside Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wFAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: fe9e0915af3f1048c0aa1d4aefa3bc22 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wGAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Endipin Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wGAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 6775eb7790169ada29bdf917f1334f2f fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wHAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Austech Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wHAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 28e08e57f11ad365ded07a49e0aab7b4 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wIAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Quility Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wIAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 7be73bde9fa7f2b6b672deaf6210c120 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wJAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Bleendot Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wJAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 490fb10e5dba5d155f2ede10bdf04043 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wKAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Apex Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wKAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 261acd5ca365592c6b5942d65c772d8d fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wLAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Cognicode Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wLAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 26f79e588eb05aa8cc5d994f3bd25ea0 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wMAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Securia Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wMAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 23b8ecbe0eacd2d4a23164cf92540615 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wNAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Fanfare Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wNAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: f0a49b68d802cb1ff30d6cef2f3f76e9 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wOAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Obones Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wOAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: df9ac3b4d6bcdaa75433fec054979643 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wPAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Eyeris Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wPAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: bcc5d95f4910344dd315a4ec9ca2b563 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wQAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Techtrix Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wQAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 51256f88c8db64e2f48187dc284a4eec fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wRAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Ceprene Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wRAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 7e0414c03ff4e63c5ddf286547fb6f42 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wSAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Vortexaco Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wSAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 0686be1a780882d98a9d0d32e18c76d9 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wTAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Techmania Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wTAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 3a97d66d9945233c1808db5478239335 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wUAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Gleamink Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wUAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 64fd8ccfd8894be8fb92d252f48ab3e2 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wVAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Apextri Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wVAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: cc6d0f4e15833d7f129d8248c6d0bb80 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wWAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Orbalix Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wWAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 8f0488216ee66c508d3f5fa715fbe1ea fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wXAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Zentry Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wXAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 2fae444d48ac673c879c28f9ea827cce fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wYAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Inear Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wYAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: cc5f9877af7c8e35e4bdf919009ae7b6 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wZAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Genesynk Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wZAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: b03cf2ca4e3b4607399375238769bfc5 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1waAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Flum Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1waAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: cb431803b04ef9646ae1f2de9520bc47 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wbAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Yogasm Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wbAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 5501cba638729bb1156928e6735563ac fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wcAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Mangelica Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wcAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: b2c53b40494c7d3de6bfdf689186e975 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wdAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Exoplode Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wdAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 007f696062d0fd6df9bfb0d3af01f8a9 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1weAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Digigene Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1weAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 30d9d2147c63da2beefb987268df1613 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wfAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Zanymax Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wfAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: a8272664cf5dfc36939ba2b2bc78f6f3 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wgAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Imperium Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wgAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' searchTerm: sortBy: '-BillingCountry,Id' where: contentMediaType: application/json;charset=UTF-8 example: count: 50 currentPageToken: '0' currentPageUrl: >- /services/data/v62.0/ui-api/list-records/00B58000002ssinEAA?pageSize=50&pageToken=0 fields: [] listInfoETag: 55ebdd0de6c2f1e17f63bf4581d64f76 listReference: id: 00B58000002ssinEAA listViewApiName: AllAccounts objectApiName: Account type: listView nextPageToken: '50' nextPageUrl: >- /services/data/v62.0/ui-api/list-records/00B58000002ssinEAA?pageSize=50&pageToken=50 optionalFields: [] pageSize: 50 previousPageToken: previousPageUrl: records: - apiName: Account childRelationships: {} eTag: c7b296e1aa5fa482e1f77e8dc0e0b5e1 fields: BillingCountry: displayValue: value: USA CreatedDate: displayValue: value: '2020-02-27T09:28:06.000Z' Id: displayValue: value: 0014H00002LbR7QQAV LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-04T18:35:13.000Z' Name: displayValue: value: ABC Computing Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: '123123123' Site: displayValue: value: SystemModstamp: displayValue: value: '2023-10-04T18:35:13.000Z' Type: displayValue: value: id: 0014H00002LbR7QQAV lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-04T18:35:13.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2023-10-04T18:35:13.000Z' - apiName: Account childRelationships: {} eTag: cfeff90a24208129b7cf7be4e47dda99 fields: BillingCountry: displayValue: value: USA CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOhAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2020-09-29T16:04:02.000Z' Name: displayValue: value: Burlington Textiles Corp of America Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (336) 222-7000 Site: displayValue: value: SystemModstamp: displayValue: value: '2020-09-29T16:04:02.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOhAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2020-09-29T16:04:02.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2020-09-29T16:04:02.000Z' - apiName: Account childRelationships: {} eTag: c42c5257506520c737965101b225840c fields: BillingCountry: displayValue: value: USA CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOjAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2020-09-29T15:52:06.000Z' Name: displayValue: value: Dickenson Co. Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (785) 241-6200 Site: displayValue: value: SystemModstamp: displayValue: value: '2020-09-29T15:52:06.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOjAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2020-09-29T15:52:06.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2020-09-29T15:52:06.000Z' - apiName: Account childRelationships: {} eTag: 2f21e61d45d05263809593342f5761f4 fields: BillingCountry: displayValue: value: France CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOiAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-05-11T08:48:05.000Z' Name: displayValue: value: Pyramid Construction Inc. Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (014) 427-4427 Site: displayValue: value: SystemModstamp: displayValue: value: '2016-05-11T08:48:05.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOiAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-05-11T08:48:05.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-05-11T08:48:05.000Z' - apiName: Account childRelationships: {} eTag: a5b391b1caf935de4bbc96858a4e6a12 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2020-02-04T18:26:08.000Z' Id: displayValue: value: 0014H00002E6wi6QAB LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2020-02-04T18:26:08.000Z' Name: displayValue: value: Sample Account Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2020-02-04T18:26:08.000Z' Type: displayValue: value: id: 0014H00002E6wi6QAB lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2020-02-04T18:26:08.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2020-02-04T18:26:08.000Z' - apiName: Account childRelationships: {} eTag: fe60d8fe25895ac63644cf563fdc35d6 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2021-02-02T13:47:39.000Z' Id: displayValue: value: 0014H00002x6HUhQAM LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2021-02-25T09:30:33.000Z' Name: displayValue: value: ACME Inc. Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2021-02-25T09:30:33.000Z' Type: displayValue: value: id: 0014H00002x6HUhQAM lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2021-02-25T09:30:33.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2021-02-25T09:30:33.000Z' - apiName: Account childRelationships: {} eTag: 3e85e3f4d6851dd2922333dcec928b1e fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2023-04-25T16:02:10.000Z' Id: displayValue: value: 0014H00004CXfY8QAL LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-04-25T16:02:10.000Z' Name: displayValue: value: test Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2023-04-25T16:02:10.000Z' Type: displayValue: value: id: 0014H00004CXfY8QAL lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-04-25T16:02:10.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2023-04-25T16:02:10.000Z' - apiName: Account childRelationships: {} eTag: d33080f9749c8d05a6b936a01419362e fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2023-09-13T22:04:24.000Z' Id: displayValue: value: 0014H00004GXwPnQAL LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-09-13T22:04:24.000Z' Name: displayValue: value: test Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2023-09-13T22:04:24.000Z' Type: displayValue: value: id: 0014H00004GXwPnQAL lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-09-13T22:04:24.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2023-09-13T22:04:24.000Z' - apiName: Account childRelationships: {} eTag: 02a02f9955d21594f12eca00514ae1e4 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOgAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-05-11T08:47:54.000Z' Name: displayValue: value: Edge Communications Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (512) 757-6000 Site: displayValue: value: SystemModstamp: displayValue: value: '2016-05-11T08:47:54.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOgAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-05-11T08:47:54.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-05-11T08:47:54.000Z' - apiName: Account childRelationships: {} eTag: 0eebc826426d1f09795db27deb0d0bfb fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOkAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-05-11T08:47:54.000Z' Name: displayValue: value: Grand Hotels & Resorts Ltd Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (312) 596-1000 Site: displayValue: value: SystemModstamp: displayValue: value: '2016-05-11T08:47:54.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOkAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-05-11T08:47:54.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-05-11T08:47:54.000Z' - apiName: Account childRelationships: {} eTag: 2a79ba99e5085e9392464789b92ef370 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOlAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T09:14:04.000Z' Name: displayValue: value: United Oil & Gas Corp. Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (212) 842-5500 Site: displayValue: value: SystemModstamp: displayValue: value: '2023-10-06T09:14:04.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOlAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T09:14:04.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2023-10-06T09:14:04.000Z' - apiName: Account childRelationships: {} eTag: c031e5ed9bda34a3a4c9f8485e2b45f5 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOmAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-05-11T08:48:05.000Z' Name: displayValue: value: Express Logistics and Transport Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (503) 421-7800 Site: displayValue: value: SystemModstamp: displayValue: value: '2016-05-11T08:48:05.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOmAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-05-11T08:48:05.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-05-11T08:48:05.000Z' - apiName: Account childRelationships: {} eTag: 8502b4f929b405553fe618841d8ac28b fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOnAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-05-11T08:47:54.000Z' Name: displayValue: value: University of Arizona Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (520) 773-9050 Site: displayValue: value: SystemModstamp: displayValue: value: '2016-05-11T08:47:54.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOnAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-05-11T08:47:54.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-05-11T08:47:54.000Z' - apiName: Account childRelationships: {} eTag: 65fc29db312ce8476ed58913eafcdb36 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOoAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2017-04-28T13:15:12.000Z' Name: displayValue: value: United Oil & Gas, Belgium Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: +44 191 4956203 Site: displayValue: value: SystemModstamp: displayValue: value: '2017-04-29T04:59:15.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOoAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2017-04-28T13:15:12.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2017-04-29T04:59:15.000Z' - apiName: Account childRelationships: {} eTag: 95b274689e30df21eac0c029c63587db fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOpAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-05-11T08:47:54.000Z' Name: displayValue: value: United Oil & Gas, Singapore Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (650) 450-8810 Site: displayValue: value: SystemModstamp: displayValue: value: '2016-05-11T08:47:54.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOpAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-05-11T08:47:54.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-05-11T08:47:54.000Z' - apiName: Account childRelationships: {} eTag: c368a7ee82696b7014aa50bd1f3097a0 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOqAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2020-09-29T16:04:43.000Z' Name: displayValue: value: GenePoint Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (650) 867-3450 Site: displayValue: value: SystemModstamp: displayValue: value: '2020-09-29T16:04:43.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOqAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2020-09-29T16:04:43.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2020-09-29T16:04:43.000Z' - apiName: Account childRelationships: {} eTag: 683d780209e8523cee5dfc75e4ecb655 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-14T14:54:05.000Z' Id: displayValue: value: 00158000007uG58AAE LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-14T14:54:05.000Z' Name: displayValue: value: Blackbeards Grog Emporium Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-14T14:54:05.000Z' Type: displayValue: value: id: 00158000007uG58AAE lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-14T14:54:05.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-14T14:54:05.000Z' - apiName: Account childRelationships: {} eTag: 08039118577ad459353eab0201c0da32 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-14T15:50:24.000Z' Id: displayValue: value: 00158000007uGY4AAM LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-14T15:50:24.000Z' Name: displayValue: value: Bluebeards Grog House Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-14T15:50:24.000Z' Type: displayValue: value: id: 00158000007uGY4AAM lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-14T15:50:24.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-14T15:50:24.000Z' - apiName: Account childRelationships: {} eTag: a46a048bcdcaf162a8c28219851a8726 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wBAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Insuron Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wBAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 53150ff4fad935b11a01d9c963d7ed2a fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wCAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Orboid Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wCAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: eb9e9002c0593cfd90d1fc8a89866e99 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wDAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Bovis Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wDAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: ce0b94e93ac9f29572d11f45662dc29b fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wEAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Roughies Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wEAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: a4bd35ad888f0ee47309af6645dbf9cc fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wFAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Otherside Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wFAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: fe9e0915af3f1048c0aa1d4aefa3bc22 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wGAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Endipin Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wGAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 6775eb7790169ada29bdf917f1334f2f fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wHAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Austech Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wHAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 28e08e57f11ad365ded07a49e0aab7b4 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wIAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Quility Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wIAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 7be73bde9fa7f2b6b672deaf6210c120 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wJAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Bleendot Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wJAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 490fb10e5dba5d155f2ede10bdf04043 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wKAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Apex Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wKAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 261acd5ca365592c6b5942d65c772d8d fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wLAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Cognicode Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wLAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 26f79e588eb05aa8cc5d994f3bd25ea0 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wMAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Securia Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wMAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 23b8ecbe0eacd2d4a23164cf92540615 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wNAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Fanfare Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wNAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: f0a49b68d802cb1ff30d6cef2f3f76e9 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wOAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Obones Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wOAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: df9ac3b4d6bcdaa75433fec054979643 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wPAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Eyeris Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wPAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: bcc5d95f4910344dd315a4ec9ca2b563 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wQAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Techtrix Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wQAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 51256f88c8db64e2f48187dc284a4eec fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wRAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Ceprene Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wRAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 7e0414c03ff4e63c5ddf286547fb6f42 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wSAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Vortexaco Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wSAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 0686be1a780882d98a9d0d32e18c76d9 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wTAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Techmania Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wTAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 3a97d66d9945233c1808db5478239335 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wUAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Gleamink Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wUAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 64fd8ccfd8894be8fb92d252f48ab3e2 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wVAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Apextri Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wVAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: cc6d0f4e15833d7f129d8248c6d0bb80 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wWAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Orbalix Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wWAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 8f0488216ee66c508d3f5fa715fbe1ea fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wXAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Zentry Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wXAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 2fae444d48ac673c879c28f9ea827cce fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wYAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Inear Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wYAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: cc5f9877af7c8e35e4bdf919009ae7b6 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wZAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Genesynk Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wZAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: b03cf2ca4e3b4607399375238769bfc5 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1waAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Flum Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1waAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: cb431803b04ef9646ae1f2de9520bc47 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wbAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Yogasm Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wbAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 5501cba638729bb1156928e6735563ac fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wcAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Mangelica Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wcAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: b2c53b40494c7d3de6bfdf689186e975 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wdAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Exoplode Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wdAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 007f696062d0fd6df9bfb0d3af01f8a9 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1weAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Digigene Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1weAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 30d9d2147c63da2beefb987268df1613 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wfAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Zanymax Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wfAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: a8272664cf5dfc36939ba2b2bc78f6f3 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wgAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Imperium Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wgAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' searchTerm: sortBy: '-BillingCountry,Id' where: deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/ui-api/list-info/{LIST_VIEW_ID}: get: tags: - Get - Identifiers - Lists - View summary: Salesforce Get List View Metadata by Id description: Get list view metadata by list view ID using URL parameters. operationId: GetListViewMetadatabyID parameters: - name: LIST_VIEW_ID in: path description: The ID of a list view. required: true schema: type: string example: '500123' responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Fri, 06 Oct 2023 09:56:15 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private ETag: content: text/plain: schema: type: string contentMediaType: text/plain example: '"55ebdd0de6c2f1e17f63bf4581d64f76--gzip"' Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/GetListViewMetadatabyID' - examples: - cloneable: true createable: true deletable: true displayColumns: - fieldApiName: Name inlineEditAttributes: {} label: Account Name lookupId: Id searchable: true sortable: true - fieldApiName: Site inlineEditAttributes: {} label: Account Site lookupId: searchable: true sortable: true - fieldApiName: Phone inlineEditAttributes: {} label: Phone lookupId: searchable: true sortable: true - fieldApiName: Type inlineEditAttributes: {} label: Type lookupId: searchable: true sortable: true - fieldApiName: BillingCountry inlineEditAttributes: {} label: Billing Country lookupId: searchable: true sortable: true - fieldApiName: Owner.Alias inlineEditAttributes: {} label: Account Owner Alias lookupId: Owner.Id searchable: true sortable: true filterLogicString: filteredByInfo: [] hasMassActions: true inlineEditDetails: {} label: All Accounts listReference: id: 00B58000002ssinEAA listViewApiName: AllAccounts objectApiName: Account type: listView listShares: {} objectApiNames: [] orderedByInfo: - fieldApiName: BillingCountry isAscending: false label: Billing Country scope: {} searchable: true updateable: true userPreferences: columnWidths: Site: -1 Type: -1 BillingCountry: -1 Owner.Alias: -1 Phone: -1 Name: -1 columnWrap: Site: false Type: false BillingCountry: false Owner.Alias: false Phone: false Name: false visibility: Public visibilityEditable: true contentMediaType: application/json;charset=UTF-8 example: cloneable: true createable: true deletable: true displayColumns: - fieldApiName: Name inlineEditAttributes: {} label: Account Name lookupId: Id searchable: true sortable: true - fieldApiName: Site inlineEditAttributes: {} label: Account Site lookupId: searchable: true sortable: true - fieldApiName: Phone inlineEditAttributes: {} label: Phone lookupId: searchable: true sortable: true - fieldApiName: Type inlineEditAttributes: {} label: Type lookupId: searchable: true sortable: true - fieldApiName: BillingCountry inlineEditAttributes: {} label: Billing Country lookupId: searchable: true sortable: true - fieldApiName: Owner.Alias inlineEditAttributes: {} label: Account Owner Alias lookupId: Owner.Id searchable: true sortable: true filterLogicString: filteredByInfo: [] hasMassActions: true inlineEditDetails: {} label: All Accounts listReference: id: 00B58000002ssinEAA listViewApiName: AllAccounts objectApiName: Account type: listView listShares: {} objectApiNames: [] orderedByInfo: - fieldApiName: BillingCountry isAscending: false label: Billing Country scope: {} searchable: true updateable: true userPreferences: columnWidths: Site: -1 Type: -1 BillingCountry: -1 Owner.Alias: -1 Phone: -1 Name: -1 columnWrap: Site: false Type: false BillingCountry: false Owner.Alias: false Phone: false Name: false visibility: Public visibilityEditable: true deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/ui-api/list-info/{SOBJECT_API_NAME}/{LIST_VIEW_API_NAME}: get: tags: - Get - Lists - Names - View summary: Salesforce Get List View Metadata by Api Name description: Get list view metadata by list view API name using URL parameters. operationId: GetListViewMetadatabyAPIName parameters: - name: SOBJECT_API_NAME in: path description: API name of the UI API supported object. required: true schema: type: string example: example_value - name: LIST_VIEW_API_NAME in: path description: >- API name of a list view, such as AllAccounts, __Recent, or __SearchResult. required: true schema: type: string example: example_value responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Fri, 06 Oct 2023 09:56:56 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private ETag: content: text/plain: schema: type: string contentMediaType: text/plain example: '"55ebdd0de6c2f1e17f63bf4581d64f76--gzip"' Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/GetListViewMetadatabyAPIName' - examples: - cloneable: true createable: true deletable: true displayColumns: - fieldApiName: Name inlineEditAttributes: {} label: Account Name lookupId: Id searchable: true sortable: true - fieldApiName: Site inlineEditAttributes: {} label: Account Site lookupId: searchable: true sortable: true - fieldApiName: Phone inlineEditAttributes: {} label: Phone lookupId: searchable: true sortable: true - fieldApiName: Type inlineEditAttributes: {} label: Type lookupId: searchable: true sortable: true - fieldApiName: BillingCountry inlineEditAttributes: {} label: Billing Country lookupId: searchable: true sortable: true - fieldApiName: Owner.Alias inlineEditAttributes: {} label: Account Owner Alias lookupId: Owner.Id searchable: true sortable: true filterLogicString: filteredByInfo: [] hasMassActions: true inlineEditDetails: {} label: All Accounts listReference: id: 00B58000002ssinEAA listViewApiName: AllAccounts objectApiName: Account type: listView listShares: {} objectApiNames: [] orderedByInfo: - fieldApiName: BillingCountry isAscending: false label: Billing Country scope: {} updateable: true userPreferences: columnWidths: Site: -1 Type: -1 BillingCountry: -1 Owner.Alias: -1 Phone: -1 Name: -1 columnWrap: Site: false Type: false BillingCountry: false Owner.Alias: false Phone: false Name: false visibility: Public visibilityEditable: true contentMediaType: application/json;charset=UTF-8 example: cloneable: true createable: true deletable: true displayColumns: - fieldApiName: Name inlineEditAttributes: {} label: Account Name lookupId: Id searchable: true sortable: true - fieldApiName: Site inlineEditAttributes: {} label: Account Site lookupId: searchable: true sortable: true - fieldApiName: Phone inlineEditAttributes: {} label: Phone lookupId: searchable: true sortable: true - fieldApiName: Type inlineEditAttributes: {} label: Type lookupId: searchable: true sortable: true - fieldApiName: BillingCountry inlineEditAttributes: {} label: Billing Country lookupId: searchable: true sortable: true - fieldApiName: Owner.Alias inlineEditAttributes: {} label: Account Owner Alias lookupId: Owner.Id searchable: true sortable: true filterLogicString: filteredByInfo: [] hasMassActions: true inlineEditDetails: {} label: All Accounts listReference: id: 00B58000002ssinEAA listViewApiName: AllAccounts objectApiName: Account type: listView listShares: {} objectApiNames: [] orderedByInfo: - fieldApiName: BillingCountry isAscending: false label: Billing Country scope: {} updateable: true userPreferences: columnWidths: Site: -1 Type: -1 BillingCountry: -1 Owner.Alias: -1 Phone: -1 Name: -1 columnWrap: Site: false Type: false BillingCountry: false Owner.Alias: false Phone: false Name: false visibility: Public visibilityEditable: true deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/sobjects/EventLogFile/{id}/LogFile: get: tags: - Events - Files - Get - Logs summary: Salesforce Get Event Log File operationId: Geteventlogfile parameters: - name: id in: path description: Log event Id required: true schema: type: string examples: - 'null' example: abc123 responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/scheduling: get: tags: - Scheduling summary: Salesforce Scheduling description: >- Return frequency metrics about the standard pages within which users switched from Lightning Experience to Salesforce Classic. https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_lightning_exitbypagemetrics.htm operationId: Scheduling parameters: - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/scheduling/getAppointmentSlots: post: tags: - Appointment - Get - Slots summary: Salesforce Get Appointment Slots description: >- Returns a list of available appointment time slots for a resource based on given work type group and territories. https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/requests_ls_getappointmentslots.htm operationId: GetAppointmentSlots parameters: [] requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/GetAppointmentSlotsRequest' - examples: - startTime: string endTime: string workTypeGroupId: string workType: Work Type accountId: string territoryIds: string[] requiredResourceIds: string[] schedulingPolicyId: string allowConcurrentScheduling: boolean contentMediaType: application/json example: startTime: string endTime: string workTypeGroupId: string workType: Work Type accountId: string territoryIds: string[] requiredResourceIds: string[] schedulingPolicyId: string allowConcurrentScheduling: boolean required: true responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/scheduling/getAppointmentCandidates: post: tags: - Appointment - Candidates - Get summary: Salesforce Get Appointment Candidates description: >- Returns a list of available service resources (appointment candidates) based on work type group and service territories. https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/requests_ls_getappointmentcandidates.htm operationId: GetAppointmentCandidates parameters: [] requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/GetAppointmentCandidatesRequest' - examples: - startTime: string endTime: string workTypeGroupId: string workType: Work Type accountId: string territoryIds: string[] requiredResourceIds: string[] schedulingPolicyId: string allowConcurrentScheduling: boolean contentMediaType: application/json example: startTime: string endTime: string workTypeGroupId: string workType: Work Type accountId: string territoryIds: string[] requiredResourceIds: string[] schedulingPolicyId: string allowConcurrentScheduling: boolean required: true responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/search: get: tags: - Search summary: Salesforce Search description: >- Executes the specified SOSL search. The search string must be URL-encoded. https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_search.htm operationId: Search parameters: - name: q in: query description: A SOSL statement that is properly URL-encoded. required: true style: form explode: true schema: type: string example: example_value - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/search/scopeOrder: get: tags: - Order - Scope - Search summary: Salesforce Search Scope and Order description: >- Returns an ordered list of objects in the default global search scope of a logged-in user. Global search keeps track of which objects the user interacts with and how often and arranges the search results accordingly. Objects used most frequently appear at the top of the list. The returned list reflects the object order in the user’s default search scope, including any pinned objects on the user’s search results page. This call is useful if you want to implement a custom search results page using the optimized global search scope. The search string must be URL-encoded. https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_search_scope_order.htm operationId: SearchScopeandOrder parameters: - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/search/layout: get: tags: - Layouts - Result - Search summary: Salesforce Search Result Layouts description: >- Returns search result layout information for the objects in the query string. For each object, this call returns the list of fields displayed on the search results page as columns, the number of rows displayed on the first page, and the label used on the search results page. This call supports bulk fetch for up to 100 objects in a query. https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_search_layouts.htm operationId: SearchResultLayouts parameters: - name: q in: query description: Comma delimited object list required: true style: form explode: true schema: type: string example: example_value - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/search/suggestions: get: tags: - Instant - Records - Results - Search - Suggested summary: Salesforce Search for Records Suggested by Autocomplete and Instant Results description: >- Returns a list of suggested records whose names match the user’s search string. The suggestions resource provides autocomplete results and instant results for users to navigate directly to likely relevant records, before performing a full search. https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_search_suggest_records.htm operationId: SearchforRecordsSuggestedbyAutocompleteandInstantResults parameters: - name: q in: query description: '' required: true style: form explode: true schema: type: string example: example_value - name: sobject in: query description: '' required: true style: form explode: true schema: type: string example: example_value - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/search/suggestSearchQueries: get: tags: - Queries - Search - Suggested summary: Salesforce Search Suggested Queries description: >- Returns a list of suggested searches based on the user’s query string text matching searches that other users have performed in Salesforce Knowledge. Provides a way to improve search effectiveness, before the user performs a search. https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_search_suggest_queries.htm operationId: SearchSuggestedQueries parameters: - name: q in: query description: '' required: true style: form explode: true schema: type: string example: example_value - name: language in: query description: '' required: true style: form explode: true schema: type: string example: example_value - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/parameterizedSearch: get: tags: - Search summary: Salesforce Parameterized Search description: >- Executes a simple RESTful search using parameters instead of a SOSL clause. Indicate parameters in a URL in the GET method. Or, use POST for more complex JSON searches. operationId: ParameterizedSearch parameters: - name: q in: query description: A search string that is properly URL-encoded required: true style: form explode: true schema: type: string example: example_value - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/sobjects/relevantItems: get: tags: - Items - Relevant summary: Salesforce Relevant Items description: >- Gets the current user’s most relevant items. Relevant items include records for objects in the user’s global search scope and also most recently used (MRU) objects. Relevant items include up to 50 of the most recently viewed or updated records for each object in the user’s global search scope. Note The user’s global search scope includes the objects the user interacted with most in the last 30 days, including objects the user pinned from the search results page in the Salesforce Classic. Then, the resource finds more recent records for each most recently used (MRU) object until the maximum number of records, which is 2,000, is returned. This resource only accesses the relevant item information. Modifying the list of relevant items is not currently supported https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_relevant_items.htm operationId: RelevantItems parameters: - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/process/approvals: get: tags: - Approvals - Process summary: Salesforce Process Approvals description: >- Returns a list of all approval processes. Can also be used to submit a particular record if that entity supports an approval process and one has already been defined. Records can be approved and rejected if the current user is an assigned approver. When using a POST request to do bulk approvals, the requests that succeed are committed and the requests that don’t succeed send back an error. https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_process_approvals.htm operationId: ProcessApprovals parameters: - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK post: tags: - Approvals - Process - Submit summary: Salesforce Process Approvals Submit description: >- Returns a list of all approval processes. Can also be used to submit a particular record if that entity supports an approval process and one has already been defined. Records can be approved and rejected if the current user is an assigned approver. When using a POST request to do bulk approvals, the requests that succeed are committed and the requests that don’t succeed send back an error. https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_process_approvals.htm operationId: ProcessApprovalsSubmit parameters: [] requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/ProcessApprovalsSubmitRequest' - examples: - actionType: string contextActorId: ID contextId: ID comments: string nextApproverIds: ID[] processDefinitionNameOrId: string skipEntryCriteria: boolean contentMediaType: application/json example: actionType: string contextActorId: ID contextId: ID comments: string nextApproverIds: ID[] processDefinitionNameOrId: string skipEntryCriteria: boolean required: true responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/process/rules: get: tags: - Process - Rules summary: Salesforce Process Rules description: >- Returns a list of all active workflow rules. If a rule has actions, the actions will be listed under the rule. Can also be used to trigger all workflow rules that are associated with a specified record. The actions for a rule are only fired if the rule’s criteria is met. When using a POST request, if anything fails, the whole transaction is rolled back. Cross-object workflow rules cannot be invoked using the REST API. To get a list of the workflow rules or to trigger one or more workflow rules, the URI is: /vXX.X/process/rules/ To get the rules for a particular object: /vXX.X/process/rules/SObjectName To get the metadata for a particular rule: /vXX.X/process/rules/SObjectName/workflowRuleId https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_process_rules.htm operationId: ProcessRules parameters: - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/support/embeddedservice/configuration/{EMBEDDED_SERVICE_CONFIG_DEVELOPERNAME}: get: tags: - Configuration - Describe summary: Salesforce Embedded Service Configuration Describe description: >- Retrieves the values for your Embedded Service deployment configuration, including the branding colors, font, and site URL. You must be logged in to the account that owns the EmbeddedServiceConfigDeveloperName you are querying. operationId: EmbeddedServiceConfigurationDescribe parameters: - name: EMBEDDED_SERVICE_CONFIG_DEVELOPERNAME in: path description: '' required: true schema: type: string example: example_value - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/support/dataCategoryGroups: get: tags: - Data - Groups summary: Salesforce Data Category Groups description: >- Returns the list of list views for the specified sObject, including the ID and other basic information about each list view. You can also get basic information for a specific list view by ID. operationId: DataCategoryGroups parameters: - name: sObjectName in: query description: '' required: true style: form explode: true schema: type: string example: example_value - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/support/dataCategoryGroups/{GROUP}/dataCategories/{CATEGORY}: get: tags: - Data - Detail summary: Salesforce Data Category Detail description: Get data category details and the child categories by a given category. operationId: DataCategoryDetail parameters: - name: GROUP in: path description: '' required: true schema: type: string example: example_value - name: CATEGORY in: path description: '' required: true schema: type: string example: example_value - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/support/knowledgeArticles: get: tags: - Lists summary: Salesforce Articles List description: >- Get a page of online articles for the given language and category through either search or query. operationId: ArticlesList parameters: - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/support/knowledgeArticles/{ARTICLE_ID}: get: tags: - Data summary: Salesforce Articles Details description: Get all online article fields, accessible to the user. operationId: ArticlesDetails parameters: - name: ARTICLE_ID in: path description: '' required: true schema: type: string example: '500123' - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/knowledgeManagement/settings: get: tags: - Knowledge - Language - Retrieves - Settings summary: Salesforce Retrieve Knowledge Language Settings description: >- Returns the existing Knowledge language settings, including the default knowledge language and a list of supported Knowledge language information. https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_knowledge_retrieve_language.htm operationId: RetrieveKnowledgeLanguageSettings parameters: - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /apexrest/{urlMapping}: get: tags: - Rest summary: Salesforce Apex Rest description: >- Gets the list of icons and colors used by themes in the Salesforce application. Theme information is provided for objects in your organization that use icons and colors in the Salesforce UI. The If-Modified-Since header can be used with this resource, with a date format of EEE, dd MMM yyyy HH:mm:ss z. When this header is used, if the object metadata has not changed since the provided date, a 304 Not Modified status code is returned, with no response body. https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_themes.htm operationId: ApexREST parameters: - name: urlMapping in: path description: >- Value of `urlMapping` as defined in `@RestResource` annotation in the Apex class. required: true schema: type: string example: https://www.example.com - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data: get: tags: - Versions summary: Salesforce Versions description: >- Lists summary information about each Salesforce version currently available, including the version, label, and a link to each version's root. operationId: Versions parameters: - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value - name: Sforce-Call-Options in: header description: '' required: true schema: type: string examples: - client=postman example: example_value responses: default: description: '' headers: {} content: application/json: schema: type: array items: $ref: '#/components/schemas/Version5' description: '' examples: - - label: Spring '11 url: /services/data/v21.0 version: '21.0' - label: Summer '11 url: /services/data/v22.0 version: '22.0' - label: Winter '12 url: /services/data/v23.0 version: '23.0' - label: Spring '12 url: /services/data/v24.0 version: '24.0' - label: Summer '12 url: /services/data/v25.0 version: '25.0' - label: Winter '13 url: /services/data/v26.0 version: '26.0' - label: Spring '13 url: /services/data/v27.0 version: '27.0' - label: Summer '13 url: /services/data/v28.0 version: '28.0' - label: Winter '14 url: /services/data/v29.0 version: '29.0' - label: Spring '14 url: /services/data/v30.0 version: '30.0' - label: Summer '14 url: /services/data/v31.0 version: '31.0' - label: Winter '15 url: /services/data/v32.0 version: '32.0' - label: Spring '15 url: /services/data/v33.0 version: '33.0' - label: Summer '15 url: /services/data/v34.0 version: '34.0' - label: Winter '16 url: /services/data/v35.0 version: '35.0' - label: Spring '16 url: /services/data/v36.0 version: '36.0' - label: Summer '16 url: /services/data/v37.0 version: '37.0' - label: Winter '17 url: /services/data/v38.0 version: '38.0' - label: Spring '17 url: /services/data/v39.0 version: '39.0' - label: Summer '17 url: /services/data/v40.0 version: '40.0' - label: Winter '18 url: /services/data/v41.0 version: '41.0' - label: Spring ’18 url: /services/data/v42.0 version: '42.0' - label: Summer '18 url: /services/data/v43.0 version: '43.0' - label: Winter '19 url: /services/data/v44.0 version: '44.0' - label: Spring '19 url: /services/data/v45.0 version: '45.0' - label: Summer '19 url: /services/data/v46.0 version: '46.0' - label: Winter '20 url: /services/data/v47.0 version: '47.0' - label: Spring '20 url: /services/data/v48.0 version: '48.0' - label: Summer '20 url: /services/data/v49.0 version: '49.0' - label: Winter '21 url: /services/data/v50.0 version: '50.0' - label: Spring '21 url: /services/data/v51.0 version: '51.0' - label: Summer '21 url: /services/data/v52.0 version: '52.0' - label: Winter '22 url: /services/data/v53.0 version: '53.0' contentMediaType: application/json example: - label: Spring '11 url: /services/data/v21.0 version: '21.0' - label: Summer '11 url: /services/data/v22.0 version: '22.0' - label: Winter '12 url: /services/data/v23.0 version: '23.0' - label: Spring '12 url: /services/data/v24.0 version: '24.0' - label: Summer '12 url: /services/data/v25.0 version: '25.0' - label: Winter '13 url: /services/data/v26.0 version: '26.0' - label: Spring '13 url: /services/data/v27.0 version: '27.0' - label: Summer '13 url: /services/data/v28.0 version: '28.0' - label: Winter '14 url: /services/data/v29.0 version: '29.0' - label: Spring '14 url: /services/data/v30.0 version: '30.0' - label: Summer '14 url: /services/data/v31.0 version: '31.0' - label: Winter '15 url: /services/data/v32.0 version: '32.0' - label: Spring '15 url: /services/data/v33.0 version: '33.0' - label: Summer '15 url: /services/data/v34.0 version: '34.0' - label: Winter '16 url: /services/data/v35.0 version: '35.0' - label: Spring '16 url: /services/data/v36.0 version: '36.0' - label: Summer '16 url: /services/data/v37.0 version: '37.0' - label: Winter '17 url: /services/data/v38.0 version: '38.0' - label: Spring '17 url: /services/data/v39.0 version: '39.0' - label: Summer '17 url: /services/data/v40.0 version: '40.0' - label: Winter '18 url: /services/data/v41.0 version: '41.0' - label: Spring ’18 url: /services/data/v42.0 version: '42.0' - label: Summer '18 url: /services/data/v43.0 version: '43.0' - label: Winter '19 url: /services/data/v44.0 version: '44.0' - label: Spring '19 url: /services/data/v45.0 version: '45.0' - label: Summer '19 url: /services/data/v46.0 version: '46.0' - label: Winter '20 url: /services/data/v47.0 version: '47.0' - label: Spring '20 url: /services/data/v48.0 version: '48.0' - label: Summer '20 url: /services/data/v49.0 version: '49.0' - label: Winter '21 url: /services/data/v50.0 version: '50.0' - label: Spring '21 url: /services/data/v51.0 version: '51.0' - label: Summer '21 url: /services/data/v52.0 version: '52.0' - label: Winter '22 url: /services/data/v53.0 version: '53.0' deprecated: false security: [] servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0: get: tags: - Resources - Versions summary: Salesforce Resources by Version description: >- Lists available resources for the specified API version, including resource name and URI. operationId: ResourcesbyVersion parameters: - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Tue, 26 Sep 2023 13:29:43 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=3/15000 Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/ResourcesbyVersion' - examples: - tooling: /services/data/v58.0/tooling metadata: /services/data/v58.0/metadata eclair: /services/data/v58.0/eclair folders: /services/data/v58.0/folders prechatForms: /services/data/v58.0/prechatForms contact-tracing: /services/data/v58.0/contact-tracing jsonxform: /services/data/v58.0/jsonxform chatter: /services/data/v58.0/chatter payments: /services/data/v58.0/payments tabs: /services/data/v58.0/tabs appMenu: /services/data/v58.0/appMenu quickActions: /services/data/v58.0/quickActions queryAll: /services/data/v58.0/queryAll commerce: /services/data/v58.0/commerce wave: /services/data/v58.0/wave iot: /services/data/v58.0/iot analytics: /services/data/v58.0/analytics search: /services/data/v58.0/search smartdatadiscovery: /services/data/v58.0/smartdatadiscovery identity: >- https://login.salesforce.com/id/00DB0000000DFgjMAG/005B0000003TOI6IAO composite: /services/data/v58.0/composite parameterizedSearch: /services/data/v58.0/parameterizedSearch fingerprint: /services/data/v58.0/fingerprint theme: /services/data/v58.0/theme nouns: /services/data/v58.0/nouns domino: /services/data/v58.0/domino event: /services/data/v58.0/event serviceTemplates: /services/data/v58.0/serviceTemplates recent: /services/data/v58.0/recent connect: /services/data/v58.0/connect licensing: /services/data/v58.0/licensing limits: /services/data/v58.0/limits process: /services/data/v58.0/process dedupe: /services/data/v58.0/dedupe async-queries: /services/data/v58.0/async-queries query: /services/data/v58.0/query jobs: /services/data/v58.0/jobs match: /services/data/v58.0/match localizedvalue: /services/data/v58.0/localizedvalue mobile: /services/data/v58.0/mobile emailConnect: /services/data/v58.0/emailConnect consent: /services/data/v58.0/consent tokenizer: /services/data/v58.0/tokenizer compactLayouts: /services/data/v58.0/compactLayouts knowledgeManagement: /services/data/v58.0/knowledgeManagement sobjects: /services/data/v58.0/sobjects actions: /services/data/v58.0/actions support: /services/data/v58.0/support contentMediaType: application/json;charset=UTF-8 example: tooling: /services/data/v58.0/tooling metadata: /services/data/v58.0/metadata eclair: /services/data/v58.0/eclair folders: /services/data/v58.0/folders prechatForms: /services/data/v58.0/prechatForms contact-tracing: /services/data/v58.0/contact-tracing jsonxform: /services/data/v58.0/jsonxform chatter: /services/data/v58.0/chatter payments: /services/data/v58.0/payments tabs: /services/data/v58.0/tabs appMenu: /services/data/v58.0/appMenu quickActions: /services/data/v58.0/quickActions queryAll: /services/data/v58.0/queryAll commerce: /services/data/v58.0/commerce wave: /services/data/v58.0/wave iot: /services/data/v58.0/iot analytics: /services/data/v58.0/analytics search: /services/data/v58.0/search smartdatadiscovery: /services/data/v58.0/smartdatadiscovery identity: >- https://login.salesforce.com/id/00DB0000000DFgjMAG/005B0000003TOI6IAO composite: /services/data/v58.0/composite parameterizedSearch: /services/data/v58.0/parameterizedSearch fingerprint: /services/data/v58.0/fingerprint theme: /services/data/v58.0/theme nouns: /services/data/v58.0/nouns domino: /services/data/v58.0/domino event: /services/data/v58.0/event serviceTemplates: /services/data/v58.0/serviceTemplates recent: /services/data/v58.0/recent connect: /services/data/v58.0/connect licensing: /services/data/v58.0/licensing limits: /services/data/v58.0/limits process: /services/data/v58.0/process dedupe: /services/data/v58.0/dedupe async-queries: /services/data/v58.0/async-queries query: /services/data/v58.0/query jobs: /services/data/v58.0/jobs match: /services/data/v58.0/match localizedvalue: /services/data/v58.0/localizedvalue mobile: /services/data/v58.0/mobile emailConnect: /services/data/v58.0/emailConnect consent: /services/data/v58.0/consent tokenizer: /services/data/v58.0/tokenizer compactLayouts: /services/data/v58.0/compactLayouts knowledgeManagement: /services/data/v58.0/knowledgeManagement sobjects: /services/data/v58.0/sobjects actions: /services/data/v58.0/actions support: /services/data/v58.0/support deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/limits: get: tags: - Data summary: Salesforce Limits description: >- Lists information about limits in your org. For each limit, this resource returns the maximum allocation and the remaining allocation based on usage. This resource is available in REST API version 29.0 and later for API users with the View Setup and Configuration permission operationId: Limits parameters: [] responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Tue, 26 Sep 2023 13:19:11 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=1/15000 Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/Limits' - examples: - ActiveScratchOrgs: Max: 3 Remaining: 3 AnalyticsExternalDataSizeMB: Max: 40960 Remaining: 40960 ConcurrentAsyncGetReportInstances: Max: 200 Remaining: 200 ConcurrentEinsteinDataInsightsStoryCreation: Max: 5 Remaining: 5 ConcurrentEinsteinDiscoveryStoryCreation: Max: 2 Remaining: 2 ConcurrentSyncReportRuns: Max: 20 Remaining: 20 DailyAnalyticsDataflowJobExecutions: Max: 60 Remaining: 60 DailyAnalyticsUploadedFilesSizeMB: Max: 51200 Remaining: 51200 DailyApiRequests: Max: 15000 Remaining: 14999 DailyAsyncApexExecutions: Max: 250000 Remaining: 250000 DailyAsyncApexTests: Max: 540 Remaining: 540 DailyBulkApiBatches: Max: 15000 Remaining: 15000 DailyBulkV2QueryFileStorageMB: Max: 976562 Remaining: 976562 DailyBulkV2QueryJobs: Max: 10000 Remaining: 10000 DailyDeliveredPlatformEvents: Max: 10000 Remaining: 10000 DailyDurableGenericStreamingApiEvents: Max: 10000 Remaining: 10000 DailyDurableStreamingApiEvents: Max: 10000 Remaining: 10000 DailyEinsteinDataInsightsStoryCreation: Max: 1000 Remaining: 1000 DailyEinsteinDiscoveryOptimizationJobRuns: Max: 25 Remaining: 25 DailyEinsteinDiscoveryPredictAPICalls: Max: 50000 Remaining: 50000 DailyEinsteinDiscoveryPredictionsByCDC: Max: 500000 Remaining: 500000 DailyEinsteinDiscoveryStoryCreation: Max: 100 Remaining: 100 DailyFunctionsApiCallLimit: Max: 50000 Remaining: 50000 DailyGenericStreamingApiEvents: Max: 10000 Remaining: 10000 DailyScratchOrgs: Max: 6 Remaining: 6 DailyStandardVolumePlatformEvents: Max: 10000 Remaining: 10000 DailyStreamingApiEvents: Max: 10000 Remaining: 10000 DailyWorkflowEmails: Max: 405 Remaining: 405 DataStorageMB: Max: 5 Remaining: 5 DurableStreamingApiConcurrentClients: Max: 20 Remaining: 20 FileStorageMB: Max: 20 Remaining: 20 HourlyAsyncReportRuns: Max: 1200 Remaining: 1200 HourlyDashboardRefreshes: Max: 200 Remaining: 200 HourlyDashboardResults: Max: 5000 Remaining: 5000 HourlyDashboardStatuses: Max: 999999999 Remaining: 999999999 HourlyLongTermIdMapping: Max: 100000 Remaining: 100000 HourlyManagedContentPublicRequests: Max: 50000 Remaining: 50000 HourlyODataCallout: Max: 1000 Remaining: 1000 HourlyPublishedPlatformEvents: Max: 50000 Remaining: 50000 HourlyPublishedStandardVolumePlatformEvents: Max: 1000 Remaining: 1000 HourlyShortTermIdMapping: Max: 100000 Remaining: 100000 HourlySyncReportRuns: Max: 500 Remaining: 500 HourlyTimeBasedWorkflow: Max: 50 Remaining: 50 MassEmail: Max: 10 Remaining: 10 MonthlyEinsteinDiscoveryStoryCreation: Max: 500 Remaining: 500 Package2VersionCreates: Max: 6 Remaining: 6 Package2VersionCreatesWithoutValidation: Max: 500 Remaining: 500 PermissionSets: Max: 1500 Remaining: 1498 CreateCustom: Max: 1000 Remaining: 998 PrivateConnectOutboundCalloutHourlyLimitMB: Max: 0 Remaining: 0 PublishCallbackUsageInApex: Max: 5242880 Remaining: 5242880 SingleEmail: Max: 15 Remaining: 15 StreamingApiConcurrentClients: Max: 20 Remaining: 20 contentMediaType: application/json;charset=UTF-8 example: ActiveScratchOrgs: Max: 3 Remaining: 3 AnalyticsExternalDataSizeMB: Max: 40960 Remaining: 40960 ConcurrentAsyncGetReportInstances: Max: 200 Remaining: 200 ConcurrentEinsteinDataInsightsStoryCreation: Max: 5 Remaining: 5 ConcurrentEinsteinDiscoveryStoryCreation: Max: 2 Remaining: 2 ConcurrentSyncReportRuns: Max: 20 Remaining: 20 DailyAnalyticsDataflowJobExecutions: Max: 60 Remaining: 60 DailyAnalyticsUploadedFilesSizeMB: Max: 51200 Remaining: 51200 DailyApiRequests: Max: 15000 Remaining: 14999 DailyAsyncApexExecutions: Max: 250000 Remaining: 250000 DailyAsyncApexTests: Max: 540 Remaining: 540 DailyBulkApiBatches: Max: 15000 Remaining: 15000 DailyBulkV2QueryFileStorageMB: Max: 976562 Remaining: 976562 DailyBulkV2QueryJobs: Max: 10000 Remaining: 10000 DailyDeliveredPlatformEvents: Max: 10000 Remaining: 10000 DailyDurableGenericStreamingApiEvents: Max: 10000 Remaining: 10000 DailyDurableStreamingApiEvents: Max: 10000 Remaining: 10000 DailyEinsteinDataInsightsStoryCreation: Max: 1000 Remaining: 1000 DailyEinsteinDiscoveryOptimizationJobRuns: Max: 25 Remaining: 25 DailyEinsteinDiscoveryPredictAPICalls: Max: 50000 Remaining: 50000 DailyEinsteinDiscoveryPredictionsByCDC: Max: 500000 Remaining: 500000 DailyEinsteinDiscoveryStoryCreation: Max: 100 Remaining: 100 DailyFunctionsApiCallLimit: Max: 50000 Remaining: 50000 DailyGenericStreamingApiEvents: Max: 10000 Remaining: 10000 DailyScratchOrgs: Max: 6 Remaining: 6 DailyStandardVolumePlatformEvents: Max: 10000 Remaining: 10000 DailyStreamingApiEvents: Max: 10000 Remaining: 10000 DailyWorkflowEmails: Max: 405 Remaining: 405 DataStorageMB: Max: 5 Remaining: 5 DurableStreamingApiConcurrentClients: Max: 20 Remaining: 20 FileStorageMB: Max: 20 Remaining: 20 HourlyAsyncReportRuns: Max: 1200 Remaining: 1200 HourlyDashboardRefreshes: Max: 200 Remaining: 200 HourlyDashboardResults: Max: 5000 Remaining: 5000 HourlyDashboardStatuses: Max: 999999999 Remaining: 999999999 HourlyLongTermIdMapping: Max: 100000 Remaining: 100000 HourlyManagedContentPublicRequests: Max: 50000 Remaining: 50000 HourlyODataCallout: Max: 1000 Remaining: 1000 HourlyPublishedPlatformEvents: Max: 50000 Remaining: 50000 HourlyPublishedStandardVolumePlatformEvents: Max: 1000 Remaining: 1000 HourlyShortTermIdMapping: Max: 100000 Remaining: 100000 HourlySyncReportRuns: Max: 500 Remaining: 500 HourlyTimeBasedWorkflow: Max: 50 Remaining: 50 MassEmail: Max: 10 Remaining: 10 MonthlyEinsteinDiscoveryStoryCreation: Max: 500 Remaining: 500 Package2VersionCreates: Max: 6 Remaining: 6 Package2VersionCreatesWithoutValidation: Max: 500 Remaining: 500 PermissionSets: Max: 1500 Remaining: 1498 CreateCustom: Max: 1000 Remaining: 998 PrivateConnectOutboundCalloutHourlyLimitMB: Max: 0 Remaining: 0 PublishCallbackUsageInApex: Max: 5242880 Remaining: 5242880 SingleEmail: Max: 15 Remaining: 15 StreamingApiConcurrentClients: Max: 20 Remaining: 20 deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/appMenu: get: tags: - Data summary: Salesforce Appmenu description: >- Returns a list of items in either the Salesforce app drop-down menu or the Salesforce for Android, iOS, and mobile web navigation menu. operationId: AppMenu parameters: - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Tue, 26 Sep 2023 13:30:07 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=4/15000 Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/AppMenu' - examples: - AppSwitcher: /services/data/v58.0/appMenu/AppSwitcher Salesforce1: /services/data/v58.0/appMenu/Salesforce1 NetworkTabs: /services/data/v58.0/appMenu/NetworkTabs contentMediaType: application/json;charset=UTF-8 example: AppSwitcher: /services/data/v58.0/appMenu/AppSwitcher Salesforce1: /services/data/v58.0/appMenu/Salesforce1 NetworkTabs: /services/data/v58.0/appMenu/NetworkTabs deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/consent/action/action: get: tags: - Consent summary: Salesforce Consent description: >- Your users can store consent preferences in different locations and possibly inconsistently. You can locate your customers’ preferences for consent across multiple records when using API version 44.0 and later. Tracking consent preferences helps you and your users respect the most restrictive requests. Consent API aggregates consent settings across the Contact, Contact Point Type Consent, Data Use Purpose, Individual, Lead, Person Account, and User objects when the records have a lookup relationship. The Consent API can't locate records in which the email address field is protected by Platform Encryption. The API returns consent details based on a single action, like email or track, or—starting with API version 45.0—the multiaction endpoint allows you to request multiple actions in a single API call. operationId: Consent parameters: - name: actions in: query description: '' required: true style: form explode: true schema: type: string example: example_value - name: ids in: query description: '' required: true style: form explode: true schema: type: string example: example_value - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/sobjects/OpportunityLineItem/{OPPORTUNITY_LINE_ITEM_ID}/OpportunityLineItemSchedules: get: tags: - Product - Schedules summary: Salesforce Product Schedules description: >- Work with revenue and quantity schedules for opportunity products. Establish or reestablish a product schedule with multiple installments for an opportunity product. Delete all installments in a schedule. This resource is available in REST API version 43.0 and later. In API version 46.0 and later, established and re-established schedules support custom fields, validation rules, and Apex triggers. Deleting all schedules now also fires delete triggers. https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_opportunitylineitemschedules.htm operationId: ProductSchedules parameters: - name: OPPORTUNITY_LINE_ITEM_ID in: path description: '' required: true schema: type: string example: '500123' - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/queryAll: get: tags: - Data summary: Salesforce Queryall description: >- Executes the specified SOQL query. Unlike the Query resource, QueryAll will return records that have been deleted because of a merge or delete. QueryAll will also return information about archived Task and Event records. QueryAll is available in API version 29.0 and later. If the query results are too large, the response contains the first batch of results and a query identifier in the nextRecordsUrl field of the response. The identifier can be used in an additional request to retrieve the next batch. Note that even though nextRecordsUrl has query in the URL, it will still provide remaining results from the initial QueryAll request. The remaining results will include deleted records that matched the initial query. https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_queryall.htm operationId: QueryAll parameters: - name: q in: query description: '' required: true style: form explode: true schema: type: string examples: - SELECT+name+from+Account example: example_value - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 27 Sep 2023 15:27:21 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=2/15000 Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/QueryAll' - examples: - totalSize: 12 done: true records: - attributes: type: Account url: >- /services/data/v58.0/sobjects/Account/001B000000UnQ2vIAF Name: Edge Communications - attributes: type: Account url: >- /services/data/v58.0/sobjects/Account/001B000000UnQ2wIAF Name: Burlington Textiles Corp of America - attributes: type: Account url: >- /services/data/v58.0/sobjects/Account/001B000000UnQ2xIAF Name: Pyramid Construction Inc. - attributes: type: Account url: >- /services/data/v58.0/sobjects/Account/001B000000UnQ2yIAF Name: Dickenson plc - attributes: type: Account url: >- /services/data/v58.0/sobjects/Account/001B000000UnQ2zIAF Name: Grand Hotels & Resorts Ltd - attributes: type: Account url: >- /services/data/v58.0/sobjects/Account/001B000000UnQ30IAF Name: United Oil & Gas Corp. - attributes: type: Account url: >- /services/data/v58.0/sobjects/Account/001B000000UnQ31IAF Name: Express Logistics and Transport - attributes: type: Account url: >- /services/data/v58.0/sobjects/Account/001B000000UnQ32IAF Name: University of Arizona - attributes: type: Account url: >- /services/data/v58.0/sobjects/Account/001B000000UnQ33IAF Name: United Oil & Gas, UK - attributes: type: Account url: >- /services/data/v58.0/sobjects/Account/001B000000UnQ34IAF Name: United Oil & Gas, Singapore - attributes: type: Account url: >- /services/data/v58.0/sobjects/Account/001B000000UnQ35IAF Name: GenePoint - attributes: type: Account url: >- /services/data/v58.0/sobjects/Account/001B000000UnQ36IAF Name: sForce contentMediaType: application/json;charset=UTF-8 example: totalSize: 12 done: true records: - attributes: type: Account url: /services/data/v58.0/sobjects/Account/001B000000UnQ2vIAF Name: Edge Communications - attributes: type: Account url: /services/data/v58.0/sobjects/Account/001B000000UnQ2wIAF Name: Burlington Textiles Corp of America - attributes: type: Account url: /services/data/v58.0/sobjects/Account/001B000000UnQ2xIAF Name: Pyramid Construction Inc. - attributes: type: Account url: /services/data/v58.0/sobjects/Account/001B000000UnQ2yIAF Name: Dickenson plc - attributes: type: Account url: /services/data/v58.0/sobjects/Account/001B000000UnQ2zIAF Name: Grand Hotels & Resorts Ltd - attributes: type: Account url: /services/data/v58.0/sobjects/Account/001B000000UnQ30IAF Name: United Oil & Gas Corp. - attributes: type: Account url: /services/data/v58.0/sobjects/Account/001B000000UnQ31IAF Name: Express Logistics and Transport - attributes: type: Account url: /services/data/v58.0/sobjects/Account/001B000000UnQ32IAF Name: University of Arizona - attributes: type: Account url: /services/data/v58.0/sobjects/Account/001B000000UnQ33IAF Name: United Oil & Gas, UK - attributes: type: Account url: /services/data/v58.0/sobjects/Account/001B000000UnQ34IAF Name: United Oil & Gas, Singapore - attributes: type: Account url: /services/data/v58.0/sobjects/Account/001B000000UnQ35IAF Name: GenePoint - attributes: type: Account url: /services/data/v58.0/sobjects/Account/001B000000UnQ36IAF Name: sForce deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/limits/recordCount: get: tags: - Count - Record summary: Salesforce Record Count description: >- Lists information about object record counts in your organization. This resource is available in REST API version 40.0 and later for API users with the “View Setup and Configuration” permission. The returned record count is approximate, and does not include the following types of records: Deleted records in the recycle bin. Archived records. https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_record_count.htm operationId: RecordCount parameters: - name: sObjects in: query description: >- A comma-delimited list of object names. If a listed object is not found in the org, it is ignored and not returned in the response. This parameter is optional. If this parameter is not provided, the resource returns record counts for all objects in the org. required: true style: form explode: true schema: type: string examples: - Account,Contact,Lead example: example_value - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 27 Sep 2023 15:28:16 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=3/15000 Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/RecordCount' - examples: - sObjects: - count: 12 name: Account - count: 20 name: Contact - count: 22 name: Lead contentMediaType: application/json;charset=UTF-8 example: sObjects: - count: 12 name: Account - count: 20 name: Contact - count: 22 name: Lead deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/tabs: get: tags: - Tabs summary: Salesforce Tabs description: >- f a survey field can be translated or is already translated into a particular language, you can add or change the translated value of the survey field. https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/request_survey_translate_add_change.htm operationId: Tabs parameters: - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 27 Sep 2023 15:29:05 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=6/15000 Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: type: array items: $ref: '#/components/schemas/Tab' description: '' examples: - - colors: - color: '5867E8' context: primary theme: theme4 - color: 236FBD context: primary theme: theme3 custom: false iconUrl: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/accounts32.png icons: - contentType: image/png height: 32 theme: theme3 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/accounts32.png width: 32 - contentType: image/png height: 16 theme: theme3 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/accounts16.png width: 16 - contentType: image/svg+xml height: 0 theme: theme4 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account.svg width: 0 - contentType: image/png height: 60 theme: theme4 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_60.png width: 60 - contentType: image/png height: 120 theme: theme4 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_120.png width: 120 label: Accounts miniIconUrl: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/accounts16.png name: standard-Account sobjectName: Account url: https://nto-df17-demo-dev-ed.my.salesforce.com/001/o - colors: - color: '056764' context: primary theme: theme4 - color: '056764' context: primary theme: theme3 custom: false iconUrl: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/wrench32.png icons: - contentType: image/png height: 32 theme: theme3 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/wrench32.png width: 32 - contentType: image/png height: 16 theme: theme3 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/wrench16.png width: 16 label: Active Scratch Orgs miniIconUrl: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/wrench16.png name: standard-ActiveScratchOrg sobjectName: ActiveScratchOrg url: https://nto-df17-demo-dev-ed.my.salesforce.com/2AS/o - colors: - color: 06A59A context: primary theme: theme4 - color: A55647 context: primary theme: theme3 custom: false iconUrl: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/reports32.png icons: - contentType: image/png height: 32 theme: theme3 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/reports32.png width: 32 - contentType: image/png height: 16 theme: theme3 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/reports16.png width: 16 - contentType: image/svg+xml height: 0 theme: theme4 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/t4v35/standard/report.svg width: 0 - contentType: image/png height: 60 theme: theme4 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/t4v35/standard/report_60.png width: 60 - contentType: image/png height: 120 theme: theme4 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/t4v35/standard/report_120.png width: 120 label: Reports miniIconUrl: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/reports16.png name: standard-report sobjectName: Report url: https://nto-df17-demo-dev-ed.my.salesforce.com/00O/o contentMediaType: application/json;charset=UTF-8 example: - colors: - color: '5867E8' context: primary theme: theme4 - color: 236FBD context: primary theme: theme3 custom: false iconUrl: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/accounts32.png icons: - contentType: image/png height: 32 theme: theme3 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/accounts32.png width: 32 - contentType: image/png height: 16 theme: theme3 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/accounts16.png width: 16 - contentType: image/svg+xml height: 0 theme: theme4 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account.svg width: 0 - contentType: image/png height: 60 theme: theme4 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_60.png width: 60 - contentType: image/png height: 120 theme: theme4 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_120.png width: 120 label: Accounts miniIconUrl: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/accounts16.png name: standard-Account sobjectName: Account url: https://nto-df17-demo-dev-ed.my.salesforce.com/001/o - colors: - color: '056764' context: primary theme: theme4 - color: '056764' context: primary theme: theme3 custom: false iconUrl: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/wrench32.png icons: - contentType: image/png height: 32 theme: theme3 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/wrench32.png width: 32 - contentType: image/png height: 16 theme: theme3 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/wrench16.png width: 16 label: Active Scratch Orgs miniIconUrl: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/wrench16.png name: standard-ActiveScratchOrg sobjectName: ActiveScratchOrg url: https://nto-df17-demo-dev-ed.my.salesforce.com/2AS/o - colors: - color: 06A59A context: primary theme: theme4 - color: A55647 context: primary theme: theme3 custom: false iconUrl: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/reports32.png icons: - contentType: image/png height: 32 theme: theme3 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/reports32.png width: 32 - contentType: image/png height: 16 theme: theme3 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/reports16.png width: 16 - contentType: image/svg+xml height: 0 theme: theme4 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/t4v35/standard/report.svg width: 0 - contentType: image/png height: 60 theme: theme4 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/t4v35/standard/report_60.png width: 60 - contentType: image/png height: 120 theme: theme4 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/t4v35/standard/report_120.png width: 120 label: Reports miniIconUrl: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/reports16.png name: standard-report sobjectName: Report url: https://nto-df17-demo-dev-ed.my.salesforce.com/00O/o deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/theme: get: tags: - Themes summary: Salesforce Themes description: >- Gets the list of icons and colors used by themes in the Salesforce application. Theme information is provided for objects in your organization that use icons and colors in the Salesforce UI. The If-Modified-Since header can be used with this resource, with a date format of EEE, dd MMM yyyy HH:mm:ss z. When this header is used, if the object metadata has not changed since the provided date, a 304 Not Modified status code is returned, with no response body. https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_themes.htm operationId: Themes parameters: - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 27 Sep 2023 15:30:15 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=8/15000 ETag: content: text/plain: schema: type: string contentMediaType: text/plain example: '"81846348--gzip"' Last-Modified: content: text/plain: schema: type: string contentMediaType: text/plain example: Tue, 19 Sep 2023 22:01:04 GMT Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/Themes' - examples: - themeItems: - colors: - color: '5867E8' context: primary theme: theme4 - color: 236FBD context: primary theme: theme3 icons: - contentType: image/png height: 32 theme: theme3 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/accounts32.png width: 32 - contentType: image/png height: 16 theme: theme3 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/accounts16.png width: 16 - contentType: image/svg+xml height: 0 theme: theme4 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account.svg width: 0 - contentType: image/png height: 60 theme: theme4 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_60.png width: 60 - contentType: image/png height: 120 theme: theme4 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_120.png width: 120 name: Account - colors: - color: '5867E8' context: primary theme: theme4 - color: '5867E8' context: primary theme: theme3 icons: - contentType: image/png height: 32 theme: theme3 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/account_brand32.png width: 32 - contentType: image/png height: 16 theme: theme3 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/account_brand16.png width: 16 - contentType: image/svg+xml height: 0 theme: theme4 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_brand.svg width: 0 - contentType: image/png height: 60 theme: theme4 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_brand_60.png width: 60 - contentType: image/png height: 120 theme: theme4 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/t4v35/standard/brand_120.png width: 120 name: AccountBrand contentMediaType: application/json;charset=UTF-8 example: themeItems: - colors: - color: '5867E8' context: primary theme: theme4 - color: 236FBD context: primary theme: theme3 icons: - contentType: image/png height: 32 theme: theme3 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/accounts32.png width: 32 - contentType: image/png height: 16 theme: theme3 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/accounts16.png width: 16 - contentType: image/svg+xml height: 0 theme: theme4 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account.svg width: 0 - contentType: image/png height: 60 theme: theme4 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_60.png width: 60 - contentType: image/png height: 120 theme: theme4 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_120.png width: 120 name: Account - colors: - color: '5867E8' context: primary theme: theme4 - color: '5867E8' context: primary theme: theme3 icons: - contentType: image/png height: 32 theme: theme3 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/account_brand32.png width: 32 - contentType: image/png height: 16 theme: theme3 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/account_brand16.png width: 16 - contentType: image/svg+xml height: 0 theme: theme4 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_brand.svg width: 0 - contentType: image/png height: 60 theme: theme4 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_brand_60.png width: 60 - contentType: image/png height: 120 theme: theme4 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/t4v35/standard/brand_120.png width: 120 name: AccountBrand deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /services/Soap/c/64.0: post: tags: - Soap - Undelete summary: Salesforce Soap Undelete description: Undeletes records from the Recycle Bin. operationId: SOAPundelete parameters: - name: Content-Type in: header description: '' required: true schema: const: text/xml; charset=UTF-8 type: string examples: - text/xml; charset=UTF-8 example: example_value - name: Accept in: header description: '' required: true schema: type: string examples: - text/xml example: example_value - name: SOAPAction in: header description: '' required: true schema: type: string examples: - undelete example: example_value requestBody: description: '' content: application/xml: schema: allOf: - $ref: '#/components/schemas/Envelope7' - xml: name: Envelope attribute: false wrapped: false examples: - |- contentMediaType: application/xml example: |- required: true responses: '200': description: '' headers: {} deprecated: false servers: - url: https://login.salesforce.com variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /oauth2/userinfo: get: tags: - Info - Users summary: Salesforce User Info operationId: GetUserInfo1 parameters: - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/commerce/payments/payment-methods: post: tags: - Create - Method - Payments summary: Salesforce Create Payment Method operationId: CreatePaymentMethod parameters: [] requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/CreatePaymentMethodRequest' - examples: - paymentGatewayId: '{{defaultPaymentGatewayId}}' cardPaymentMethod: cardHolderName: '{{_userFullName}}' expiryMonth: '11' expiryYear: '2222' cardNumber: '4111111111111111' cvv: '111' cardCategory: CreditCard cardType: VISA startYear: '2013' startMonth: '7' nickName: Default Payment Method accountId: '{{defaultAccountId}}' phone: '4155551212' email: '{{_userEmail}}' additionalData: key1: value1 key2: value2 contentMediaType: application/json example: paymentGatewayId: '{{defaultPaymentGatewayId}}' cardPaymentMethod: cardHolderName: '{{_userFullName}}' expiryMonth: '11' expiryYear: '2222' cardNumber: '4111111111111111' cvv: '111' cardCategory: CreditCard cardType: VISA startYear: '2013' startMonth: '7' nickName: Default Payment Method accountId: '{{defaultAccountId}}' phone: '4155551212' email: '{{_userEmail}}' additionalData: key1: value1 key2: value2 required: true responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/commerce/catalog-products/actions/get-products: post: tags: - Bundles - Information - Product - Requests summary: Salesforce Request Product Information (no Bundles) description: >- Request information for two products that aren't bundles. For the first product, request only the information about the specified product selling model. For the second product, request information about all related product selling models. See [Request Product Information](https://desktop.postman.com/?desktopVersion=10.13.6&webVersion=10.13.7-ui-230522-1730&userId=10709048&teamId=0). operationId: RequestProductInformation(NoBundles) parameters: [] requestBody: description: '' content: application/json: schema: allOf: - $ref: >- #/components/schemas/RequestProductInformationNoBundlesRequest - examples: - productContexts: - product2Id: '{{ClassTrainingProduct}}' productSellingModelId: '{{OneTimePSM}}' - product2Id: '{{VirtualRouterProduct}}' fields: - id - name - IsActive - ProductCode retrievalType: ExcludeChildComponents contentMediaType: application/json example: productContexts: - product2Id: '{{ClassTrainingProduct}}' productSellingModelId: '{{OneTimePSM}}' - product2Id: '{{VirtualRouterProduct}}' fields: - id - name - IsActive - ProductCode retrievalType: ExcludeChildComponents required: true responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/commerce/pricing/salestransaction/actions/calculate-price: post: tags: - Calculate - Prices - Sale summary: Salesforce Calculate Price (new Sale) description: >- Calculate the price of a new sale that contains two order items: a term-defined subscription order for a bronze-level SLA, and an evergreen subscription order for a virtual router. The payload for the term-defined order contains both a start date and an end date. Instead of an end date, you can also include a start date and a subscription term. See [Calculate Price](https://developer.salesforce.com/docs/revenue/subscription-management/references/prices?meta=Summary). operationId: CalculatePrice(NewSale) parameters: [] requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/CalculatePriceNewSaleRequest' - examples: - listPricebookId: '{{standardPricebook}}' pricingFlow: GET_PRICE_USING_CONTEXT graph: graphId: '1' records: - referenceId: ref_sales_txn record: attributes: type: SalesTransactionShape CurrencyIsoCode: USD - referenceId: Item_1_Evergreen record: attributes: type: SalesTransactionItemShape SalesTransactionShapeId: '@{ref_sales_txn.Id}' StartDate: '2023-01-01T00:00:00.000Z' ProductId: '{{SLA_BronzeProduct}}' ProductSellingModelId: '{{EvergreenMonthlyPSM}}' Quantity: 3 PricingTransactionType: NewSale CurrencyIsoCode: USD - referenceId: Item_2_Termed record: attributes: type: SalesTransactionItemShape SalesTransactionShapeId: '@{ref_sales_txn.Id}' StartDate: '2023-01-01T00:00:00.000Z' EndDate: '2023-12-31T00:00:00.000Z' ProductId: '{{VirtualRouterProduct}}' ProductSellingModelId: '{{TermMonthlyPSM}}' Quantity: 100 PricingTransactionType: NewSale CurrencyIsoCode: USD contentMediaType: application/json example: listPricebookId: '{{standardPricebook}}' pricingFlow: GET_PRICE_USING_CONTEXT graph: graphId: '1' records: - referenceId: ref_sales_txn record: attributes: type: SalesTransactionShape CurrencyIsoCode: USD - referenceId: Item_1_Evergreen record: attributes: type: SalesTransactionItemShape SalesTransactionShapeId: '@{ref_sales_txn.Id}' StartDate: '2023-01-01T00:00:00.000Z' ProductId: '{{SLA_BronzeProduct}}' ProductSellingModelId: '{{EvergreenMonthlyPSM}}' Quantity: 3 PricingTransactionType: NewSale CurrencyIsoCode: USD - referenceId: Item_2_Termed record: attributes: type: SalesTransactionItemShape SalesTransactionShapeId: '@{ref_sales_txn.Id}' StartDate: '2023-01-01T00:00:00.000Z' EndDate: '2023-12-31T00:00:00.000Z' ProductId: '{{VirtualRouterProduct}}' ProductSellingModelId: '{{TermMonthlyPSM}}' Quantity: 100 PricingTransactionType: NewSale CurrencyIsoCode: USD required: true responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/commerce/quotes/actions/place: post: tags: - Create - Quote - Update summary: Salesforce Create or Update Quote description: >- This example creates a quote for the following products. - 5 Virtual Routers sold on a 1-year termed subscription at $35/item - 1 Bronze Service Level Agreement sold on an evergreen subscription at $10/month See [place quote](https://developer.salesforce.com/docs/revenue/subscription-management/references/quotes?meta=Create+or+update+a+quote+with+place+quote). operationId: CreateorUpdateQuote parameters: [] requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/CreateorUpdateQuoteRequest' - examples: - pricingPref: skip graph: graphId: refQuoteGraph records: - referenceId: refQuote record: attributes: type: Quote method: POST Name: Quote_{{$randomCompanyName}} Pricebook2Id: '{{standardPricebook}}' - referenceId: refQuoteLineItem1 record: attributes: type: QuoteLineItem method: POST QuoteId: '@{refQuote.id}' PricebookEntryId: '{{VirtualRouterTermedPBE}}' Product2Id: '{{VirtualRouterProduct}}' Quantity: 5 UnitPrice: 35 PeriodBoundary: Anniversary BillingFrequency: Monthly StartDate: '2023-01-01T00:00:00.000Z' EndDate: '2024-01-01T00:00:00.000Z' - referenceId: refQuoteLineItem2 record: attributes: type: QuoteLineItem method: POST QuoteId: '@{refQuote.id}' PricebookEntryId: '{{SLABronzeEvergrnMonthPBE}}' Product2Id: '{{SLA_BronzeProduct}}' Quantity: 1 UnitPrice: 10 PeriodBoundary: DayOfPeriod PeriodBoundaryDay: 4 BillingFrequency: Monthly StartDate: '2023-01-01T00:00:00.000Z' contentMediaType: application/json example: pricingPref: skip graph: graphId: refQuoteGraph records: - referenceId: refQuote record: attributes: type: Quote method: POST Name: Quote_{{$randomCompanyName}} Pricebook2Id: '{{standardPricebook}}' - referenceId: refQuoteLineItem1 record: attributes: type: QuoteLineItem method: POST QuoteId: '@{refQuote.id}' PricebookEntryId: '{{VirtualRouterTermedPBE}}' Product2Id: '{{VirtualRouterProduct}}' Quantity: 5 UnitPrice: 35 PeriodBoundary: Anniversary BillingFrequency: Monthly StartDate: '2023-01-01T00:00:00.000Z' EndDate: '2024-01-01T00:00:00.000Z' - referenceId: refQuoteLineItem2 record: attributes: type: QuoteLineItem method: POST QuoteId: '@{refQuote.id}' PricebookEntryId: '{{SLABronzeEvergrnMonthPBE}}' Product2Id: '{{SLA_BronzeProduct}}' Quantity: 1 UnitPrice: 10 PeriodBoundary: DayOfPeriod PeriodBoundaryDay: 4 BillingFrequency: Monthly StartDate: '2023-01-01T00:00:00.000Z' required: true responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/actions/standard/createOrderFromQuote: post: tags: - Create - Order - Quote summary: Salesforce Create Order From Quote operationId: CreateOrderFromQuote parameters: [] requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/CreateOrderFromQuoteRequest' - examples: - inputs: - quoteRecordId: '{{currentQuote}}' contentMediaType: application/json example: inputs: - quoteRecordId: '{{currentQuote}}' required: true responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/actions/standard/createOrUpdateAssetFromOrder: post: tags: - Data summary: Salesforce Createassetfromorder operationId: CreateAssetFromOrder parameters: [] requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/CreateAssetFromOrderRequest' - examples: - inputs: - orderId: '{{currentOrder}}' contentMediaType: application/json example: inputs: - orderId: '{{currentOrder}}' required: true responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/asset-management/assets/collection/actions/initiate-cancellation: post: tags: - Initiate summary: Salesforce Initiate Cancellation operationId: InitiateCancellation parameters: [] requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/InitiateCancellationRequest' - examples: - assetIds: assetIdArray: - '{{assetID}}' cancellationDate: '2023-08-21T00:00:00.000Z' cancellationOutputType: order contentMediaType: application/json example: assetIds: assetIdArray: - '{{assetID}}' cancellationDate: '2023-08-21T00:00:00.000Z' cancellationOutputType: order required: true responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/asset-management/assets/collection/actions/initiate-renewal: post: tags: - Initiate summary: Salesforce Initiate Renewal operationId: InitiateRenewal parameters: [] requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/InitiateRenewalRequest' - examples: - assetIds: assetIdArray: - '{{assetID}}' contentMediaType: application/json example: assetIds: assetIdArray: - '{{assetID}}' required: true responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/asset-management/assets/collection/actions/initiate-amend-quantity: post: tags: - Amend - Initiate - Quantity summary: Salesforce Initiate Amend Quantity operationId: InitiateAmendQuantity parameters: [] requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/InitiateAmendQuantityRequest' - examples: - assetIds: assetIdArray: - '{{assetID}}' startDate: '2023-08-18T00:00:00.000Z' quantityChange: 5 amendmentOutputType: order contentMediaType: application/json example: assetIds: assetIdArray: - '{{assetID}}' startDate: '2023-08-18T00:00:00.000Z' quantityChange: 5 amendmentOutputType: order required: true responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/tooling/sobjects/SandboxInfo: post: tags: - Sandbox summary: Salesforce Create/clone Sandbox description: >- Creates or clones a sandbox. If you wish to clone, fill the SourceId body field with the org Id of the source sandbox. operationId: Create/CloneSandbox parameters: [] requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/CreateCloneSandboxRequest' - examples: - SandboxName: devSandbox LicenseType: DEVELOPER TemplateId: HistoryDays: 0 CopyChatter: false AutoActivate: false ApexClassId: Description: My new fresh sandbox SourceId: contentMediaType: application/json example: SandboxName: devSandbox LicenseType: DEVELOPER TemplateId: HistoryDays: 0 CopyChatter: false AutoActivate: false ApexClassId: Description: My new fresh sandbox SourceId: required: true responses: '201': description: Created headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 11 Dec 2023 10:44:57 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=312/15000 Location: content: text/plain: schema: type: string contentMediaType: text/plain example: >- /services/data/v59.0/tooling/sobjects/SandboxInfo/0GQ4H000000CxSzWAK Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/CreateSandbox' - examples: - id: 0GQ4H000000CxSzWAK success: true errors: [] warnings: [] infos: [] contentMediaType: application/json;charset=UTF-8 example: id: 0GQ4H000000CxSzWAK success: true errors: [] warnings: [] infos: [] deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/tooling/sobjects/SandboxInfo/{SANDBOX_INFO_ID}: get: tags: - Get - Sandbox summary: Salesforce Get Sandbox description: Retrieves a sandbox record. operationId: GetSandbox parameters: - name: SANDBOX_INFO_ID in: path description: '' required: true schema: type: string example: '500123' responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 11 Dec 2023 10:45:48 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=316/15000 Last-Modified: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 11 Dec 2023 10:44:58 GMT Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/GetSandbox' - examples: - attributes: type: SandboxInfo url: >- /services/data/v59.0/tooling/sobjects/SandboxInfo/0GQ4H000000CxSzWAK Id: 0GQ4H000000CxSzWAK IsDeleted: false CreatedDate: 2023-12-11T10:44:58.000+0000 CreatedById: 00558000000yFyDAAU LastModifiedDate: 2023-12-11T10:44:58.000+0000 LastModifiedById: 00558000000yFyDAAU SystemModstamp: 2023-12-11T10:44:58.000+0000 SandboxName: devSandbox LicenseType: DEVELOPER TemplateId: HistoryDays: 0 CopyChatter: false AutoActivate: false ApexClassId: Description: My new fresh sandbox SourceId: contentMediaType: application/json;charset=UTF-8 example: attributes: type: SandboxInfo url: >- /services/data/v59.0/tooling/sobjects/SandboxInfo/0GQ4H000000CxSzWAK Id: 0GQ4H000000CxSzWAK IsDeleted: false CreatedDate: 2023-12-11T10:44:58.000+0000 CreatedById: 00558000000yFyDAAU LastModifiedDate: 2023-12-11T10:44:58.000+0000 LastModifiedById: 00558000000yFyDAAU SystemModstamp: 2023-12-11T10:44:58.000+0000 SandboxName: devSandbox LicenseType: DEVELOPER TemplateId: HistoryDays: 0 CopyChatter: false AutoActivate: false ApexClassId: Description: My new fresh sandbox SourceId: deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK patch: tags: - Refresh - Sandbox summary: Salesforce Refresh Sandbox description: Refreshes a sandbox. operationId: RefreshSandbox parameters: - name: SANDBOX_INFO_ID in: path description: '' required: true schema: type: string example: '500123' requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/RefreshSandboxRequest' - examples: - LicenseType: DEVELOPER AutoActivate: true contentMediaType: application/json example: LicenseType: DEVELOPER AutoActivate: true required: true responses: '204': description: No Content headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 13 Dec 2023 12:33:55 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff Content-Security-Policy: content: text/plain: schema: type: string contentMediaType: text/plain example: upgrade-insecure-requests X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=2/15000 content: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK delete: tags: - Deletes - Sandbox summary: Salesforce Delete Sandbox description: Deletes a sandbox. operationId: DeleteSandbox parameters: - name: SANDBOX_INFO_ID in: path description: '' required: true schema: type: string example: '500123' responses: '204': description: No Content headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Fri, 15 Dec 2023 13:34:29 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff Content-Security-Policy: content: text/plain: schema: type: string contentMediaType: text/plain example: upgrade-insecure-requests X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=2/15000 content: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/tooling/completions: get: tags: - Completion summary: Salesforce Tooling Completion description: >- Retrieves available code completions of the referenced type for Apex system method symbols (type=apex). Available from API version 28.0 or later. operationId: ToolingCompletion parameters: - name: type in: query description: apex or visualforce required: true style: form explode: true schema: type: string example: example_value - name: Accept in: header description: '' required: true schema: type: string examples: - application/json example: example_value responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/tooling/executeAnonymous: get: tags: - Data summary: Salesforce Tooling Executeanonymous description: >- Executes Apex code anonymously. Available from API version 29.0 or later. operationId: ToolingExecuteAnonymous parameters: - name: anonymousBody in: query description: '' required: true style: form explode: true schema: type: string examples: - System.Debug('awesome'); example: example_value responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 11 Dec 2023 09:21:01 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=10/15000 Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/ToolingExecuteAnonymous' - examples: - line: -1 column: -1 compiled: true success: true compileProblem: exceptionStackTrace: exceptionMessage: contentMediaType: application/json;charset=UTF-8 example: line: -1 column: -1 compiled: true success: true compileProblem: exceptionStackTrace: exceptionMessage: deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/tooling/runTestsAsynchronous: post: tags: - Async - Runs - Tests summary: Salesforce Tooling Run Tests Async description: >- Runs one or more methods within one or more Apex classes, using the asynchronous test execution mechanism. In the request body, you can specify test class names and IDs, suite names and IDs, the maximum number of failed tests to allow, and the test level, as comma-separated lists or as an array. You can also indicate whether to opt out of collecting code coverage information during the test run (available in API version 43.0 and later). operationId: ToolingRunTestsAsync parameters: [] requestBody: description: '' content: application/json: schema: type: string examples: - | { "classNames": "comma-separated list of class names", "classids": "comma-separated list of class IDs", "suiteNames": "comma-separated list of test suite names", "suiteids": "comma-separated list of test suite IDs", "maxFailedTests": "integer value", "testLevel": "TestLevel enum value", "skipCodeCoverage": "boolean value" } or { "tests": [ { "className": "YourClassName", "testMethods": [ "testMethod1", "testMethod2", "testMethod3" ] } ], "maxFailedTests": "integer value", "testLevel": "TestLevel enum value", "skipCodeCoverage": "boolean value" } contentMediaType: application/json example: | { "classNames": "comma-separated list of class names", "classids": "comma-separated list of class IDs", "suiteNames": "comma-separated list of test suite names", "suiteids": "comma-separated list of test suite IDs", "maxFailedTests": "integer value", "testLevel": "TestLevel enum value", "skipCodeCoverage": "boolean value" } or { "tests": [ { "className": "YourClassName", "testMethods": [ "testMethod1", "testMethod2", "testMethod3" ] } ], "maxFailedTests": "integer value", "testLevel": "TestLevel enum value", "skipCodeCoverage": "boolean value" } required: true responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 11 Dec 2023 10:04:34 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=250/15000 Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: type: string examples: - '"7074H0000DCt2IZ"' contentMediaType: application/json;charset=UTF-8 example: '"7074H0000DCt2IZ"' deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/tooling/runTestsSynchronous: post: tags: - Runs - Sync - Tests summary: Salesforce Tooling Run Tests Sync description: >- Runs one or more methods within one or more Apex classes, using the asynchronous test execution mechanism. In the request body, you can specify test class names and IDs, suite names and IDs, the maximum number of failed tests to allow, and the test level, as comma-separated lists or as an array. You can also indicate whether to opt out of collecting code coverage information during the test run (available in API version 43.0 and later). operationId: ToolingRunTestsSync parameters: [] requestBody: description: '' content: application/json: schema: type: string examples: - | [ { "className": "YourClassName", "testMethods": [ "testMethod1", "testMethod2", "testMethod3" ] }, { "maxFailedTests": "2" } ] or { "tests": [ { "className": "YourClassName", "testMethods": [ "testMethod1", "testMethod2", "testMethod3" ] } ], "maxFailedTests": "integer value", "testLevel": "TestLevel enum value", "skipCodeCoverage": "boolean value" } contentMediaType: application/json example: | [ { "className": "YourClassName", "testMethods": [ "testMethod1", "testMethod2", "testMethod3" ] }, { "maxFailedTests": "2" } ] or { "tests": [ { "className": "YourClassName", "testMethods": [ "testMethod1", "testMethod2", "testMethod3" ] } ], "maxFailedTests": "integer value", "testLevel": "TestLevel enum value", "skipCodeCoverage": "boolean value" } required: true responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 11 Dec 2023 09:59:37 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=246/15000 Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/ToolingRunTestsSync' - examples: - apexLogId: 07L4H00000SpGroUAF codeCoverage: - id: 01q4H000000WjD8QAK locationsNotCovered: - {} - {} name: StateTrigger namespace: numLocations: 2 numLocationsNotCovered: 2 type: Trigger - id: 01q58000000RLTyAAO locationsNotCovered: - {} - {} - {} name: RestrictContactByName namespace: numLocations: 3 numLocationsNotCovered: 3 type: Trigger - id: 01q58000000RLBhAAO locationsNotCovered: - {} - {} - {} - {} - {} - {} name: ClosedOpportunityTrigger namespace: numLocations: 6 numLocationsNotCovered: 6 type: Trigger - id: 01p4H000009PEFIQA4 locationsNotCovered: - {} - {} name: PrepareSandbox namespace: numLocations: 22 numLocationsNotCovered: 2 type: Class codeCoverageWarnings: - id: 01q4H000000WjD8QAK message: >- Test coverage of selected Apex Trigger is 0%, at least 1% test coverage is required name: StateTrigger namespace: - id: 01q58000000RLTyAAO message: >- Test coverage of selected Apex Trigger is 0%, at least 1% test coverage is required name: RestrictContactByName namespace: - id: 01q58000000RLBhAAO message: >- Test coverage of selected Apex Trigger is 0%, at least 1% test coverage is required name: ClosedOpportunityTrigger namespace: - id: 01q4H000000WjD8QAK message: >- Average test coverage across all Apex Classes and Triggers is 60%, at least 75% test coverage is required. name: namespace: '' failures: [] flowCoverage: [] flowCoverageWarnings: [] numFailures: 0 numTestsRun: 1 successes: - id: 01p4H00000A0zYxQAJ methodName: runApexClass_should_work name: PrepareSandboxTest namespace: seeAllData: false time: 1088 totalTime: 1261 contentMediaType: application/json;charset=UTF-8 example: apexLogId: 07L4H00000SpGroUAF codeCoverage: - id: 01q4H000000WjD8QAK locationsNotCovered: - {} - {} name: StateTrigger namespace: numLocations: 2 numLocationsNotCovered: 2 type: Trigger - id: 01q58000000RLTyAAO locationsNotCovered: - {} - {} - {} name: RestrictContactByName namespace: numLocations: 3 numLocationsNotCovered: 3 type: Trigger - id: 01q58000000RLBhAAO locationsNotCovered: - {} - {} - {} - {} - {} - {} name: ClosedOpportunityTrigger namespace: numLocations: 6 numLocationsNotCovered: 6 type: Trigger - id: 01p4H000009PEFIQA4 locationsNotCovered: - {} - {} name: PrepareSandbox namespace: numLocations: 22 numLocationsNotCovered: 2 type: Class codeCoverageWarnings: - id: 01q4H000000WjD8QAK message: >- Test coverage of selected Apex Trigger is 0%, at least 1% test coverage is required name: StateTrigger namespace: - id: 01q58000000RLTyAAO message: >- Test coverage of selected Apex Trigger is 0%, at least 1% test coverage is required name: RestrictContactByName namespace: - id: 01q58000000RLBhAAO message: >- Test coverage of selected Apex Trigger is 0%, at least 1% test coverage is required name: ClosedOpportunityTrigger namespace: - id: 01q4H000000WjD8QAK message: >- Average test coverage across all Apex Classes and Triggers is 60%, at least 75% test coverage is required. name: namespace: '' failures: [] flowCoverage: [] flowCoverageWarnings: [] numFailures: 0 numTestsRun: 1 successes: - id: 01p4H00000A0zYxQAJ methodName: runApexClass_should_work name: PrepareSandboxTest namespace: seeAllData: false time: 1088 totalTime: 1261 deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/tooling/search: get: tags: - Search summary: Salesforce Tooling Search description: >- Runs one or more methods within one or more Apex classes, using the asynchronous test execution mechanism. In the request body, you can specify test class names and IDs, suite names and IDs, the maximum number of failed tests to allow, and the test level, as comma-separated lists or as an array. You can also indicate whether to opt out of collecting code coverage information during the test run (available in API version 43.0 and later). operationId: ToolingSearch parameters: - name: q in: query description: SOSL search statement required: true style: form explode: true schema: type: string example: example_value - name: Content-Type in: header description: '' required: true schema: const: application/json type: string examples: - application/json example: example_value responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 11 Dec 2023 10:34:10 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=294/15000 queryId: content: text/plain: schema: type: string contentMediaType: text/plain example: '-mxbcxdoqukvy' Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/ToolingSearch' - examples: - searchRecords: - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqcAAA Name: LightningSelfRegisterController - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqhAAA Name: LightningSelfRegisterControllerTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wq9AAA Name: SiteRegisterControllerTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p4H00000A0zYxQAJ Name: PrepareSandboxTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqTAAQ Name: CommunitiesSelfRegControllerTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p4H000009aIwvQAE Name: MicrobatchSelfRegControllerTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p4H000009PEFIQA4 Name: PrepareSandbox - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqRAAQ Name: CommunitiesLandingControllerTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqFAAQ Name: MyProfilePageControllerTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqDAAQ Name: ForgotPasswordControllerTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wq7AAA Name: SiteLoginControllerTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p4H00000ANdnqQAD Name: AccountTriggerHelperTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqgAAA Name: LightningForgotPasswordControllerTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqfAAA Name: LightningLoginFormControllerTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqeAAA Name: LightningLoginFormController - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqVAAQ Name: CommunitiesSelfRegConfirmControllerTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqPAAQ Name: CommunitiesLoginControllerTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqBAAQ Name: ChangePasswordControllerTest contentMediaType: application/json;charset=UTF-8 example: searchRecords: - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqcAAA Name: LightningSelfRegisterController - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqhAAA Name: LightningSelfRegisterControllerTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wq9AAA Name: SiteRegisterControllerTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p4H00000A0zYxQAJ Name: PrepareSandboxTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqTAAQ Name: CommunitiesSelfRegControllerTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p4H000009aIwvQAE Name: MicrobatchSelfRegControllerTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p4H000009PEFIQA4 Name: PrepareSandbox - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqRAAQ Name: CommunitiesLandingControllerTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqFAAQ Name: MyProfilePageControllerTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqDAAQ Name: ForgotPasswordControllerTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wq7AAA Name: SiteLoginControllerTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p4H00000ANdnqQAD Name: AccountTriggerHelperTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqgAAA Name: LightningForgotPasswordControllerTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqfAAA Name: LightningLoginFormControllerTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqeAAA Name: LightningLoginFormController - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqVAAQ Name: CommunitiesSelfRegConfirmControllerTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqPAAQ Name: CommunitiesLoginControllerTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqBAAQ Name: ChangePasswordControllerTest deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/tooling/sobjects: get: tags: - Describe - Get summary: Salesforce Get Tooling Describe description: Lists the available Tooling API objects and their metadata. operationId: GetToolingDescribe parameters: [] responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 11 Dec 2023 10:35:19 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=298/15000 ETag: content: text/plain: schema: type: string contentMediaType: text/plain example: '"b0436952--gzip"' Last-Modified: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 11 Dec 2023 09:28:13 GMT Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/GetToolingDescribe' - examples: - encoding: UTF-8 maxBatchSize: 200 sobjects: - activateable: false associateEntityType: associateParentEntity: createable: true custom: false customSetting: false deepCloneable: false deletable: true deprecatedAndHidden: false feedEnabled: false hasSubtypes: false isInterface: false isSubtype: false keyPrefix: 0Pp label: AI Application labelPlural: AI Applications layoutable: false mergeable: false mruEnabled: false name: AIApplication queryable: true replicateable: false retrieveable: true searchable: false triggerable: false undeletable: false updateable: true urls: rowTemplate: >- /services/data/v59.0/tooling/sobjects/AIApplication/{ID} describe: >- /services/data/v59.0/tooling/sobjects/AIApplication/describe sobject: >- /services/data/v59.0/tooling/sobjects/AIApplication - activateable: false associateEntityType: associateParentEntity: createable: true custom: false customSetting: false deepCloneable: false deletable: true deprecatedAndHidden: false feedEnabled: false hasSubtypes: false isInterface: false isSubtype: false keyPrefix: 6S9 label: AI Application config labelPlural: AI Application configs layoutable: false mergeable: false mruEnabled: false name: AIApplicationConfig queryable: true replicateable: false retrieveable: true searchable: false triggerable: false undeletable: false updateable: true urls: rowTemplate: >- /services/data/v59.0/tooling/sobjects/AIApplicationConfig/{ID} describe: >- /services/data/v59.0/tooling/sobjects/AIApplicationConfig/describe sobject: >- /services/data/v59.0/tooling/sobjects/AIApplicationConfig - activateable: false associateEntityType: associateParentEntity: createable: true custom: false customSetting: false deepCloneable: false deletable: true deprecatedAndHidden: false feedEnabled: false hasSubtypes: false isInterface: false isSubtype: false keyPrefix: 0HE label: Entity labelPlural: Entity layoutable: false mergeable: false mruEnabled: false name: AIReplyRecommendationsSettings queryable: true replicateable: false retrieveable: true searchable: false triggerable: false undeletable: false updateable: true urls: rowTemplate: >- /services/data/v59.0/tooling/sobjects/AIReplyRecommendationsSettings/{ID} describe: >- /services/data/v59.0/tooling/sobjects/AIReplyRecommendationsSettings/describe sobject: >- /services/data/v59.0/tooling/sobjects/AIReplyRecommendationsSettings - activateable: false associateEntityType: associateParentEntity: createable: false custom: false customSetting: false deepCloneable: false deletable: false deprecatedAndHidden: false feedEnabled: false hasSubtypes: false isInterface: false isSubtype: false keyPrefix: 0Dx label: Access Control Policy labelPlural: Access Control Policies layoutable: false mergeable: false mruEnabled: false name: AccessControlPolicy queryable: true replicateable: false retrieveable: true searchable: false triggerable: true undeletable: false updateable: false urls: rowTemplate: >- /services/data/v59.0/tooling/sobjects/AccessControlPolicy/{ID} describe: >- /services/data/v59.0/tooling/sobjects/AccessControlPolicy/describe sobject: >- /services/data/v59.0/tooling/sobjects/AccessControlPolicy - activateable: false associateEntityType: associateParentEntity: createable: true custom: false customSetting: false deepCloneable: false deletable: true deprecatedAndHidden: false feedEnabled: false hasSubtypes: false isInterface: false isSubtype: false keyPrefix: 0HE label: Entity labelPlural: Entity layoutable: false mergeable: false mruEnabled: false name: AccountIntelligenceSettings queryable: true replicateable: false retrieveable: true searchable: false triggerable: false undeletable: false updateable: true urls: rowTemplate: >- /services/data/v59.0/tooling/sobjects/AccountIntelligenceSettings/{ID} describe: >- /services/data/v59.0/tooling/sobjects/AccountIntelligenceSettings/describe sobject: >- /services/data/v59.0/tooling/sobjects/AccountIntelligenceSettings - activateable: false associateEntityType: associateParentEntity: createable: true custom: false customSetting: false deepCloneable: false deletable: true deprecatedAndHidden: false feedEnabled: false hasSubtypes: false isInterface: false isSubtype: false keyPrefix: 0HE label: Entity labelPlural: Entity layoutable: false mergeable: false mruEnabled: false name: AccountSettings queryable: true replicateable: false retrieveable: true searchable: false triggerable: false undeletable: false updateable: true urls: rowTemplate: >- /services/data/v59.0/tooling/sobjects/AccountSettings/{ID} describe: >- /services/data/v59.0/tooling/sobjects/AccountSettings/describe sobject: >- /services/data/v59.0/tooling/sobjects/AccountSettings - activateable: false associateEntityType: associateParentEntity: createable: true custom: false customSetting: false deepCloneable: false deletable: true deprecatedAndHidden: false feedEnabled: false hasSubtypes: false isInterface: false isSubtype: false keyPrefix: 11i label: ActionLauncherItemDef labelPlural: ActionLauncherItemDefs layoutable: false mergeable: false mruEnabled: false name: ActionLauncherItemDef queryable: true replicateable: false retrieveable: true searchable: false triggerable: false undeletable: false updateable: true urls: rowTemplate: >- /services/data/v59.0/tooling/sobjects/ActionLauncherItemDef/{ID} describe: >- /services/data/v59.0/tooling/sobjects/ActionLauncherItemDef/describe sobject: >- /services/data/v59.0/tooling/sobjects/ActionLauncherItemDef - activateable: false associateEntityType: associateParentEntity: createable: true custom: false customSetting: false deepCloneable: false deletable: true deprecatedAndHidden: false feedEnabled: false hasSubtypes: false isInterface: false isSubtype: false keyPrefix: 0HE label: Entity labelPlural: Entity layoutable: false mergeable: false mruEnabled: false name: ActionsSettings queryable: true replicateable: false retrieveable: true searchable: false triggerable: false undeletable: false updateable: true urls: rowTemplate: >- /services/data/v59.0/tooling/sobjects/ActionsSettings/{ID} describe: >- /services/data/v59.0/tooling/sobjects/ActionsSettings/describe sobject: >- /services/data/v59.0/tooling/sobjects/ActionsSettings - activateable: false associateEntityType: associateParentEntity: createable: true custom: false customSetting: false deepCloneable: false deletable: true deprecatedAndHidden: false feedEnabled: false hasSubtypes: false isInterface: false isSubtype: false keyPrefix: 0HE label: Entity labelPlural: Entity layoutable: false mergeable: false mruEnabled: false name: ActivitiesSettings queryable: true replicateable: false retrieveable: true searchable: false triggerable: false undeletable: false updateable: true urls: rowTemplate: >- /services/data/v59.0/tooling/sobjects/ActivitiesSettings/{ID} describe: >- /services/data/v59.0/tooling/sobjects/ActivitiesSettings/describe sobject: >- /services/data/v59.0/tooling/sobjects/ActivitiesSettings contentMediaType: application/json;charset=UTF-8 example: encoding: UTF-8 maxBatchSize: 200 sobjects: - activateable: false associateEntityType: associateParentEntity: createable: true custom: false customSetting: false deepCloneable: false deletable: true deprecatedAndHidden: false feedEnabled: false hasSubtypes: false isInterface: false isSubtype: false keyPrefix: 0Pp label: AI Application labelPlural: AI Applications layoutable: false mergeable: false mruEnabled: false name: AIApplication queryable: true replicateable: false retrieveable: true searchable: false triggerable: false undeletable: false updateable: true urls: rowTemplate: /services/data/v59.0/tooling/sobjects/AIApplication/{ID} describe: >- /services/data/v59.0/tooling/sobjects/AIApplication/describe sobject: /services/data/v59.0/tooling/sobjects/AIApplication - activateable: false associateEntityType: associateParentEntity: createable: true custom: false customSetting: false deepCloneable: false deletable: true deprecatedAndHidden: false feedEnabled: false hasSubtypes: false isInterface: false isSubtype: false keyPrefix: 6S9 label: AI Application config labelPlural: AI Application configs layoutable: false mergeable: false mruEnabled: false name: AIApplicationConfig queryable: true replicateable: false retrieveable: true searchable: false triggerable: false undeletable: false updateable: true urls: rowTemplate: >- /services/data/v59.0/tooling/sobjects/AIApplicationConfig/{ID} describe: >- /services/data/v59.0/tooling/sobjects/AIApplicationConfig/describe sobject: >- /services/data/v59.0/tooling/sobjects/AIApplicationConfig - activateable: false associateEntityType: associateParentEntity: createable: true custom: false customSetting: false deepCloneable: false deletable: true deprecatedAndHidden: false feedEnabled: false hasSubtypes: false isInterface: false isSubtype: false keyPrefix: 0HE label: Entity labelPlural: Entity layoutable: false mergeable: false mruEnabled: false name: AIReplyRecommendationsSettings queryable: true replicateable: false retrieveable: true searchable: false triggerable: false undeletable: false updateable: true urls: rowTemplate: >- /services/data/v59.0/tooling/sobjects/AIReplyRecommendationsSettings/{ID} describe: >- /services/data/v59.0/tooling/sobjects/AIReplyRecommendationsSettings/describe sobject: >- /services/data/v59.0/tooling/sobjects/AIReplyRecommendationsSettings - activateable: false associateEntityType: associateParentEntity: createable: false custom: false customSetting: false deepCloneable: false deletable: false deprecatedAndHidden: false feedEnabled: false hasSubtypes: false isInterface: false isSubtype: false keyPrefix: 0Dx label: Access Control Policy labelPlural: Access Control Policies layoutable: false mergeable: false mruEnabled: false name: AccessControlPolicy queryable: true replicateable: false retrieveable: true searchable: false triggerable: true undeletable: false updateable: false urls: rowTemplate: >- /services/data/v59.0/tooling/sobjects/AccessControlPolicy/{ID} describe: >- /services/data/v59.0/tooling/sobjects/AccessControlPolicy/describe sobject: >- /services/data/v59.0/tooling/sobjects/AccessControlPolicy - activateable: false associateEntityType: associateParentEntity: createable: true custom: false customSetting: false deepCloneable: false deletable: true deprecatedAndHidden: false feedEnabled: false hasSubtypes: false isInterface: false isSubtype: false keyPrefix: 0HE label: Entity labelPlural: Entity layoutable: false mergeable: false mruEnabled: false name: AccountIntelligenceSettings queryable: true replicateable: false retrieveable: true searchable: false triggerable: false undeletable: false updateable: true urls: rowTemplate: >- /services/data/v59.0/tooling/sobjects/AccountIntelligenceSettings/{ID} describe: >- /services/data/v59.0/tooling/sobjects/AccountIntelligenceSettings/describe sobject: >- /services/data/v59.0/tooling/sobjects/AccountIntelligenceSettings - activateable: false associateEntityType: associateParentEntity: createable: true custom: false customSetting: false deepCloneable: false deletable: true deprecatedAndHidden: false feedEnabled: false hasSubtypes: false isInterface: false isSubtype: false keyPrefix: 0HE label: Entity labelPlural: Entity layoutable: false mergeable: false mruEnabled: false name: AccountSettings queryable: true replicateable: false retrieveable: true searchable: false triggerable: false undeletable: false updateable: true urls: rowTemplate: >- /services/data/v59.0/tooling/sobjects/AccountSettings/{ID} describe: >- /services/data/v59.0/tooling/sobjects/AccountSettings/describe sobject: /services/data/v59.0/tooling/sobjects/AccountSettings - activateable: false associateEntityType: associateParentEntity: createable: true custom: false customSetting: false deepCloneable: false deletable: true deprecatedAndHidden: false feedEnabled: false hasSubtypes: false isInterface: false isSubtype: false keyPrefix: 11i label: ActionLauncherItemDef labelPlural: ActionLauncherItemDefs layoutable: false mergeable: false mruEnabled: false name: ActionLauncherItemDef queryable: true replicateable: false retrieveable: true searchable: false triggerable: false undeletable: false updateable: true urls: rowTemplate: >- /services/data/v59.0/tooling/sobjects/ActionLauncherItemDef/{ID} describe: >- /services/data/v59.0/tooling/sobjects/ActionLauncherItemDef/describe sobject: >- /services/data/v59.0/tooling/sobjects/ActionLauncherItemDef - activateable: false associateEntityType: associateParentEntity: createable: true custom: false customSetting: false deepCloneable: false deletable: true deprecatedAndHidden: false feedEnabled: false hasSubtypes: false isInterface: false isSubtype: false keyPrefix: 0HE label: Entity labelPlural: Entity layoutable: false mergeable: false mruEnabled: false name: ActionsSettings queryable: true replicateable: false retrieveable: true searchable: false triggerable: false undeletable: false updateable: true urls: rowTemplate: >- /services/data/v59.0/tooling/sobjects/ActionsSettings/{ID} describe: >- /services/data/v59.0/tooling/sobjects/ActionsSettings/describe sobject: /services/data/v59.0/tooling/sobjects/ActionsSettings - activateable: false associateEntityType: associateParentEntity: createable: true custom: false customSetting: false deepCloneable: false deletable: true deprecatedAndHidden: false feedEnabled: false hasSubtypes: false isInterface: false isSubtype: false keyPrefix: 0HE label: Entity labelPlural: Entity layoutable: false mergeable: false mruEnabled: false name: ActivitiesSettings queryable: true replicateable: false retrieveable: true searchable: false triggerable: false undeletable: false updateable: true urls: rowTemplate: >- /services/data/v59.0/tooling/sobjects/ActivitiesSettings/{ID} describe: >- /services/data/v59.0/tooling/sobjects/ActivitiesSettings/describe sobject: /services/data/v59.0/tooling/sobjects/ActivitiesSettings deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/tooling/sobjects/{SOBJECT_API_NAME}: get: tags: - Get summary: Salesforce Get Tooling Metadata Sobject operationId: GetToolingMetadataSObject parameters: - name: SOBJECT_API_NAME in: path description: '' required: true schema: type: string example: example_value responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 11 Dec 2023 10:36:20 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=298/15000 Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/GetToolingMetadataSObject' - examples: - objectDescribe: activateable: false associateEntityType: associateParentEntity: createable: true custom: false customSetting: false deepCloneable: false deletable: true deprecatedAndHidden: false feedEnabled: false hasSubtypes: false isInterface: false isSubtype: false keyPrefix: 01p label: Apex Class labelPlural: Apex Classes layoutable: true mergeable: false mruEnabled: true name: ApexClass queryable: true replicateable: true retrieveable: true searchable: true triggerable: false undeletable: false updateable: true urls: compactLayouts: >- /services/data/v59.0/tooling/sobjects/ApexClass/describe/compactLayouts rowTemplate: >- /services/data/v59.0/tooling/sobjects/ApexClass/{ID} describe: >- /services/data/v59.0/tooling/sobjects/ApexClass/describe layouts: >- /services/data/v59.0/tooling/sobjects/ApexClass/describe/layouts sobject: /services/data/v59.0/tooling/sobjects/ApexClass recentItems: [] contentMediaType: application/json;charset=UTF-8 example: objectDescribe: activateable: false associateEntityType: associateParentEntity: createable: true custom: false customSetting: false deepCloneable: false deletable: true deprecatedAndHidden: false feedEnabled: false hasSubtypes: false isInterface: false isSubtype: false keyPrefix: 01p label: Apex Class labelPlural: Apex Classes layoutable: true mergeable: false mruEnabled: true name: ApexClass queryable: true replicateable: true retrieveable: true searchable: true triggerable: false undeletable: false updateable: true urls: compactLayouts: >- /services/data/v59.0/tooling/sobjects/ApexClass/describe/compactLayouts rowTemplate: /services/data/v59.0/tooling/sobjects/ApexClass/{ID} describe: /services/data/v59.0/tooling/sobjects/ApexClass/describe layouts: >- /services/data/v59.0/tooling/sobjects/ApexClass/describe/layouts sobject: /services/data/v59.0/tooling/sobjects/ApexClass recentItems: [] deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK post: tags: - Post summary: Salesforce Post Tooling Sobject operationId: PostToolingSObject parameters: - name: SOBJECT_API_NAME in: path description: '' required: true schema: type: string example: example_value requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/PostToolingSObjectRequest' - examples: - Name: test contentMediaType: application/json example: Name: test required: true responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/tooling/sobjects/{SOBJECT_API_NAME}/describe: get: tags: - Describe - Get summary: Salesforce Get Tooling Describe Sobject operationId: GetToolingDescribeSObject parameters: - name: SOBJECT_API_NAME in: path description: '' required: true schema: type: string example: example_value responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 11 Dec 2023 10:36:38 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=300/15000 ETag: content: text/plain: schema: type: string contentMediaType: text/plain example: '"df3a089a--gzip"' Last-Modified: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 11 Dec 2023 09:11:58 GMT Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: $ref: '#/components/schemas/GetToolingDescribeSObject' examples: Gettoolingdescribesobject200Example: summary: Default GetToolingDescribeSObject 200 response x-microcks-default: true value: actionOverrides: - example_value activateable: true associateEntityType: example_value associateParentEntity: example_value childRelationships: - cascadeDelete: true childSObject: example_value deprecatedAndHidden: true field: example_value junctionIdListNames: {} junctionReferenceTo: {} relationshipName: example_value restrictedDelete: true compactLayoutable: true createable: true custom: true customSetting: true deepCloneable: true defaultImplementation: example_value deletable: true deprecatedAndHidden: true extendedBy: example_value extendsInterfaces: example_value feedEnabled: true fields: - aggregatable: true aiPredictionField: true autoNumber: true byteLength: 10 calculated: true calculatedFormula: example_value cascadeDelete: true caseSensitive: true compoundFieldName: example_value controllerName: example_value createable: true custom: true defaultValue: example_value defaultValueFormula: example_value defaultedOnCreate: true dependentPicklist: true deprecatedAndHidden: true digits: 10 displayLocationInDecimal: true encrypted: true externalId: '500123' extraTypeInfo: example_value filterable: true filteredLookupInfo: example_value formulaTreatNullNumberAsZero: true groupable: true highScaleNumber: true htmlFormatted: true idLookup: true inlineHelpText: example_value label: Example Title length: 10 mask: example_value maskType: example_value name: Example Title nameField: true namePointing: true nillable: true permissionable: true picklistValues: {} polymorphicForeignKey: true precision: 10 queryByDistance: true referenceTargetField: example_value referenceTo: {} relationshipName: example_value relationshipOrder: example_value restrictedDelete: true restrictedPicklist: true scale: 10 searchPrefilterable: true soapType: example_value sortable: true type: example_value unique: true updateable: true writeRequiresMasterRead: true hasSubtypes: true implementedBy: example_value implementsInterfaces: example_value isInterface: true isSubtype: true keyPrefix: example_value label: Example Title labelPlural: example_value layoutable: true listviewable: example_value lookupLayoutable: example_value mergeable: true mruEnabled: true name: Example Title namedLayoutInfos: - example_value networkScopeFieldName: example_value queryable: true recordTypeInfos: - example_value replicateable: true retrieveable: true searchLayoutable: true searchable: true sobjectDescribeOption: example_value supportedScopes: - label: Example Title name: Example Title triggerable: true undeletable: true updateable: true urls: compactLayouts: example_value rowTemplate: example_value uiDetailTemplate: example_value uiEditTemplate: example_value describe: example_value uiNewRecord: example_value layouts: example_value sobject: example_value deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/tooling/sobjects/{SOBJECT_API_NAME}/{RECORD_ID}: get: tags: - Access - Records summary: Salesforce Access Records operationId: AccessRecords parameters: - name: SOBJECT_API_NAME in: path description: '' required: true schema: type: string example: example_value - name: RECORD_ID in: path description: '' required: true schema: type: string example: '500123' responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Mon, 11 Dec 2023 10:38:26 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Sforce-Limit-Info: content: text/plain: schema: type: string contentMediaType: text/plain example: api-usage=308/15000 Last-Modified: content: text/plain: schema: type: string contentMediaType: text/plain example: Sun, 26 Nov 2023 14:10:11 GMT Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/AccessRecords' - examples: - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p4H00000A4kfqQAB Id: 01p4H00000A4kfqQAB NamespacePrefix: smon Name: GenericEventPostMock ApiVersion: 59 Status: Active IsValid: false BodyCrc: -1 Body: > /* This file is generated and isn't the actual source code for this managed global class. This read-only file shows the class's global constructors, methods, variables, and properties. To enable code to compile, all methods return null. */ global class GenericEventPostMock implements System.HttpCalloutMock { global GenericEventPostMock(Integer statusCode) { } global System.HttpResponse respond(System.HttpRequest req) { return null; } } LengthWithoutComments: -1 CreatedDate: 2023-11-20T08:03:40.000+0000 CreatedById: 00558000000yFyDAAU LastModifiedDate: 2023-11-20T08:03:40.000+0000 LastModifiedById: 00558000000yFyDAAU SystemModstamp: 2023-11-26T14:10:11.000+0000 ManageableState: installed SymbolTable: constructors: - annotations: [] location: column: 12 line: 5 modifiers: - global name: GenericEventPostMock parameters: - name: statusCode type: Integer references: [] type: externalReferences: [] id: smon.GenericEventPostMock innerClasses: [] interfaces: - System.HttpCalloutMock key: smon.GenericEventPostMock methods: - annotations: [] location: column: 25 line: 9 modifiers: - global name: respond parameters: - name: req type: System.HttpRequest references: [] returnType: System.HttpResponse type: name: GenericEventPostMock namespace: smon parentClass: '' properties: [] tableDeclaration: annotations: - name: IsTest location: column: 14 line: 2 modifiers: - testMethod - global name: GenericEventPostMock references: [] type: smon.GenericEventPostMock variables: [] Metadata: apiVersion: 59 packageVersions: [] status: Active urls: FullName: smon__GenericEventPostMock contentMediaType: application/json;charset=UTF-8 example: attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p4H00000A4kfqQAB Id: 01p4H00000A4kfqQAB NamespacePrefix: smon Name: GenericEventPostMock ApiVersion: 59 Status: Active IsValid: false BodyCrc: -1 Body: > /* This file is generated and isn't the actual source code for this managed global class. This read-only file shows the class's global constructors, methods, variables, and properties. To enable code to compile, all methods return null. */ global class GenericEventPostMock implements System.HttpCalloutMock { global GenericEventPostMock(Integer statusCode) { } global System.HttpResponse respond(System.HttpRequest req) { return null; } } LengthWithoutComments: -1 CreatedDate: 2023-11-20T08:03:40.000+0000 CreatedById: 00558000000yFyDAAU LastModifiedDate: 2023-11-20T08:03:40.000+0000 LastModifiedById: 00558000000yFyDAAU SystemModstamp: 2023-11-26T14:10:11.000+0000 ManageableState: installed SymbolTable: constructors: - annotations: [] location: column: 12 line: 5 modifiers: - global name: GenericEventPostMock parameters: - name: statusCode type: Integer references: [] type: externalReferences: [] id: smon.GenericEventPostMock innerClasses: [] interfaces: - System.HttpCalloutMock key: smon.GenericEventPostMock methods: - annotations: [] location: column: 25 line: 9 modifiers: - global name: respond parameters: - name: req type: System.HttpRequest references: [] returnType: System.HttpResponse type: name: GenericEventPostMock namespace: smon parentClass: '' properties: [] tableDeclaration: annotations: - name: IsTest location: column: 14 line: 2 modifiers: - testMethod - global name: GenericEventPostMock references: [] type: smon.GenericEventPostMock variables: [] Metadata: apiVersion: 59 packageVersions: [] status: Active urls: FullName: smon__GenericEventPostMock deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/ui-api/record-ui/{RECORD_IDS}: get: tags: - Data - Get - Objects - Record summary: Salesforce Get Record Data and Object Metadata description: >- Get layout information, metadata, and data to build UI for a single record or for a collection of records. The response contains layout information for whichever layout types are specified in the layoutTypes parameter. It contains data for the records specified in the recordIds parameter. The response contains object metadata for the object types of the records specified in the recordIds parameter, and for any nested objects. For example, a request to /ui-api/record-ui/001RM000003RsOHYA0, which is an Account, returns object metadata for Account and User, because the OwnerId field on the Account object contains a reference to the User object. operationId: GetRecordDataandObjectMetadata parameters: - name: RECORD_IDS in: path description: Comma-separated list of record IDs required: true schema: type: string example: example_value responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 27 Sep 2023 15:52:18 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private ETag: content: text/plain: schema: type: string contentMediaType: text/plain example: '"3af1644c612336c764937c1097eb2994--gzip"' Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: $ref: '#/components/schemas/GetRecordDataandObjectMetadata' examples: Getrecorddataandobjectmetadata200Example: summary: Default GetRecordDataandObjectMetadata 200 response x-microcks-default: true value: eTag: example_value layoutUserStates: {} layouts: {} objectInfos: {} records: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/ui-api/layout/{SOBJECT_API_NAME}: get: tags: - Get - Layout - Record summary: Salesforce Get Record Layout Metadata description: Get metadata about page layouts for the specified object type. operationId: GetRecordLayoutMetadata parameters: - name: SOBJECT_API_NAME in: path description: '' required: true schema: type: string example: example_value responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 27 Sep 2023 15:54:02 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private ETag: content: text/plain: schema: type: string contentMediaType: text/plain example: '"07ce091fdbe7461d6b2a8813c63d3124--gzip"' Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: $ref: '#/components/schemas/GetRecordLayoutMetadata' examples: Getrecordlayoutmetadata200Example: summary: Default GetRecordLayoutMetadata 200 response x-microcks-default: true value: eTag: example_value id: abc123 layoutType: example_value mode: example_value objectApiName: example_value recordTypeId: '500123' saveOptions: - example_value sections: - collapsible: true columns: 10 heading: example_value id: abc123 layoutRows: {} rows: 10 useHeading: true deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/ui-api/object-info: get: tags: - Directories - Get - Objects - Supported summary: Salesforce Get a Directory of Supported Objects description: >- Get a Salesforce org’s active theme. A theme uses colors, images, and banners to change the overall appearance of Salesforce. Administrators can define themes and switch themes to provide a different look. The User Interface API response matches the Admin’s selection. operationId: GetaDirectoryofSupportedObjects parameters: [] responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 27 Sep 2023 15:54:23 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/GetaDirectoryofSupportedObjects' - examples: - objects: Account: apiName: Account keyPrefix: '001' label: Account labelPlural: Accounts nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Account AccountBrand: apiName: AccountBrand keyPrefix: 0TU label: Account Brand labelPlural: Account Brands nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/AccountBrand AccountHistory: apiName: AccountHistory keyPrefix: '017' label: Account History labelPlural: Account History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/AccountHistory AccountPartner: apiName: AccountPartner keyPrefix: 00I label: Account Partner labelPlural: Account Partner nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/AccountPartner ActiveScratchOrg: apiName: ActiveScratchOrg keyPrefix: 2AS label: Active Scratch Org labelPlural: Active Scratch Orgs nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ActiveScratchOrg ActiveScratchOrgHistory: apiName: ActiveScratchOrgHistory keyPrefix: '017' label: Active Scratch Org History labelPlural: Active Scratch Org History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ActiveScratchOrgHistory ApiAnomalyEventStore: apiName: ApiAnomalyEventStore keyPrefix: 0j6 label: API Anomaly Event Store labelPlural: API Anomaly Event Stores nameFields: - ApiAnomalyEventNumber objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ApiAnomalyEventStore AppAnalyticsQueryRequest: apiName: AppAnalyticsQueryRequest keyPrefix: 0XI label: App Analytics Query Request labelPlural: App Analytics Query Requests nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/AppAnalyticsQueryRequest AppMenuItem: apiName: AppMenuItem keyPrefix: 0DS label: AppMenuItem labelPlural: AppMenuItems nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/AppMenuItem Asset: apiName: Asset keyPrefix: 02i label: Asset labelPlural: Assets nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Asset AssetHistory: apiName: AssetHistory keyPrefix: '017' label: Asset History labelPlural: Asset History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/AssetHistory AssetRelationship: apiName: AssetRelationship keyPrefix: 1AR label: Asset Relationship labelPlural: Asset Relationships nameFields: - AssetRelationshipNumber objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/AssetRelationship AssetRelationshipHistory: apiName: AssetRelationshipHistory keyPrefix: '017' label: Asset Relationship History labelPlural: Asset Relationship History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/AssetRelationshipHistory AuthorizationForm: apiName: AuthorizationForm keyPrefix: 0cI label: Authorization Form labelPlural: Authorization Forms nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/AuthorizationForm AuthorizationFormConsent: apiName: AuthorizationFormConsent keyPrefix: 0cK label: Authorization Form Consent labelPlural: Authorization Form Consents nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/AuthorizationFormConsent AuthorizationFormConsentHistory: apiName: AuthorizationFormConsentHistory keyPrefix: '017' label: Authorization Form Consent History labelPlural: Authorization Form Consent History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/AuthorizationFormConsentHistory AuthorizationFormDataUse: apiName: AuthorizationFormDataUse keyPrefix: 0cM label: Authorization Form Data Use labelPlural: Authorization Form Data Uses nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/AuthorizationFormDataUse AuthorizationFormDataUseHistory: apiName: AuthorizationFormDataUseHistory keyPrefix: '017' label: Authorization Form Data Use History labelPlural: Authorization Form Data Use History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/AuthorizationFormDataUseHistory AuthorizationFormHistory: apiName: AuthorizationFormHistory keyPrefix: '017' label: Authorization Form History labelPlural: Authorization Form History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/AuthorizationFormHistory AuthorizationFormText: apiName: AuthorizationFormText keyPrefix: 0cN label: Authorization Form Text labelPlural: Authorization Form Texts nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/AuthorizationFormText AuthorizationFormTextHistory: apiName: AuthorizationFormTextHistory keyPrefix: '017' label: Authorization Form Text History labelPlural: Authorization Form Text History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/AuthorizationFormTextHistory BackgroundOperation: apiName: BackgroundOperation keyPrefix: 08P label: Background Operation labelPlural: Background Operations nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/BackgroundOperation BusinessBrand: apiName: BusinessBrand keyPrefix: 1BU label: Business Brand labelPlural: Business Brands nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/BusinessBrand BusinessHours: apiName: BusinessHours keyPrefix: 01m label: Business Hours labelPlural: Business Hours nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/BusinessHours Campaign: apiName: Campaign keyPrefix: '701' label: Campaign labelPlural: Campaigns nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Campaign CampaignHistory: apiName: CampaignHistory keyPrefix: '017' label: Campaign Field History labelPlural: Campaign Field History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/CampaignHistory CampaignMember: apiName: CampaignMember keyPrefix: 00v label: Campaign Member labelPlural: Campaign Members nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/CampaignMember CampaignMemberStatus: apiName: CampaignMemberStatus keyPrefix: 01Y label: Campaign Member Status labelPlural: Campaign Member Statuses nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/CampaignMemberStatus Case: apiName: Case keyPrefix: '500' label: Case labelPlural: Cases nameFields: - CaseNumber objectInfoUrl: /services/data/v58.0/ui-api/object-info/Case CaseComment: apiName: CaseComment keyPrefix: 00a label: Case Comment labelPlural: Case Comments nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/CaseComment CaseContactRole: apiName: CaseContactRole keyPrefix: 03j label: Case Contact Role labelPlural: Case Contact Role nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/CaseContactRole CaseHistory: apiName: CaseHistory keyPrefix: '017' label: Case History labelPlural: Case History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/CaseHistory ChannelProgram: apiName: ChannelProgram keyPrefix: 0Pk label: Channel Program labelPlural: Channel Programs nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ChannelProgram ChannelProgramHistory: apiName: ChannelProgramHistory keyPrefix: '017' label: Channel Program History labelPlural: Channel Program History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ChannelProgramHistory ChannelProgramLevel: apiName: ChannelProgramLevel keyPrefix: 0Pl label: Channel Program Level labelPlural: Channel Program Levels nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ChannelProgramLevel ChannelProgramLevelHistory: apiName: ChannelProgramLevelHistory keyPrefix: '017' label: Channel Program Level History labelPlural: Channel Program Level History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ChannelProgramLevelHistory ChannelProgramMember: apiName: ChannelProgramMember keyPrefix: 0Pm label: Channel Program Member labelPlural: Channel Program Members nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ChannelProgramMember ChannelProgramMemberHistory: apiName: ChannelProgramMemberHistory keyPrefix: '017' label: Channel Program Member History labelPlural: Channel Program Member History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ChannelProgramMemberHistory CommSubscription: apiName: CommSubscription keyPrefix: 0Xl label: Communication Subscription labelPlural: Communication Subscriptions nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/CommSubscription CommSubscriptionChannelType: apiName: CommSubscriptionChannelType keyPrefix: 0eB label: Communication Subscription Channel Type labelPlural: Communication Subscription Channel Types nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/CommSubscriptionChannelType CommSubscriptionChannelTypeHistory: apiName: CommSubscriptionChannelTypeHistory keyPrefix: '017' label: Communication Subscription Channel Type History labelPlural: Communication Subscription Channel Type History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/CommSubscriptionChannelTypeHistory CommSubscriptionHistory: apiName: CommSubscriptionHistory keyPrefix: '017' label: Communication Subscription History labelPlural: Communication Subscription History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/CommSubscriptionHistory ConsumptionRate: apiName: ConsumptionRate keyPrefix: 0Mo label: Consumption Rate labelPlural: Consumption Rates nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ConsumptionRate ConsumptionRateHistory: apiName: ConsumptionRateHistory keyPrefix: '017' label: Consumption Rate History ID labelPlural: Consumption Rate History ID nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ConsumptionRateHistory ConsumptionSchedule: apiName: ConsumptionSchedule keyPrefix: 0Mh label: Consumption Schedule labelPlural: Consumption Schedules nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ConsumptionSchedule ConsumptionScheduleHistory: apiName: ConsumptionScheduleHistory keyPrefix: '017' label: Consumption Schedule History ID labelPlural: Consumption Schedule History ID nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ConsumptionScheduleHistory Contact: apiName: Contact keyPrefix: '003' label: Contact labelPlural: Contacts nameFields: - FirstName - LastName - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Contact ContactHistory: apiName: ContactHistory keyPrefix: '017' label: Contact History labelPlural: Contact History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ContactHistory ContactPointTypeConsent: apiName: ContactPointTypeConsent keyPrefix: 0ZY label: Contact Point Type Consent labelPlural: Contact Point Type Consents nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ContactPointTypeConsent ContactPointTypeConsentHistory: apiName: ContactPointTypeConsentHistory keyPrefix: '017' label: Contact Point Type Consent History labelPlural: Contact Point Type Consent History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ContactPointTypeConsentHistory ContactRequest: apiName: ContactRequest keyPrefix: 0Tz label: Contact Request labelPlural: Contact Requests nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ContactRequest ContentDocument: apiName: ContentDocument keyPrefix: '069' label: File labelPlural: Files nameFields: - Title objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ContentDocument ContentDocumentHistory: apiName: ContentDocumentHistory keyPrefix: '017' label: Content Document History labelPlural: Content Document History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ContentDocumentHistory ContentDocumentLink: apiName: ContentDocumentLink keyPrefix: 06A label: Content Document Link labelPlural: Content Document Link nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ContentDocumentLink ContentVersion: apiName: ContentVersion keyPrefix: '068' label: File labelPlural: Files nameFields: - Title objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ContentVersion ContentVersionHistory: apiName: ContentVersionHistory keyPrefix: '017' label: Content Version History labelPlural: Content Version History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ContentVersionHistory ContentWorkspace: apiName: ContentWorkspace keyPrefix: '058' label: Library labelPlural: Libraries nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ContentWorkspace Contract: apiName: Contract keyPrefix: '800' label: Contract labelPlural: Contracts nameFields: - ContractNumber objectInfoUrl: /services/data/v58.0/ui-api/object-info/Contract ContractContactRole: apiName: ContractContactRole keyPrefix: 02a label: Contract Contact Role labelPlural: Contract Contact Role nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ContractContactRole ContractHistory: apiName: ContractHistory keyPrefix: '017' label: Contract History labelPlural: Contract History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ContractHistory CredentialStuffingEventStore: apiName: CredentialStuffingEventStore keyPrefix: 0fj label: Credential Stuffing Event Store labelPlural: Credential Stuffing Event Stores nameFields: - CredentialStuffingEventNumber objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/CredentialStuffingEventStore CspTrustedSite: apiName: CspTrustedSite keyPrefix: 08y label: Trusted URL labelPlural: Trusted URLs nameFields: - DeveloperName objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/CspTrustedSite Customer: apiName: Customer keyPrefix: 6 label: Customer labelPlural: Customers nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Customer DandBCompany: apiName: DandBCompany keyPrefix: 06E label: D&B Company labelPlural: D&B Companies nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/DandBCompany DataUseLegalBasis: apiName: DataUseLegalBasis keyPrefix: 0ZT label: Data Use Legal Basis labelPlural: Data Use Legal Bases nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/DataUseLegalBasis DataUseLegalBasisHistory: apiName: DataUseLegalBasisHistory keyPrefix: '017' label: Data Use Legal Basis History labelPlural: Data Use Legal Basis History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/DataUseLegalBasisHistory DataUsePurpose: apiName: DataUsePurpose keyPrefix: 0ZW label: Data Use Purpose labelPlural: Data Use Purposes nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/DataUsePurpose DataUsePurposeHistory: apiName: DataUsePurposeHistory keyPrefix: '017' label: Data Use Purpose History labelPlural: Data Use Purpose History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/DataUsePurposeHistory Dataweave_Key_Mapping__mdt: apiName: Dataweave_Key_Mapping__mdt keyPrefix: m00 label: Dataweave Key Mapping labelPlural: Dataweave Key Mappings nameFields: - DeveloperName objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/Dataweave_Key_Mapping__mdt Dataweave_Mapping__mdt: apiName: Dataweave_Mapping__mdt keyPrefix: m01 label: Dataweave Mapping labelPlural: Dataweave Mappings nameFields: - DeveloperName objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/Dataweave_Mapping__mdt DelegatedAccount: apiName: DelegatedAccount keyPrefix: 0du label: External Managed Account labelPlural: External Managed Accounts nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/DelegatedAccount DelegatedAccountHistory: apiName: DelegatedAccountHistory keyPrefix: '017' label: External Managed Account History labelPlural: External Managed Account History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/DelegatedAccountHistory DeleteEvent: apiName: DeleteEvent keyPrefix: 00C label: Recycle Bin Item labelPlural: Recycle Bin nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/DeleteEvent DuplicateRecordItem: apiName: DuplicateRecordItem keyPrefix: 0GL label: Duplicate Record Item labelPlural: Duplicate Record Items nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/DuplicateRecordItem DuplicateRecordSet: apiName: DuplicateRecordSet keyPrefix: 0GK label: Duplicate Record Set labelPlural: Duplicate Record Sets nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/DuplicateRecordSet EmailMessageRelation: apiName: EmailMessageRelation keyPrefix: 0CZ label: Email Message Relation labelPlural: Email Message Relations nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/EmailMessageRelation EngagementChannelType: apiName: EngagementChannelType keyPrefix: 0eF label: Engagement Channel Type labelPlural: Engagement Channel Types nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/EngagementChannelType EngagementChannelTypeHistory: apiName: EngagementChannelTypeHistory keyPrefix: '017' label: Engagement Channel Type History labelPlural: Engagement Channel Type History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/EngagementChannelTypeHistory FlowInterview: apiName: FlowInterview keyPrefix: 0Fo label: Flow Interview labelPlural: Flow Interviews nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/FlowInterview FlowOrchestrationInstance: apiName: FlowOrchestrationInstance keyPrefix: 0jE label: Orchestration Run labelPlural: Orchestration Runs nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/FlowOrchestrationInstance FlowOrchestrationStageInstance: apiName: FlowOrchestrationStageInstance keyPrefix: 0jF label: Orchestration Stage Run labelPlural: Orchestration Stage Runs nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/FlowOrchestrationStageInstance FlowOrchestrationStepInstance: apiName: FlowOrchestrationStepInstance keyPrefix: 0jL label: Orchestration Step Run labelPlural: Orchestration Step Runs nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/FlowOrchestrationStepInstance FlowOrchestrationWorkItem: apiName: FlowOrchestrationWorkItem keyPrefix: 0jf label: Orchestration Work Item labelPlural: Orchestration Work Items nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/FlowOrchestrationWorkItem Group: apiName: Group keyPrefix: 00G label: Group labelPlural: Group nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Group Holiday: apiName: Holiday keyPrefix: 0C0 label: Holiday labelPlural: Holidays nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Holiday IPAddressRange: apiName: IPAddressRange keyPrefix: 9s4 label: IP Address Range labelPlural: IP Address Ranges nameFields: - DeveloperName objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/IPAddressRange Image: apiName: Image keyPrefix: 4YL label: Image labelPlural: Images nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Image ImageHistory: apiName: ImageHistory keyPrefix: '017' label: Image History labelPlural: Image History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ImageHistory Individual: apiName: Individual keyPrefix: 0PK label: Individual labelPlural: Individuals nameFields: - FirstName - LastName - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Individual IndividualHistory: apiName: IndividualHistory keyPrefix: '017' label: Individual History labelPlural: Individual History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/IndividualHistory Lead: apiName: Lead keyPrefix: 00Q label: Lead labelPlural: Leads nameFields: - FirstName - LastName - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Lead LeadHistory: apiName: LeadHistory keyPrefix: '017' label: Lead History labelPlural: Lead History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/LeadHistory ListEmail: apiName: ListEmail keyPrefix: 0XB label: List Email labelPlural: List Emails nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ListEmail Macro: apiName: Macro keyPrefix: 0JZ label: Macro labelPlural: Macros nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Macro MacroHistory: apiName: MacroHistory keyPrefix: '017' label: Macro History labelPlural: Macro History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/MacroHistory ManagedContent: apiName: ManagedContent keyPrefix: 20Y label: Managed Content labelPlural: Managed Contents nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ManagedContent ManagedContentVariant: apiName: ManagedContentVariant keyPrefix: 9Ps label: Managed Content Variant labelPlural: Managed Content Variants nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ManagedContentVariant Merchandise__c: apiName: Merchandise__c keyPrefix: a00 label: Merchandise labelPlural: Merchandise nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/Merchandise__c Merchandising_Mix__c: apiName: Merchandising_Mix__c keyPrefix: a01 label: Merchandise Mix labelPlural: Merchandise Mixes nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/Merchandising_Mix__c Mix_Item__c: apiName: Mix_Item__c keyPrefix: a02 label: Mix Item labelPlural: Mix Items nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/Mix_Item__c NamespaceRegistry: apiName: NamespaceRegistry keyPrefix: 1NR label: Namespace Registry labelPlural: Namespace Registries nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/NamespaceRegistry NamespaceRegistryHistory: apiName: NamespaceRegistryHistory keyPrefix: '017' label: Namespace Registry History labelPlural: Namespace Registry History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/NamespaceRegistryHistory Note: apiName: Note keyPrefix: '002' label: Note labelPlural: Notes nameFields: - Title objectInfoUrl: /services/data/v58.0/ui-api/object-info/Note Opportunity: apiName: Opportunity keyPrefix: '006' label: Opportunity labelPlural: Opportunities nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/Opportunity OpportunityContactRole: apiName: OpportunityContactRole keyPrefix: 00K label: Opportunity Contact Role labelPlural: Opportunity Contact Role nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/OpportunityContactRole OpportunityFieldHistory: apiName: OpportunityFieldHistory keyPrefix: '017' label: Opportunity Field History labelPlural: Opportunity Field History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/OpportunityFieldHistory OpportunityHistory: apiName: OpportunityHistory keyPrefix: '008' label: Opportunity History labelPlural: Opportunity History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/OpportunityHistory OpportunityLineItem: apiName: OpportunityLineItem keyPrefix: 00k label: Opportunity Product labelPlural: Opportunity Product nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/OpportunityLineItem OpportunityPartner: apiName: OpportunityPartner keyPrefix: 00I label: Opportunity Partner labelPlural: Opportunity Partner nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/OpportunityPartner Order: apiName: Order keyPrefix: '801' label: Order labelPlural: Orders nameFields: - OrderNumber objectInfoUrl: /services/data/v58.0/ui-api/object-info/Order OrderHistory: apiName: OrderHistory keyPrefix: '017' label: Order History labelPlural: Order History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/OrderHistory OrderItem: apiName: OrderItem keyPrefix: '802' label: Order Product labelPlural: Order Products nameFields: - OrderItemNumber objectInfoUrl: /services/data/v58.0/ui-api/object-info/OrderItem OrderItemHistory: apiName: OrderItemHistory keyPrefix: '017' label: Order Product History labelPlural: Order Product History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/OrderItemHistory OrgMetric: apiName: OrgMetric keyPrefix: 3v1 label: Org Metric labelPlural: Org Metrics nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/OrgMetric OrgMetricScanResult: apiName: OrgMetricScanResult keyPrefix: 9aM label: Org Metric Scan Result labelPlural: Org Metric Scan Results nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/OrgMetricScanResult OrgMetricScanSummary: apiName: OrgMetricScanSummary keyPrefix: 6mX label: Org Metric Scan Summary labelPlural: Org Metric Scan Summaries nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/OrgMetricScanSummary Organization: apiName: Organization keyPrefix: 00D label: Organization labelPlural: Organizations nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/Organization Partner: apiName: Partner keyPrefix: 00I label: Partner labelPlural: Partner nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/Partner PartnerFundAllocation: apiName: PartnerFundAllocation keyPrefix: 0R8 label: Partner Fund Allocation labelPlural: Partner Fund Allocations nameFields: - Title objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/PartnerFundAllocation PartnerFundAllocationHistory: apiName: PartnerFundAllocationHistory keyPrefix: '017' label: Partner Fund Allocation History labelPlural: Partner Fund Allocation History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/PartnerFundAllocationHistory PartnerFundClaim: apiName: PartnerFundClaim keyPrefix: 0RB label: Partner Fund Claim labelPlural: Partner Fund Claims nameFields: - Title objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/PartnerFundClaim PartnerFundClaimHistory: apiName: PartnerFundClaimHistory keyPrefix: '017' label: Partner Fund Claim History labelPlural: Partner Fund Claim History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/PartnerFundClaimHistory PartnerFundRequest: apiName: PartnerFundRequest keyPrefix: 0RJ label: Partner Fund Request labelPlural: Partner Fund Requests nameFields: - Title objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/PartnerFundRequest PartnerFundRequestHistory: apiName: PartnerFundRequestHistory keyPrefix: '017' label: Partner Fund Request History labelPlural: Partner Fund Request History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/PartnerFundRequestHistory PartnerMarketingBudget: apiName: PartnerMarketingBudget keyPrefix: 0Cw label: Partner Marketing Budget labelPlural: Partner Marketing Budgets nameFields: - Title objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/PartnerMarketingBudget PartnerMarketingBudgetHistory: apiName: PartnerMarketingBudgetHistory keyPrefix: '017' label: Partner Marketing Budget History labelPlural: Partner Marketing Budget History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/PartnerMarketingBudgetHistory PartyConsent: apiName: PartyConsent keyPrefix: 0g8 label: Party Consent labelPlural: Party Consents nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/PartyConsent PartyConsentHistory: apiName: PartyConsentHistory keyPrefix: '017' label: Party Consent History labelPlural: Party Consent History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/PartyConsentHistory Period: apiName: Period keyPrefix: '026' label: Period labelPlural: Period nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/Period Pricebook2: apiName: Pricebook2 keyPrefix: 01s label: Price Book labelPlural: Price Books nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Pricebook2 Pricebook2History: apiName: Pricebook2History keyPrefix: '017' label: Price Book History labelPlural: Price Book History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/Pricebook2History PricebookEntry: apiName: PricebookEntry keyPrefix: 01u label: Price Book Entry labelPlural: Price Book Entries nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/PricebookEntry PricebookEntryHistory: apiName: PricebookEntryHistory keyPrefix: '017' label: Price Book Entry History labelPlural: Price Book Entry History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/PricebookEntryHistory ProcessDefinition: apiName: ProcessDefinition keyPrefix: 04a label: Process Definition labelPlural: Process Definition nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ProcessDefinition ProcessInstance: apiName: ProcessInstance keyPrefix: 04g label: Process Instance labelPlural: Process Instance nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ProcessInstance Product2: apiName: Product2 keyPrefix: 01t label: Product labelPlural: Products nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Product2 Product2History: apiName: Product2History keyPrefix: '017' label: Product History labelPlural: Product History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/Product2History ProductConsumptionSchedule: apiName: ProductConsumptionSchedule keyPrefix: 0Mq label: Product Consumption Schedule labelPlural: Product Consumption Schedules nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ProductConsumptionSchedule ProfileSkill: apiName: ProfileSkill keyPrefix: 0Sk label: Skill labelPlural: Skills nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ProfileSkill ProfileSkillEndorsement: apiName: ProfileSkillEndorsement keyPrefix: 0SE label: Endorsement labelPlural: Endorsements nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ProfileSkillEndorsement ProfileSkillEndorsementHistory: apiName: ProfileSkillEndorsementHistory keyPrefix: '017' label: Endorsement History labelPlural: Endorsement History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ProfileSkillEndorsementHistory ProfileSkillHistory: apiName: ProfileSkillHistory keyPrefix: '017' label: Skill History labelPlural: Skill History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ProfileSkillHistory ProfileSkillUser: apiName: ProfileSkillUser keyPrefix: 0SM label: Skill User labelPlural: Skill Users nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ProfileSkillUser ProfileSkillUserHistory: apiName: ProfileSkillUserHistory keyPrefix: '017' label: Skill User History labelPlural: Skill User History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ProfileSkillUserHistory QuickText: apiName: QuickText keyPrefix: '574' label: Quick Text labelPlural: Quick Text nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/QuickText QuickTextHistory: apiName: QuickTextHistory keyPrefix: '017' label: Quick Text History labelPlural: Quick Text History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/QuickTextHistory Recommendation: apiName: Recommendation keyPrefix: 0pr label: Recommendation labelPlural: Recommendations nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/Recommendation RecordAction: apiName: RecordAction keyPrefix: 0Rw label: RecordAction labelPlural: RecordActions nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/RecordAction RecordType: apiName: RecordType keyPrefix: '012' label: Record Type labelPlural: Record Types nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/RecordType Report: apiName: Report keyPrefix: 00O label: Report labelPlural: Reports nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Report ReportAnomalyEventStore: apiName: ReportAnomalyEventStore keyPrefix: 0Z7 label: Report Anomaly Event Store labelPlural: Report Anomaly Event Stores nameFields: - ReportAnomalyEventNumber objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ReportAnomalyEventStore Scorecard: apiName: Scorecard keyPrefix: 01f label: Scorecard labelPlural: Scorecards nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Scorecard ScorecardAssociation: apiName: ScorecardAssociation keyPrefix: 0Qn label: Scorecard Association labelPlural: Scorecard Associations nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ScorecardAssociation ScorecardMetric: apiName: ScorecardMetric keyPrefix: 0Om label: Scorecard Metric labelPlural: Scorecard Metrics nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ScorecardMetric ScratchOrgInfo: apiName: ScratchOrgInfo keyPrefix: 2SR label: Scratch Org Info labelPlural: Scratch Org Infos nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ScratchOrgInfo ScratchOrgInfoHistory: apiName: ScratchOrgInfoHistory keyPrefix: '017' label: Scratch Org Info History labelPlural: Scratch Org Info History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ScratchOrgInfoHistory SearchPromotionRule: apiName: SearchPromotionRule keyPrefix: 0MD label: Promoted Search Term labelPlural: Promoted Search Terms nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/SearchPromotionRule Seller: apiName: Seller keyPrefix: 0q6 label: Seller labelPlural: Sellers nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Seller SellerHistory: apiName: SellerHistory keyPrefix: '017' label: Seller History labelPlural: Seller History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/SellerHistory SessionHijackingEventStore: apiName: SessionHijackingEventStore keyPrefix: 0Zj label: Session Hijacking Event Store labelPlural: Session Hijacking Event Stores nameFields: - SessionHijackingEventNumber objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/SessionHijackingEventStore SetupAssistantStep: apiName: SetupAssistantStep keyPrefix: 3Ys label: Setup Assistant Step labelPlural: Setup Assistant Steps nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/SetupAssistantStep SiteHistory: apiName: SiteHistory keyPrefix: '017' label: Site History labelPlural: Site History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/SiteHistory SolutionHistory: apiName: SolutionHistory keyPrefix: '017' label: Solution History labelPlural: Solution History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/SolutionHistory StaticResource: apiName: StaticResource keyPrefix: '081' label: Static Resource labelPlural: Static Resources nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/StaticResource StreamingChannel: apiName: StreamingChannel keyPrefix: 0M6 label: Streaming Channel labelPlural: Streaming Channels nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/StreamingChannel ThreatDetectionFeedback: apiName: ThreatDetectionFeedback keyPrefix: 0hY label: Threat Detection Feedback labelPlural: Threat Detection Feedback nameFields: - ThreatDetectionFeedbackNumber objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ThreatDetectionFeedback Topic: apiName: Topic keyPrefix: 0TO label: Topic labelPlural: Topics nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Topic TopicAssignment: apiName: TopicAssignment keyPrefix: 0FT label: Topic Assignment labelPlural: Topic Assignments nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/TopicAssignment Translation: apiName: Translation keyPrefix: 01h label: Language Translation labelPlural: Language Translation nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/Translation User: apiName: User keyPrefix: '005' label: User labelPlural: People nameFields: - FirstName - LastName - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/User UserRole: apiName: UserRole keyPrefix: 00E label: Role labelPlural: Role nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/UserRole WorkBadgeDefinitionHistory: apiName: WorkBadgeDefinitionHistory keyPrefix: '017' label: Badge History labelPlural: Badge History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/WorkBadgeDefinitionHistory contentMediaType: application/json;charset=UTF-8 example: objects: Account: apiName: Account keyPrefix: '001' label: Account labelPlural: Accounts nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Account AccountBrand: apiName: AccountBrand keyPrefix: 0TU label: Account Brand labelPlural: Account Brands nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/AccountBrand AccountHistory: apiName: AccountHistory keyPrefix: '017' label: Account History labelPlural: Account History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/AccountHistory AccountPartner: apiName: AccountPartner keyPrefix: 00I label: Account Partner labelPlural: Account Partner nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/AccountPartner ActiveScratchOrg: apiName: ActiveScratchOrg keyPrefix: 2AS label: Active Scratch Org labelPlural: Active Scratch Orgs nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ActiveScratchOrg ActiveScratchOrgHistory: apiName: ActiveScratchOrgHistory keyPrefix: '017' label: Active Scratch Org History labelPlural: Active Scratch Org History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ActiveScratchOrgHistory ApiAnomalyEventStore: apiName: ApiAnomalyEventStore keyPrefix: 0j6 label: API Anomaly Event Store labelPlural: API Anomaly Event Stores nameFields: - ApiAnomalyEventNumber objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ApiAnomalyEventStore AppAnalyticsQueryRequest: apiName: AppAnalyticsQueryRequest keyPrefix: 0XI label: App Analytics Query Request labelPlural: App Analytics Query Requests nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/AppAnalyticsQueryRequest AppMenuItem: apiName: AppMenuItem keyPrefix: 0DS label: AppMenuItem labelPlural: AppMenuItems nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/AppMenuItem Asset: apiName: Asset keyPrefix: 02i label: Asset labelPlural: Assets nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Asset AssetHistory: apiName: AssetHistory keyPrefix: '017' label: Asset History labelPlural: Asset History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/AssetHistory AssetRelationship: apiName: AssetRelationship keyPrefix: 1AR label: Asset Relationship labelPlural: Asset Relationships nameFields: - AssetRelationshipNumber objectInfoUrl: /services/data/v58.0/ui-api/object-info/AssetRelationship AssetRelationshipHistory: apiName: AssetRelationshipHistory keyPrefix: '017' label: Asset Relationship History labelPlural: Asset Relationship History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/AssetRelationshipHistory AuthorizationForm: apiName: AuthorizationForm keyPrefix: 0cI label: Authorization Form labelPlural: Authorization Forms nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/AuthorizationForm AuthorizationFormConsent: apiName: AuthorizationFormConsent keyPrefix: 0cK label: Authorization Form Consent labelPlural: Authorization Form Consents nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/AuthorizationFormConsent AuthorizationFormConsentHistory: apiName: AuthorizationFormConsentHistory keyPrefix: '017' label: Authorization Form Consent History labelPlural: Authorization Form Consent History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/AuthorizationFormConsentHistory AuthorizationFormDataUse: apiName: AuthorizationFormDataUse keyPrefix: 0cM label: Authorization Form Data Use labelPlural: Authorization Form Data Uses nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/AuthorizationFormDataUse AuthorizationFormDataUseHistory: apiName: AuthorizationFormDataUseHistory keyPrefix: '017' label: Authorization Form Data Use History labelPlural: Authorization Form Data Use History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/AuthorizationFormDataUseHistory AuthorizationFormHistory: apiName: AuthorizationFormHistory keyPrefix: '017' label: Authorization Form History labelPlural: Authorization Form History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/AuthorizationFormHistory AuthorizationFormText: apiName: AuthorizationFormText keyPrefix: 0cN label: Authorization Form Text labelPlural: Authorization Form Texts nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/AuthorizationFormText AuthorizationFormTextHistory: apiName: AuthorizationFormTextHistory keyPrefix: '017' label: Authorization Form Text History labelPlural: Authorization Form Text History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/AuthorizationFormTextHistory BackgroundOperation: apiName: BackgroundOperation keyPrefix: 08P label: Background Operation labelPlural: Background Operations nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/BackgroundOperation BusinessBrand: apiName: BusinessBrand keyPrefix: 1BU label: Business Brand labelPlural: Business Brands nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/BusinessBrand BusinessHours: apiName: BusinessHours keyPrefix: 01m label: Business Hours labelPlural: Business Hours nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/BusinessHours Campaign: apiName: Campaign keyPrefix: '701' label: Campaign labelPlural: Campaigns nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Campaign CampaignHistory: apiName: CampaignHistory keyPrefix: '017' label: Campaign Field History labelPlural: Campaign Field History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/CampaignHistory CampaignMember: apiName: CampaignMember keyPrefix: 00v label: Campaign Member labelPlural: Campaign Members nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/CampaignMember CampaignMemberStatus: apiName: CampaignMemberStatus keyPrefix: 01Y label: Campaign Member Status labelPlural: Campaign Member Statuses nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/CampaignMemberStatus Case: apiName: Case keyPrefix: '500' label: Case labelPlural: Cases nameFields: - CaseNumber objectInfoUrl: /services/data/v58.0/ui-api/object-info/Case CaseComment: apiName: CaseComment keyPrefix: 00a label: Case Comment labelPlural: Case Comments nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/CaseComment CaseContactRole: apiName: CaseContactRole keyPrefix: 03j label: Case Contact Role labelPlural: Case Contact Role nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/CaseContactRole CaseHistory: apiName: CaseHistory keyPrefix: '017' label: Case History labelPlural: Case History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/CaseHistory ChannelProgram: apiName: ChannelProgram keyPrefix: 0Pk label: Channel Program labelPlural: Channel Programs nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ChannelProgram ChannelProgramHistory: apiName: ChannelProgramHistory keyPrefix: '017' label: Channel Program History labelPlural: Channel Program History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ChannelProgramHistory ChannelProgramLevel: apiName: ChannelProgramLevel keyPrefix: 0Pl label: Channel Program Level labelPlural: Channel Program Levels nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ChannelProgramLevel ChannelProgramLevelHistory: apiName: ChannelProgramLevelHistory keyPrefix: '017' label: Channel Program Level History labelPlural: Channel Program Level History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ChannelProgramLevelHistory ChannelProgramMember: apiName: ChannelProgramMember keyPrefix: 0Pm label: Channel Program Member labelPlural: Channel Program Members nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ChannelProgramMember ChannelProgramMemberHistory: apiName: ChannelProgramMemberHistory keyPrefix: '017' label: Channel Program Member History labelPlural: Channel Program Member History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ChannelProgramMemberHistory CommSubscription: apiName: CommSubscription keyPrefix: 0Xl label: Communication Subscription labelPlural: Communication Subscriptions nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/CommSubscription CommSubscriptionChannelType: apiName: CommSubscriptionChannelType keyPrefix: 0eB label: Communication Subscription Channel Type labelPlural: Communication Subscription Channel Types nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/CommSubscriptionChannelType CommSubscriptionChannelTypeHistory: apiName: CommSubscriptionChannelTypeHistory keyPrefix: '017' label: Communication Subscription Channel Type History labelPlural: Communication Subscription Channel Type History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/CommSubscriptionChannelTypeHistory CommSubscriptionHistory: apiName: CommSubscriptionHistory keyPrefix: '017' label: Communication Subscription History labelPlural: Communication Subscription History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/CommSubscriptionHistory ConsumptionRate: apiName: ConsumptionRate keyPrefix: 0Mo label: Consumption Rate labelPlural: Consumption Rates nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ConsumptionRate ConsumptionRateHistory: apiName: ConsumptionRateHistory keyPrefix: '017' label: Consumption Rate History ID labelPlural: Consumption Rate History ID nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ConsumptionRateHistory ConsumptionSchedule: apiName: ConsumptionSchedule keyPrefix: 0Mh label: Consumption Schedule labelPlural: Consumption Schedules nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ConsumptionSchedule ConsumptionScheduleHistory: apiName: ConsumptionScheduleHistory keyPrefix: '017' label: Consumption Schedule History ID labelPlural: Consumption Schedule History ID nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ConsumptionScheduleHistory Contact: apiName: Contact keyPrefix: '003' label: Contact labelPlural: Contacts nameFields: - FirstName - LastName - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Contact ContactHistory: apiName: ContactHistory keyPrefix: '017' label: Contact History labelPlural: Contact History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/ContactHistory ContactPointTypeConsent: apiName: ContactPointTypeConsent keyPrefix: 0ZY label: Contact Point Type Consent labelPlural: Contact Point Type Consents nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ContactPointTypeConsent ContactPointTypeConsentHistory: apiName: ContactPointTypeConsentHistory keyPrefix: '017' label: Contact Point Type Consent History labelPlural: Contact Point Type Consent History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ContactPointTypeConsentHistory ContactRequest: apiName: ContactRequest keyPrefix: 0Tz label: Contact Request labelPlural: Contact Requests nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ContactRequest ContentDocument: apiName: ContentDocument keyPrefix: '069' label: File labelPlural: Files nameFields: - Title objectInfoUrl: /services/data/v58.0/ui-api/object-info/ContentDocument ContentDocumentHistory: apiName: ContentDocumentHistory keyPrefix: '017' label: Content Document History labelPlural: Content Document History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ContentDocumentHistory ContentDocumentLink: apiName: ContentDocumentLink keyPrefix: 06A label: Content Document Link labelPlural: Content Document Link nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ContentDocumentLink ContentVersion: apiName: ContentVersion keyPrefix: '068' label: File labelPlural: Files nameFields: - Title objectInfoUrl: /services/data/v58.0/ui-api/object-info/ContentVersion ContentVersionHistory: apiName: ContentVersionHistory keyPrefix: '017' label: Content Version History labelPlural: Content Version History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ContentVersionHistory ContentWorkspace: apiName: ContentWorkspace keyPrefix: '058' label: Library labelPlural: Libraries nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ContentWorkspace Contract: apiName: Contract keyPrefix: '800' label: Contract labelPlural: Contracts nameFields: - ContractNumber objectInfoUrl: /services/data/v58.0/ui-api/object-info/Contract ContractContactRole: apiName: ContractContactRole keyPrefix: 02a label: Contract Contact Role labelPlural: Contract Contact Role nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ContractContactRole ContractHistory: apiName: ContractHistory keyPrefix: '017' label: Contract History labelPlural: Contract History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/ContractHistory CredentialStuffingEventStore: apiName: CredentialStuffingEventStore keyPrefix: 0fj label: Credential Stuffing Event Store labelPlural: Credential Stuffing Event Stores nameFields: - CredentialStuffingEventNumber objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/CredentialStuffingEventStore CspTrustedSite: apiName: CspTrustedSite keyPrefix: 08y label: Trusted URL labelPlural: Trusted URLs nameFields: - DeveloperName objectInfoUrl: /services/data/v58.0/ui-api/object-info/CspTrustedSite Customer: apiName: Customer keyPrefix: 6 label: Customer labelPlural: Customers nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Customer DandBCompany: apiName: DandBCompany keyPrefix: 06E label: D&B Company labelPlural: D&B Companies nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/DandBCompany DataUseLegalBasis: apiName: DataUseLegalBasis keyPrefix: 0ZT label: Data Use Legal Basis labelPlural: Data Use Legal Bases nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/DataUseLegalBasis DataUseLegalBasisHistory: apiName: DataUseLegalBasisHistory keyPrefix: '017' label: Data Use Legal Basis History labelPlural: Data Use Legal Basis History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/DataUseLegalBasisHistory DataUsePurpose: apiName: DataUsePurpose keyPrefix: 0ZW label: Data Use Purpose labelPlural: Data Use Purposes nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/DataUsePurpose DataUsePurposeHistory: apiName: DataUsePurposeHistory keyPrefix: '017' label: Data Use Purpose History labelPlural: Data Use Purpose History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/DataUsePurposeHistory Dataweave_Key_Mapping__mdt: apiName: Dataweave_Key_Mapping__mdt keyPrefix: m00 label: Dataweave Key Mapping labelPlural: Dataweave Key Mappings nameFields: - DeveloperName objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/Dataweave_Key_Mapping__mdt Dataweave_Mapping__mdt: apiName: Dataweave_Mapping__mdt keyPrefix: m01 label: Dataweave Mapping labelPlural: Dataweave Mappings nameFields: - DeveloperName objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/Dataweave_Mapping__mdt DelegatedAccount: apiName: DelegatedAccount keyPrefix: 0du label: External Managed Account labelPlural: External Managed Accounts nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/DelegatedAccount DelegatedAccountHistory: apiName: DelegatedAccountHistory keyPrefix: '017' label: External Managed Account History labelPlural: External Managed Account History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/DelegatedAccountHistory DeleteEvent: apiName: DeleteEvent keyPrefix: 00C label: Recycle Bin Item labelPlural: Recycle Bin nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/DeleteEvent DuplicateRecordItem: apiName: DuplicateRecordItem keyPrefix: 0GL label: Duplicate Record Item labelPlural: Duplicate Record Items nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/DuplicateRecordItem DuplicateRecordSet: apiName: DuplicateRecordSet keyPrefix: 0GK label: Duplicate Record Set labelPlural: Duplicate Record Sets nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/DuplicateRecordSet EmailMessageRelation: apiName: EmailMessageRelation keyPrefix: 0CZ label: Email Message Relation labelPlural: Email Message Relations nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/EmailMessageRelation EngagementChannelType: apiName: EngagementChannelType keyPrefix: 0eF label: Engagement Channel Type labelPlural: Engagement Channel Types nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/EngagementChannelType EngagementChannelTypeHistory: apiName: EngagementChannelTypeHistory keyPrefix: '017' label: Engagement Channel Type History labelPlural: Engagement Channel Type History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/EngagementChannelTypeHistory FlowInterview: apiName: FlowInterview keyPrefix: 0Fo label: Flow Interview labelPlural: Flow Interviews nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/FlowInterview FlowOrchestrationInstance: apiName: FlowOrchestrationInstance keyPrefix: 0jE label: Orchestration Run labelPlural: Orchestration Runs nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/FlowOrchestrationInstance FlowOrchestrationStageInstance: apiName: FlowOrchestrationStageInstance keyPrefix: 0jF label: Orchestration Stage Run labelPlural: Orchestration Stage Runs nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/FlowOrchestrationStageInstance FlowOrchestrationStepInstance: apiName: FlowOrchestrationStepInstance keyPrefix: 0jL label: Orchestration Step Run labelPlural: Orchestration Step Runs nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/FlowOrchestrationStepInstance FlowOrchestrationWorkItem: apiName: FlowOrchestrationWorkItem keyPrefix: 0jf label: Orchestration Work Item labelPlural: Orchestration Work Items nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/FlowOrchestrationWorkItem Group: apiName: Group keyPrefix: 00G label: Group labelPlural: Group nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Group Holiday: apiName: Holiday keyPrefix: 0C0 label: Holiday labelPlural: Holidays nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Holiday IPAddressRange: apiName: IPAddressRange keyPrefix: 9s4 label: IP Address Range labelPlural: IP Address Ranges nameFields: - DeveloperName objectInfoUrl: /services/data/v58.0/ui-api/object-info/IPAddressRange Image: apiName: Image keyPrefix: 4YL label: Image labelPlural: Images nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Image ImageHistory: apiName: ImageHistory keyPrefix: '017' label: Image History labelPlural: Image History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/ImageHistory Individual: apiName: Individual keyPrefix: 0PK label: Individual labelPlural: Individuals nameFields: - FirstName - LastName - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Individual IndividualHistory: apiName: IndividualHistory keyPrefix: '017' label: Individual History labelPlural: Individual History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/IndividualHistory Lead: apiName: Lead keyPrefix: 00Q label: Lead labelPlural: Leads nameFields: - FirstName - LastName - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Lead LeadHistory: apiName: LeadHistory keyPrefix: '017' label: Lead History labelPlural: Lead History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/LeadHistory ListEmail: apiName: ListEmail keyPrefix: 0XB label: List Email labelPlural: List Emails nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ListEmail Macro: apiName: Macro keyPrefix: 0JZ label: Macro labelPlural: Macros nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Macro MacroHistory: apiName: MacroHistory keyPrefix: '017' label: Macro History labelPlural: Macro History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/MacroHistory ManagedContent: apiName: ManagedContent keyPrefix: 20Y label: Managed Content labelPlural: Managed Contents nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ManagedContent ManagedContentVariant: apiName: ManagedContentVariant keyPrefix: 9Ps label: Managed Content Variant labelPlural: Managed Content Variants nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ManagedContentVariant Merchandise__c: apiName: Merchandise__c keyPrefix: a00 label: Merchandise labelPlural: Merchandise nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Merchandise__c Merchandising_Mix__c: apiName: Merchandising_Mix__c keyPrefix: a01 label: Merchandise Mix labelPlural: Merchandise Mixes nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/Merchandising_Mix__c Mix_Item__c: apiName: Mix_Item__c keyPrefix: a02 label: Mix Item labelPlural: Mix Items nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Mix_Item__c NamespaceRegistry: apiName: NamespaceRegistry keyPrefix: 1NR label: Namespace Registry labelPlural: Namespace Registries nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/NamespaceRegistry NamespaceRegistryHistory: apiName: NamespaceRegistryHistory keyPrefix: '017' label: Namespace Registry History labelPlural: Namespace Registry History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/NamespaceRegistryHistory Note: apiName: Note keyPrefix: '002' label: Note labelPlural: Notes nameFields: - Title objectInfoUrl: /services/data/v58.0/ui-api/object-info/Note Opportunity: apiName: Opportunity keyPrefix: '006' label: Opportunity labelPlural: Opportunities nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Opportunity OpportunityContactRole: apiName: OpportunityContactRole keyPrefix: 00K label: Opportunity Contact Role labelPlural: Opportunity Contact Role nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/OpportunityContactRole OpportunityFieldHistory: apiName: OpportunityFieldHistory keyPrefix: '017' label: Opportunity Field History labelPlural: Opportunity Field History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/OpportunityFieldHistory OpportunityHistory: apiName: OpportunityHistory keyPrefix: '008' label: Opportunity History labelPlural: Opportunity History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/OpportunityHistory OpportunityLineItem: apiName: OpportunityLineItem keyPrefix: 00k label: Opportunity Product labelPlural: Opportunity Product nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/OpportunityLineItem OpportunityPartner: apiName: OpportunityPartner keyPrefix: 00I label: Opportunity Partner labelPlural: Opportunity Partner nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/OpportunityPartner Order: apiName: Order keyPrefix: '801' label: Order labelPlural: Orders nameFields: - OrderNumber objectInfoUrl: /services/data/v58.0/ui-api/object-info/Order OrderHistory: apiName: OrderHistory keyPrefix: '017' label: Order History labelPlural: Order History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/OrderHistory OrderItem: apiName: OrderItem keyPrefix: '802' label: Order Product labelPlural: Order Products nameFields: - OrderItemNumber objectInfoUrl: /services/data/v58.0/ui-api/object-info/OrderItem OrderItemHistory: apiName: OrderItemHistory keyPrefix: '017' label: Order Product History labelPlural: Order Product History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/OrderItemHistory OrgMetric: apiName: OrgMetric keyPrefix: 3v1 label: Org Metric labelPlural: Org Metrics nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/OrgMetric OrgMetricScanResult: apiName: OrgMetricScanResult keyPrefix: 9aM label: Org Metric Scan Result labelPlural: Org Metric Scan Results nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/OrgMetricScanResult OrgMetricScanSummary: apiName: OrgMetricScanSummary keyPrefix: 6mX label: Org Metric Scan Summary labelPlural: Org Metric Scan Summaries nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/OrgMetricScanSummary Organization: apiName: Organization keyPrefix: 00D label: Organization labelPlural: Organizations nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Organization Partner: apiName: Partner keyPrefix: 00I label: Partner labelPlural: Partner nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/Partner PartnerFundAllocation: apiName: PartnerFundAllocation keyPrefix: 0R8 label: Partner Fund Allocation labelPlural: Partner Fund Allocations nameFields: - Title objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/PartnerFundAllocation PartnerFundAllocationHistory: apiName: PartnerFundAllocationHistory keyPrefix: '017' label: Partner Fund Allocation History labelPlural: Partner Fund Allocation History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/PartnerFundAllocationHistory PartnerFundClaim: apiName: PartnerFundClaim keyPrefix: 0RB label: Partner Fund Claim labelPlural: Partner Fund Claims nameFields: - Title objectInfoUrl: /services/data/v58.0/ui-api/object-info/PartnerFundClaim PartnerFundClaimHistory: apiName: PartnerFundClaimHistory keyPrefix: '017' label: Partner Fund Claim History labelPlural: Partner Fund Claim History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/PartnerFundClaimHistory PartnerFundRequest: apiName: PartnerFundRequest keyPrefix: 0RJ label: Partner Fund Request labelPlural: Partner Fund Requests nameFields: - Title objectInfoUrl: /services/data/v58.0/ui-api/object-info/PartnerFundRequest PartnerFundRequestHistory: apiName: PartnerFundRequestHistory keyPrefix: '017' label: Partner Fund Request History labelPlural: Partner Fund Request History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/PartnerFundRequestHistory PartnerMarketingBudget: apiName: PartnerMarketingBudget keyPrefix: 0Cw label: Partner Marketing Budget labelPlural: Partner Marketing Budgets nameFields: - Title objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/PartnerMarketingBudget PartnerMarketingBudgetHistory: apiName: PartnerMarketingBudgetHistory keyPrefix: '017' label: Partner Marketing Budget History labelPlural: Partner Marketing Budget History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/PartnerMarketingBudgetHistory PartyConsent: apiName: PartyConsent keyPrefix: 0g8 label: Party Consent labelPlural: Party Consents nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/PartyConsent PartyConsentHistory: apiName: PartyConsentHistory keyPrefix: '017' label: Party Consent History labelPlural: Party Consent History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/PartyConsentHistory Period: apiName: Period keyPrefix: '026' label: Period labelPlural: Period nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/Period Pricebook2: apiName: Pricebook2 keyPrefix: 01s label: Price Book labelPlural: Price Books nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Pricebook2 Pricebook2History: apiName: Pricebook2History keyPrefix: '017' label: Price Book History labelPlural: Price Book History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/Pricebook2History PricebookEntry: apiName: PricebookEntry keyPrefix: 01u label: Price Book Entry labelPlural: Price Book Entries nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/PricebookEntry PricebookEntryHistory: apiName: PricebookEntryHistory keyPrefix: '017' label: Price Book Entry History labelPlural: Price Book Entry History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/PricebookEntryHistory ProcessDefinition: apiName: ProcessDefinition keyPrefix: 04a label: Process Definition labelPlural: Process Definition nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ProcessDefinition ProcessInstance: apiName: ProcessInstance keyPrefix: 04g label: Process Instance labelPlural: Process Instance nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/ProcessInstance Product2: apiName: Product2 keyPrefix: 01t label: Product labelPlural: Products nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Product2 Product2History: apiName: Product2History keyPrefix: '017' label: Product History labelPlural: Product History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/Product2History ProductConsumptionSchedule: apiName: ProductConsumptionSchedule keyPrefix: 0Mq label: Product Consumption Schedule labelPlural: Product Consumption Schedules nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ProductConsumptionSchedule ProfileSkill: apiName: ProfileSkill keyPrefix: 0Sk label: Skill labelPlural: Skills nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ProfileSkill ProfileSkillEndorsement: apiName: ProfileSkillEndorsement keyPrefix: 0SE label: Endorsement labelPlural: Endorsements nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ProfileSkillEndorsement ProfileSkillEndorsementHistory: apiName: ProfileSkillEndorsementHistory keyPrefix: '017' label: Endorsement History labelPlural: Endorsement History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ProfileSkillEndorsementHistory ProfileSkillHistory: apiName: ProfileSkillHistory keyPrefix: '017' label: Skill History labelPlural: Skill History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ProfileSkillHistory ProfileSkillUser: apiName: ProfileSkillUser keyPrefix: 0SM label: Skill User labelPlural: Skill Users nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ProfileSkillUser ProfileSkillUserHistory: apiName: ProfileSkillUserHistory keyPrefix: '017' label: Skill User History labelPlural: Skill User History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ProfileSkillUserHistory QuickText: apiName: QuickText keyPrefix: '574' label: Quick Text labelPlural: Quick Text nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/QuickText QuickTextHistory: apiName: QuickTextHistory keyPrefix: '017' label: Quick Text History labelPlural: Quick Text History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/QuickTextHistory Recommendation: apiName: Recommendation keyPrefix: 0pr label: Recommendation labelPlural: Recommendations nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Recommendation RecordAction: apiName: RecordAction keyPrefix: 0Rw label: RecordAction labelPlural: RecordActions nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/RecordAction RecordType: apiName: RecordType keyPrefix: '012' label: Record Type labelPlural: Record Types nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/RecordType Report: apiName: Report keyPrefix: 00O label: Report labelPlural: Reports nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Report ReportAnomalyEventStore: apiName: ReportAnomalyEventStore keyPrefix: 0Z7 label: Report Anomaly Event Store labelPlural: Report Anomaly Event Stores nameFields: - ReportAnomalyEventNumber objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ReportAnomalyEventStore Scorecard: apiName: Scorecard keyPrefix: 01f label: Scorecard labelPlural: Scorecards nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Scorecard ScorecardAssociation: apiName: ScorecardAssociation keyPrefix: 0Qn label: Scorecard Association labelPlural: Scorecard Associations nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ScorecardAssociation ScorecardMetric: apiName: ScorecardMetric keyPrefix: 0Om label: Scorecard Metric labelPlural: Scorecard Metrics nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ScorecardMetric ScratchOrgInfo: apiName: ScratchOrgInfo keyPrefix: 2SR label: Scratch Org Info labelPlural: Scratch Org Infos nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ScratchOrgInfo ScratchOrgInfoHistory: apiName: ScratchOrgInfoHistory keyPrefix: '017' label: Scratch Org Info History labelPlural: Scratch Org Info History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ScratchOrgInfoHistory SearchPromotionRule: apiName: SearchPromotionRule keyPrefix: 0MD label: Promoted Search Term labelPlural: Promoted Search Terms nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/SearchPromotionRule Seller: apiName: Seller keyPrefix: 0q6 label: Seller labelPlural: Sellers nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Seller SellerHistory: apiName: SellerHistory keyPrefix: '017' label: Seller History labelPlural: Seller History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/SellerHistory SessionHijackingEventStore: apiName: SessionHijackingEventStore keyPrefix: 0Zj label: Session Hijacking Event Store labelPlural: Session Hijacking Event Stores nameFields: - SessionHijackingEventNumber objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/SessionHijackingEventStore SetupAssistantStep: apiName: SetupAssistantStep keyPrefix: 3Ys label: Setup Assistant Step labelPlural: Setup Assistant Steps nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/SetupAssistantStep SiteHistory: apiName: SiteHistory keyPrefix: '017' label: Site History labelPlural: Site History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/SiteHistory SolutionHistory: apiName: SolutionHistory keyPrefix: '017' label: Solution History labelPlural: Solution History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/SolutionHistory StaticResource: apiName: StaticResource keyPrefix: '081' label: Static Resource labelPlural: Static Resources nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/StaticResource StreamingChannel: apiName: StreamingChannel keyPrefix: 0M6 label: Streaming Channel labelPlural: Streaming Channels nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/StreamingChannel ThreatDetectionFeedback: apiName: ThreatDetectionFeedback keyPrefix: 0hY label: Threat Detection Feedback labelPlural: Threat Detection Feedback nameFields: - ThreatDetectionFeedbackNumber objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ThreatDetectionFeedback Topic: apiName: Topic keyPrefix: 0TO label: Topic labelPlural: Topics nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Topic TopicAssignment: apiName: TopicAssignment keyPrefix: 0FT label: Topic Assignment labelPlural: Topic Assignments nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/TopicAssignment Translation: apiName: Translation keyPrefix: 01h label: Language Translation labelPlural: Language Translation nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/Translation User: apiName: User keyPrefix: '005' label: User labelPlural: People nameFields: - FirstName - LastName - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/User UserRole: apiName: UserRole keyPrefix: 00E label: Role labelPlural: Role nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/UserRole WorkBadgeDefinitionHistory: apiName: WorkBadgeDefinitionHistory keyPrefix: '017' label: Badge History labelPlural: Badge History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/WorkBadgeDefinitionHistory deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/ui-api/object-info/{SOBJECT_API_NAME}: get: tags: - Get - Objects summary: Salesforce Get Object Metadata description: >- Get metadata about a specific object. The response includes metadata describing fields, child relationships, record type, and theme. operationId: GetObjectMetadata parameters: - name: SOBJECT_API_NAME in: path description: '' required: true schema: type: string example: example_value responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 27 Sep 2023 15:54:37 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private ETag: content: text/plain: schema: type: string contentMediaType: text/plain example: '"7b786e93cc2b9142accd7a29facc2474--gzip"' Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/GetObjectMetadata' - examples: - apiName: Account associateEntityType: associateParentEntity: childRelationships: - childObjectApiName: Account fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ChildAccounts - childObjectApiName: AccountBrand fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: AccountBrands - childObjectApiName: AccountCleanInfo fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: AccountCleanInfos - childObjectApiName: AccountContactRole fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: AccountContactRoles - childObjectApiName: AccountFeed fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Feeds - childObjectApiName: AccountHistory fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Histories - childObjectApiName: AccountPartner fieldName: AccountFromId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: AccountPartnersFrom - childObjectApiName: AccountPartner fieldName: AccountToId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: AccountPartnersTo - childObjectApiName: AccountShare fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Shares - childObjectApiName: ActivityHistory fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ActivityHistories - childObjectApiName: Asset fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Assets - childObjectApiName: Asset fieldName: AssetProvidedById junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ProvidedAssets - childObjectApiName: Asset fieldName: AssetServicedById junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ServicedAssets - childObjectApiName: AttachedContentDocument fieldName: LinkedEntityId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: AttachedContentDocuments - childObjectApiName: Attachment fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Attachments - childObjectApiName: AuthorizationFormConsent fieldName: ConsentGiverId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: AuthorizationFormConsents - childObjectApiName: AuthorizationFormConsent fieldName: RelatedRecordId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: RelatedAuthorizationFormConsents - childObjectApiName: Case fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Cases - childObjectApiName: ChannelProgramMember fieldName: PartnerId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ChannelProgramMembers - childObjectApiName: CleanInfo fieldName: TargetEntityId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: CleanInfos - childObjectApiName: CollaborationGroupRecord fieldName: RecordId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: RecordAssociatedGroups - childObjectApiName: CombinedAttachment fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: CombinedAttachments - childObjectApiName: Contact fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Contacts - childObjectApiName: ContactRequest fieldName: WhatId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ContactRequests - childObjectApiName: ContentDocumentLink fieldName: LinkedEntityId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ContentDocumentLinks - childObjectApiName: Contract fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Contracts - childObjectApiName: DelegatedAccount fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: DelegatedAccounts - childObjectApiName: DelegatedAccount fieldName: TargetId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ManagedAccount - childObjectApiName: DuplicateRecordItem fieldName: RecordId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: DuplicateRecordItems - childObjectApiName: EmailMessage fieldName: RelatedToId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Emails - childObjectApiName: EntitySubscription fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: FeedSubscriptionsForEntity - childObjectApiName: Event fieldName: WhatId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Events - childObjectApiName: FlowOrchestrationWorkItem fieldName: RelatedRecordId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: FlowOrchestrationWorkItems - childObjectApiName: NetworkActivityAudit fieldName: ParentEntityId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ParentEntities - childObjectApiName: Note fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Notes - childObjectApiName: NoteAndAttachment fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: NotesAndAttachments - childObjectApiName: OpenActivity fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: OpenActivities - childObjectApiName: Opportunity fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Opportunities - childObjectApiName: OpportunityPartner fieldName: AccountToId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: OpportunityPartnersTo - childObjectApiName: Order fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Orders - childObjectApiName: Partner fieldName: AccountFromId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: PartnersFrom - childObjectApiName: Partner fieldName: AccountToId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: PartnersTo - childObjectApiName: PartnerFundAllocation fieldName: ChannelPartnerId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: PartnerFundAllocations - childObjectApiName: PartnerFundClaim fieldName: ChannelPartnerId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: PartnerFundClaims - childObjectApiName: PartnerFundRequest fieldName: ChannelPartnerId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: PartnerFundRequests - childObjectApiName: PartnerMarketingBudget fieldName: ChannelPartnerId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: PartnerMarketingBudgets - childObjectApiName: ProcessInstance fieldName: TargetObjectId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ProcessInstances - childObjectApiName: ProcessInstanceHistory fieldName: TargetObjectId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ProcessSteps - childObjectApiName: RecordAction fieldName: RecordId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: RecordActions - childObjectApiName: RecordActionHistory fieldName: ParentRecordId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: RecordActionHistories - childObjectApiName: ScorecardAssociation fieldName: TargetEntityId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ScorecardAssociations - childObjectApiName: Task fieldName: WhatId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Tasks - childObjectApiName: TopicAssignment fieldName: EntityId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: TopicAssignments - childObjectApiName: User fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Users createable: true custom: false defaultRecordTypeId: 012000000000000AAA deletable: true dependentFields: {} eTag: 7b786e93cc2b9142accd7a29facc2474 feedEnabled: true fields: AccountNumber: apiName: AccountNumber calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account Number length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true AccountSource: apiName: AccountSource calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account Source length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Active__c: apiName: Active__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Active length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true AnnualRevenue: apiName: AnnualRevenue calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Currency extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Annual Revenue length: 0 nameField: false polymorphicForeignKey: false precision: 18 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true BillingAddress: apiName: BillingAddress calculated: false compound: true compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Address extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing Address length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: false unique: false updateable: false BillingCity: apiName: BillingCity calculated: false compound: false compoundComponentName: City compoundFieldName: BillingAddress controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing City length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true BillingCountry: apiName: BillingCountry calculated: false compound: false compoundComponentName: Country compoundFieldName: BillingAddress controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing Country length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true BillingGeocodeAccuracy: apiName: BillingGeocodeAccuracy calculated: false compound: false compoundComponentName: GeocodeAccuracy compoundFieldName: BillingAddress controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing Geocode Accuracy length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true BillingLatitude: apiName: BillingLatitude calculated: false compound: false compoundComponentName: Latitude compoundFieldName: BillingAddress controllerName: controllingFields: [] createable: true custom: false dataType: Double extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing Latitude length: 0 nameField: false polymorphicForeignKey: false precision: 18 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 15 searchPrefilterable: false sortable: true unique: false updateable: true BillingLongitude: apiName: BillingLongitude calculated: false compound: false compoundComponentName: Longitude compoundFieldName: BillingAddress controllerName: controllingFields: [] createable: true custom: false dataType: Double extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing Longitude length: 0 nameField: false polymorphicForeignKey: false precision: 18 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 15 searchPrefilterable: false sortable: true unique: false updateable: true BillingPostalCode: apiName: BillingPostalCode calculated: false compound: false compoundComponentName: PostalCode compoundFieldName: BillingAddress controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing Zip/Postal Code length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true BillingState: apiName: BillingState calculated: false compound: false compoundComponentName: State compoundFieldName: BillingAddress controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing State/Province length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true BillingStreet: apiName: BillingStreet calculated: false compound: false compoundComponentName: Street compoundFieldName: BillingAddress controllerName: controllingFields: [] createable: true custom: false dataType: TextArea extraTypeInfo: PlainTextArea filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing Street length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ChannelProgramLevelName: apiName: ChannelProgramLevelName calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: false filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Channel Program Level Name length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: false unique: false updateable: false ChannelProgramName: apiName: ChannelProgramName calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: false filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Channel Program Name length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: false unique: false updateable: false CleanStatus: apiName: CleanStatus calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Clean Status length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true CloneSourceId: apiName: CloneSourceId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Clone Source length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false CreatedById: apiName: CreatedById calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Created By ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: User nameFields: - FirstName - LastName - Name relationshipName: CreatedBy required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false CreatedDate: apiName: CreatedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Created Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false CustomerPriority__c: apiName: CustomerPriority__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Customer Priority length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true DandbCompanyId: apiName: DandbCompanyId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: D&B Company ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: DandBCompany nameFields: - Name relationshipName: DandbCompany required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: true Description: apiName: Description calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: TextArea extraTypeInfo: PlainTextArea filterable: false filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account Description length: 32000 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true DunsNumber: apiName: DunsNumber calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: D-U-N-S Number length: 9 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Fax: apiName: Fax calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Phone extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account Fax length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Id: apiName: Id calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Industry: apiName: Industry calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Industry length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true IsCustomerPortal: apiName: IsCustomerPortal calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Customer Portal Account length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true IsDeleted: apiName: IsDeleted calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Deleted length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false IsPartner: apiName: IsPartner calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Partner Account length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Jigsaw: apiName: Jigsaw calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Data.com Key length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true JigsawCompanyId: apiName: JigsawCompanyId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Jigsaw Company ID length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: JigsawCompany required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastActivityDate: apiName: LastActivityDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Date extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Activity length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastModifiedById: apiName: LastModifiedById calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Modified By ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: User nameFields: - FirstName - LastName - Name relationshipName: LastModifiedBy required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastModifiedDate: apiName: LastModifiedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Modified Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastReferencedDate: apiName: LastReferencedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Referenced Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastViewedDate: apiName: LastViewedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Viewed Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false MasterRecordId: apiName: MasterRecordId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Master Record ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Account nameFields: - Name relationshipName: MasterRecord required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false NaicsCode: apiName: NaicsCode calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: NAICS Code length: 8 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true NaicsDesc: apiName: NaicsDesc calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: NAICS Description length: 120 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Name: apiName: Name calculated: false compound: true compoundComponentName: compoundFieldName: Name controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: SwitchablePersonName filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account Name length: 255 nameField: true polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true NumberOfEmployees: apiName: NumberOfEmployees calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Int extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Employees length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true NumberofLocations__c: apiName: NumberofLocations__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: Double extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Number of Locations length: 0 nameField: false polymorphicForeignKey: false precision: 3 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true OwnerId: apiName: OwnerId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Owner ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: User nameFields: - FirstName - LastName - Name relationshipName: Owner required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Ownership: apiName: Ownership calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Ownership length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ParentId: apiName: ParentId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Parent Account ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Account nameFields: - Name relationshipName: Parent required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: true Phone: apiName: Phone calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Phone extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account Phone length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true PhotoUrl: apiName: PhotoUrl calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Url extraTypeInfo: ImageUrl filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Photo URL length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Rating: apiName: Rating calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account Rating length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SLAExpirationDate__c: apiName: SLAExpirationDate__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: Date extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SLA Expiration Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SLASerialNumber__c: apiName: SLASerialNumber__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SLA Serial Number length: 10 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SLA__c: apiName: SLA__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SLA length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ShippingAddress: apiName: ShippingAddress calculated: false compound: true compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Address extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping Address length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: false unique: false updateable: false ShippingCity: apiName: ShippingCity calculated: false compound: false compoundComponentName: City compoundFieldName: ShippingAddress controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping City length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ShippingCountry: apiName: ShippingCountry calculated: false compound: false compoundComponentName: Country compoundFieldName: ShippingAddress controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping Country length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ShippingGeocodeAccuracy: apiName: ShippingGeocodeAccuracy calculated: false compound: false compoundComponentName: GeocodeAccuracy compoundFieldName: ShippingAddress controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping Geocode Accuracy length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ShippingLatitude: apiName: ShippingLatitude calculated: false compound: false compoundComponentName: Latitude compoundFieldName: ShippingAddress controllerName: controllingFields: [] createable: true custom: false dataType: Double extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping Latitude length: 0 nameField: false polymorphicForeignKey: false precision: 18 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 15 searchPrefilterable: false sortable: true unique: false updateable: true ShippingLongitude: apiName: ShippingLongitude calculated: false compound: false compoundComponentName: Longitude compoundFieldName: ShippingAddress controllerName: controllingFields: [] createable: true custom: false dataType: Double extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping Longitude length: 0 nameField: false polymorphicForeignKey: false precision: 18 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 15 searchPrefilterable: false sortable: true unique: false updateable: true ShippingPostalCode: apiName: ShippingPostalCode calculated: false compound: false compoundComponentName: PostalCode compoundFieldName: ShippingAddress controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping Zip/Postal Code length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ShippingState: apiName: ShippingState calculated: false compound: false compoundComponentName: State compoundFieldName: ShippingAddress controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping State/Province length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ShippingStreet: apiName: ShippingStreet calculated: false compound: false compoundComponentName: Street compoundFieldName: ShippingAddress controllerName: controllingFields: [] createable: true custom: false dataType: TextArea extraTypeInfo: PlainTextArea filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping Street length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Sic: apiName: Sic calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SIC Code length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SicDesc: apiName: SicDesc calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SIC Description length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Site: apiName: Site calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account Site length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SystemModstamp: apiName: SystemModstamp calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: System Modstamp length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false TickerSymbol: apiName: TickerSymbol calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Ticker Symbol length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Tradestyle: apiName: Tradestyle calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Tradestyle length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Type: apiName: Type calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account Type length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true UpsellOpportunity__c: apiName: UpsellOpportunity__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Upsell Opportunity length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Website: apiName: Website calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Url extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Website length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true YearStarted: apiName: YearStarted calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Year Started length: 4 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true keyPrefix: '001' label: Account labelPlural: Accounts layoutable: true mruEnabled: true nameFields: - Name queryable: true recordTypeInfos: 012000000000000AAA: available: true defaultRecordTypeMapping: true master: true name: Master recordTypeId: 012000000000000AAA searchable: true themeInfo: color: '5867E8' iconUrl: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_120.png updateable: true contentMediaType: application/json;charset=UTF-8 example: apiName: Account associateEntityType: associateParentEntity: childRelationships: - childObjectApiName: Account fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ChildAccounts - childObjectApiName: AccountBrand fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: AccountBrands - childObjectApiName: AccountCleanInfo fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: AccountCleanInfos - childObjectApiName: AccountContactRole fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: AccountContactRoles - childObjectApiName: AccountFeed fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Feeds - childObjectApiName: AccountHistory fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Histories - childObjectApiName: AccountPartner fieldName: AccountFromId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: AccountPartnersFrom - childObjectApiName: AccountPartner fieldName: AccountToId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: AccountPartnersTo - childObjectApiName: AccountShare fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Shares - childObjectApiName: ActivityHistory fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ActivityHistories - childObjectApiName: Asset fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Assets - childObjectApiName: Asset fieldName: AssetProvidedById junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ProvidedAssets - childObjectApiName: Asset fieldName: AssetServicedById junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ServicedAssets - childObjectApiName: AttachedContentDocument fieldName: LinkedEntityId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: AttachedContentDocuments - childObjectApiName: Attachment fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Attachments - childObjectApiName: AuthorizationFormConsent fieldName: ConsentGiverId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: AuthorizationFormConsents - childObjectApiName: AuthorizationFormConsent fieldName: RelatedRecordId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: RelatedAuthorizationFormConsents - childObjectApiName: Case fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Cases - childObjectApiName: ChannelProgramMember fieldName: PartnerId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ChannelProgramMembers - childObjectApiName: CleanInfo fieldName: TargetEntityId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: CleanInfos - childObjectApiName: CollaborationGroupRecord fieldName: RecordId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: RecordAssociatedGroups - childObjectApiName: CombinedAttachment fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: CombinedAttachments - childObjectApiName: Contact fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Contacts - childObjectApiName: ContactRequest fieldName: WhatId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ContactRequests - childObjectApiName: ContentDocumentLink fieldName: LinkedEntityId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ContentDocumentLinks - childObjectApiName: Contract fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Contracts - childObjectApiName: DelegatedAccount fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: DelegatedAccounts - childObjectApiName: DelegatedAccount fieldName: TargetId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ManagedAccount - childObjectApiName: DuplicateRecordItem fieldName: RecordId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: DuplicateRecordItems - childObjectApiName: EmailMessage fieldName: RelatedToId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Emails - childObjectApiName: EntitySubscription fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: FeedSubscriptionsForEntity - childObjectApiName: Event fieldName: WhatId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Events - childObjectApiName: FlowOrchestrationWorkItem fieldName: RelatedRecordId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: FlowOrchestrationWorkItems - childObjectApiName: NetworkActivityAudit fieldName: ParentEntityId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ParentEntities - childObjectApiName: Note fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Notes - childObjectApiName: NoteAndAttachment fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: NotesAndAttachments - childObjectApiName: OpenActivity fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: OpenActivities - childObjectApiName: Opportunity fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Opportunities - childObjectApiName: OpportunityPartner fieldName: AccountToId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: OpportunityPartnersTo - childObjectApiName: Order fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Orders - childObjectApiName: Partner fieldName: AccountFromId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: PartnersFrom - childObjectApiName: Partner fieldName: AccountToId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: PartnersTo - childObjectApiName: PartnerFundAllocation fieldName: ChannelPartnerId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: PartnerFundAllocations - childObjectApiName: PartnerFundClaim fieldName: ChannelPartnerId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: PartnerFundClaims - childObjectApiName: PartnerFundRequest fieldName: ChannelPartnerId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: PartnerFundRequests - childObjectApiName: PartnerMarketingBudget fieldName: ChannelPartnerId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: PartnerMarketingBudgets - childObjectApiName: ProcessInstance fieldName: TargetObjectId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ProcessInstances - childObjectApiName: ProcessInstanceHistory fieldName: TargetObjectId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ProcessSteps - childObjectApiName: RecordAction fieldName: RecordId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: RecordActions - childObjectApiName: RecordActionHistory fieldName: ParentRecordId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: RecordActionHistories - childObjectApiName: ScorecardAssociation fieldName: TargetEntityId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ScorecardAssociations - childObjectApiName: Task fieldName: WhatId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Tasks - childObjectApiName: TopicAssignment fieldName: EntityId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: TopicAssignments - childObjectApiName: User fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Users createable: true custom: false defaultRecordTypeId: 012000000000000AAA deletable: true dependentFields: {} eTag: 7b786e93cc2b9142accd7a29facc2474 feedEnabled: true fields: AccountNumber: apiName: AccountNumber calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account Number length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true AccountSource: apiName: AccountSource calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account Source length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Active__c: apiName: Active__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Active length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true AnnualRevenue: apiName: AnnualRevenue calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Currency extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Annual Revenue length: 0 nameField: false polymorphicForeignKey: false precision: 18 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true BillingAddress: apiName: BillingAddress calculated: false compound: true compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Address extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing Address length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: false unique: false updateable: false BillingCity: apiName: BillingCity calculated: false compound: false compoundComponentName: City compoundFieldName: BillingAddress controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing City length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true BillingCountry: apiName: BillingCountry calculated: false compound: false compoundComponentName: Country compoundFieldName: BillingAddress controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing Country length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true BillingGeocodeAccuracy: apiName: BillingGeocodeAccuracy calculated: false compound: false compoundComponentName: GeocodeAccuracy compoundFieldName: BillingAddress controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing Geocode Accuracy length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true BillingLatitude: apiName: BillingLatitude calculated: false compound: false compoundComponentName: Latitude compoundFieldName: BillingAddress controllerName: controllingFields: [] createable: true custom: false dataType: Double extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing Latitude length: 0 nameField: false polymorphicForeignKey: false precision: 18 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 15 searchPrefilterable: false sortable: true unique: false updateable: true BillingLongitude: apiName: BillingLongitude calculated: false compound: false compoundComponentName: Longitude compoundFieldName: BillingAddress controllerName: controllingFields: [] createable: true custom: false dataType: Double extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing Longitude length: 0 nameField: false polymorphicForeignKey: false precision: 18 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 15 searchPrefilterable: false sortable: true unique: false updateable: true BillingPostalCode: apiName: BillingPostalCode calculated: false compound: false compoundComponentName: PostalCode compoundFieldName: BillingAddress controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing Zip/Postal Code length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true BillingState: apiName: BillingState calculated: false compound: false compoundComponentName: State compoundFieldName: BillingAddress controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing State/Province length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true BillingStreet: apiName: BillingStreet calculated: false compound: false compoundComponentName: Street compoundFieldName: BillingAddress controllerName: controllingFields: [] createable: true custom: false dataType: TextArea extraTypeInfo: PlainTextArea filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing Street length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ChannelProgramLevelName: apiName: ChannelProgramLevelName calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: false filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Channel Program Level Name length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: false unique: false updateable: false ChannelProgramName: apiName: ChannelProgramName calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: false filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Channel Program Name length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: false unique: false updateable: false CleanStatus: apiName: CleanStatus calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Clean Status length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true CloneSourceId: apiName: CloneSourceId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Clone Source length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false CreatedById: apiName: CreatedById calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Created By ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: User nameFields: - FirstName - LastName - Name relationshipName: CreatedBy required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false CreatedDate: apiName: CreatedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Created Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false CustomerPriority__c: apiName: CustomerPriority__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Customer Priority length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true DandbCompanyId: apiName: DandbCompanyId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: D&B Company ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: DandBCompany nameFields: - Name relationshipName: DandbCompany required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: true Description: apiName: Description calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: TextArea extraTypeInfo: PlainTextArea filterable: false filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account Description length: 32000 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true DunsNumber: apiName: DunsNumber calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: D-U-N-S Number length: 9 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Fax: apiName: Fax calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Phone extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account Fax length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Id: apiName: Id calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Industry: apiName: Industry calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Industry length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true IsCustomerPortal: apiName: IsCustomerPortal calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Customer Portal Account length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true IsDeleted: apiName: IsDeleted calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Deleted length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false IsPartner: apiName: IsPartner calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Partner Account length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Jigsaw: apiName: Jigsaw calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Data.com Key length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true JigsawCompanyId: apiName: JigsawCompanyId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Jigsaw Company ID length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: JigsawCompany required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastActivityDate: apiName: LastActivityDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Date extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Activity length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastModifiedById: apiName: LastModifiedById calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Modified By ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: User nameFields: - FirstName - LastName - Name relationshipName: LastModifiedBy required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastModifiedDate: apiName: LastModifiedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Modified Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastReferencedDate: apiName: LastReferencedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Referenced Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastViewedDate: apiName: LastViewedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Viewed Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false MasterRecordId: apiName: MasterRecordId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Master Record ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Account nameFields: - Name relationshipName: MasterRecord required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false NaicsCode: apiName: NaicsCode calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: NAICS Code length: 8 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true NaicsDesc: apiName: NaicsDesc calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: NAICS Description length: 120 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Name: apiName: Name calculated: false compound: true compoundComponentName: compoundFieldName: Name controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: SwitchablePersonName filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account Name length: 255 nameField: true polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true NumberOfEmployees: apiName: NumberOfEmployees calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Int extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Employees length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true NumberofLocations__c: apiName: NumberofLocations__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: Double extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Number of Locations length: 0 nameField: false polymorphicForeignKey: false precision: 3 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true OwnerId: apiName: OwnerId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Owner ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: User nameFields: - FirstName - LastName - Name relationshipName: Owner required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Ownership: apiName: Ownership calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Ownership length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ParentId: apiName: ParentId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Parent Account ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Account nameFields: - Name relationshipName: Parent required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: true Phone: apiName: Phone calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Phone extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account Phone length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true PhotoUrl: apiName: PhotoUrl calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Url extraTypeInfo: ImageUrl filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Photo URL length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Rating: apiName: Rating calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account Rating length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SLAExpirationDate__c: apiName: SLAExpirationDate__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: Date extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SLA Expiration Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SLASerialNumber__c: apiName: SLASerialNumber__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SLA Serial Number length: 10 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SLA__c: apiName: SLA__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SLA length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ShippingAddress: apiName: ShippingAddress calculated: false compound: true compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Address extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping Address length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: false unique: false updateable: false ShippingCity: apiName: ShippingCity calculated: false compound: false compoundComponentName: City compoundFieldName: ShippingAddress controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping City length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ShippingCountry: apiName: ShippingCountry calculated: false compound: false compoundComponentName: Country compoundFieldName: ShippingAddress controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping Country length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ShippingGeocodeAccuracy: apiName: ShippingGeocodeAccuracy calculated: false compound: false compoundComponentName: GeocodeAccuracy compoundFieldName: ShippingAddress controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping Geocode Accuracy length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ShippingLatitude: apiName: ShippingLatitude calculated: false compound: false compoundComponentName: Latitude compoundFieldName: ShippingAddress controllerName: controllingFields: [] createable: true custom: false dataType: Double extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping Latitude length: 0 nameField: false polymorphicForeignKey: false precision: 18 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 15 searchPrefilterable: false sortable: true unique: false updateable: true ShippingLongitude: apiName: ShippingLongitude calculated: false compound: false compoundComponentName: Longitude compoundFieldName: ShippingAddress controllerName: controllingFields: [] createable: true custom: false dataType: Double extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping Longitude length: 0 nameField: false polymorphicForeignKey: false precision: 18 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 15 searchPrefilterable: false sortable: true unique: false updateable: true ShippingPostalCode: apiName: ShippingPostalCode calculated: false compound: false compoundComponentName: PostalCode compoundFieldName: ShippingAddress controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping Zip/Postal Code length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ShippingState: apiName: ShippingState calculated: false compound: false compoundComponentName: State compoundFieldName: ShippingAddress controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping State/Province length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ShippingStreet: apiName: ShippingStreet calculated: false compound: false compoundComponentName: Street compoundFieldName: ShippingAddress controllerName: controllingFields: [] createable: true custom: false dataType: TextArea extraTypeInfo: PlainTextArea filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping Street length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Sic: apiName: Sic calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SIC Code length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SicDesc: apiName: SicDesc calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SIC Description length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Site: apiName: Site calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account Site length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SystemModstamp: apiName: SystemModstamp calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: System Modstamp length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false TickerSymbol: apiName: TickerSymbol calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Ticker Symbol length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Tradestyle: apiName: Tradestyle calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Tradestyle length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Type: apiName: Type calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account Type length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true UpsellOpportunity__c: apiName: UpsellOpportunity__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Upsell Opportunity length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Website: apiName: Website calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Url extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Website length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true YearStarted: apiName: YearStarted calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Year Started length: 4 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true keyPrefix: '001' label: Account labelPlural: Accounts layoutable: true mruEnabled: true nameFields: - Name queryable: true recordTypeInfos: 012000000000000AAA: available: true defaultRecordTypeMapping: true master: true name: Master recordTypeId: 012000000000000AAA searchable: true themeInfo: color: '5867E8' iconUrl: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_120.png updateable: true deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/ui-api/object-info/{SOBJECT_API_NAME}/picklist-values/{RECORD_TYPE_ID}/{FIELD_API_NAME}: get: tags: - Field - Get - Values summary: Salesforce Get Values for a Picklist Field description: >- Get metadata about a specific object. The response includes metadata describing fields, child relationships, record type, and theme. operationId: GetValuesforaPicklistField parameters: - name: SOBJECT_API_NAME in: path description: Object API Name required: true schema: type: string examples: - Account example: example_value - name: RECORD_TYPE_ID in: path description: >- Record type Id. Use `012000000000000AAA` as default when there are no custom record types. required: true schema: type: string examples: - 012000000000000AAA example: '500123' - name: FIELD_API_NAME in: path description: Field API Name (optional) required: true schema: type: string examples: - Industry example: example_value responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Tue, 04 May 2021 09:32:34 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=31536002; includeSubDomains X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private ETag: content: text/plain: schema: type: string contentMediaType: text/plain example: '"bee3e6401e143e18332a17639061c5ff--gzip"' Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/GetValuesforaPicklistField' - examples: - controllerValues: {} defaultValue: eTag: bee3e6401e143e18332a17639061c5ff url: >- /services/data/v51.0/ui-api/object-info/Account/picklist-values/012000000000000AAA/Industry values: - attributes: label: Agriculture validFor: [] value: Agriculture - attributes: label: Apparel validFor: [] value: Apparel - attributes: label: Banking validFor: [] value: Banking - attributes: label: Biotechnology validFor: [] value: Biotechnology - attributes: label: Chemicals validFor: [] value: Chemicals - attributes: label: Communications validFor: [] value: Communications - attributes: label: Construction validFor: [] value: Construction - attributes: label: Consulting validFor: [] value: Consulting - attributes: label: Education validFor: [] value: Education - attributes: label: Electronics validFor: [] value: Electronics - attributes: label: Energy validFor: [] value: Energy - attributes: label: Engineering validFor: [] value: Engineering - attributes: label: Entertainment validFor: [] value: Entertainment - attributes: label: Environmental validFor: [] value: Environmental - attributes: label: Finance validFor: [] value: Finance - attributes: label: Food & Beverage validFor: [] value: Food & Beverage - attributes: label: Government validFor: [] value: Government - attributes: label: Healthcare validFor: [] value: Healthcare - attributes: label: Hospitality validFor: [] value: Hospitality - attributes: label: Insurance validFor: [] value: Insurance - attributes: label: Machinery validFor: [] value: Machinery - attributes: label: Manufacturing validFor: [] value: Manufacturing - attributes: label: Media validFor: [] value: Media - attributes: label: Not For Profit validFor: [] value: Not For Profit - attributes: label: Recreation validFor: [] value: Recreation - attributes: label: Retail validFor: [] value: Retail - attributes: label: Shipping validFor: [] value: Shipping - attributes: label: Technology validFor: [] value: Technology - attributes: label: Telecommunications validFor: [] value: Telecommunications - attributes: label: Transportation validFor: [] value: Transportation - attributes: label: Utilities validFor: [] value: Utilities - attributes: label: Other validFor: [] value: Other contentMediaType: application/json;charset=UTF-8 example: controllerValues: {} defaultValue: eTag: bee3e6401e143e18332a17639061c5ff url: >- /services/data/v51.0/ui-api/object-info/Account/picklist-values/012000000000000AAA/Industry values: - attributes: label: Agriculture validFor: [] value: Agriculture - attributes: label: Apparel validFor: [] value: Apparel - attributes: label: Banking validFor: [] value: Banking - attributes: label: Biotechnology validFor: [] value: Biotechnology - attributes: label: Chemicals validFor: [] value: Chemicals - attributes: label: Communications validFor: [] value: Communications - attributes: label: Construction validFor: [] value: Construction - attributes: label: Consulting validFor: [] value: Consulting - attributes: label: Education validFor: [] value: Education - attributes: label: Electronics validFor: [] value: Electronics - attributes: label: Energy validFor: [] value: Energy - attributes: label: Engineering validFor: [] value: Engineering - attributes: label: Entertainment validFor: [] value: Entertainment - attributes: label: Environmental validFor: [] value: Environmental - attributes: label: Finance validFor: [] value: Finance - attributes: label: Food & Beverage validFor: [] value: Food & Beverage - attributes: label: Government validFor: [] value: Government - attributes: label: Healthcare validFor: [] value: Healthcare - attributes: label: Hospitality validFor: [] value: Hospitality - attributes: label: Insurance validFor: [] value: Insurance - attributes: label: Machinery validFor: [] value: Machinery - attributes: label: Manufacturing validFor: [] value: Manufacturing - attributes: label: Media validFor: [] value: Media - attributes: label: Not For Profit validFor: [] value: Not For Profit - attributes: label: Recreation validFor: [] value: Recreation - attributes: label: Retail validFor: [] value: Retail - attributes: label: Shipping validFor: [] value: Shipping - attributes: label: Technology validFor: [] value: Technology - attributes: label: Telecommunications validFor: [] value: Telecommunications - attributes: label: Transportation validFor: [] value: Transportation - attributes: label: Utilities validFor: [] value: Utilities - attributes: label: Other validFor: [] value: Other deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/ui-api/object-info/{SOBJECT_API_NAME}/picklist-values/{RECORD_TYPE_ID}: get: tags: - All - Get - Record - Type - Values summary: Salesforce Get Values for All Picklist Fields of a Record Type description: >- Get metadata about a specific object. The response includes metadata describing fields, child relationships, record type, and theme. operationId: GetValuesforAllPicklistFieldsofaRecordType parameters: - name: SOBJECT_API_NAME in: path description: Object API Name required: true schema: type: string example: example_value - name: RECORD_TYPE_ID in: path description: >- Record type Id. Use `012000000000000AAA` as default when there are no custom record types. required: true schema: type: string example: '500123' responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 27 Sep 2023 15:55:22 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private ETag: content: text/plain: schema: type: string contentMediaType: text/plain example: '"ef21257ca08f8952ff154f57dc775336--gzip"' Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: >- #/components/schemas/GetValuesforAllPicklistFieldsofaRecordType - examples: - eTag: ef21257ca08f8952ff154f57dc775336 picklistFieldValues: CleanStatus: controllerValues: {} defaultValue: eTag: bd535d2876948d8bb91fad409b69e359 url: >- /services/data/v58.0/ui-api/object-info/Contact/picklist-values/012000000000000AAA/CleanStatus values: - attributes: label: In Sync validFor: [] value: Matched - attributes: label: Different validFor: [] value: Different - attributes: label: Reviewed validFor: [] value: Acknowledged - attributes: label: Not Found validFor: [] value: NotFound - attributes: label: Inactive validFor: [] value: Inactive - attributes: label: Not Compared validFor: [] value: Pending - attributes: label: Select Match validFor: [] value: SelectMatch - attributes: label: Skipped validFor: [] value: Skipped LeadSource: controllerValues: {} defaultValue: eTag: edb5c49da4ff7bfe2cf15ecae67a306c url: >- /services/data/v58.0/ui-api/object-info/Contact/picklist-values/012000000000000AAA/LeadSource values: - attributes: label: Web validFor: [] value: Web - attributes: label: Phone Inquiry validFor: [] value: Phone Inquiry - attributes: label: Partner Referral validFor: [] value: Partner Referral - attributes: label: Purchased List validFor: [] value: Purchased List - attributes: label: Other validFor: [] value: Other Level__c: controllerValues: {} defaultValue: eTag: ffef8adfed014c3057fd14658f5202c4 url: >- /services/data/v58.0/ui-api/object-info/Contact/picklist-values/012000000000000AAA/Level__c values: - attributes: label: Secondary validFor: [] value: Secondary - attributes: label: Tertiary validFor: [] value: Tertiary - attributes: label: Primary validFor: [] value: Primary MailingGeocodeAccuracy: controllerValues: {} defaultValue: eTag: 776a2f5e98c411bafb45081e39a6f1ec url: >- /services/data/v58.0/ui-api/object-info/Contact/picklist-values/012000000000000AAA/MailingGeocodeAccuracy values: - attributes: label: Address validFor: [] value: Address - attributes: label: NearAddress validFor: [] value: NearAddress - attributes: label: Block validFor: [] value: Block - attributes: label: Street validFor: [] value: Street - attributes: label: ExtendedZip validFor: [] value: ExtendedZip - attributes: label: Zip validFor: [] value: Zip - attributes: label: Neighborhood validFor: [] value: Neighborhood - attributes: label: City validFor: [] value: City - attributes: label: County validFor: [] value: County - attributes: label: State validFor: [] value: State - attributes: label: Unknown validFor: [] value: Unknown OtherGeocodeAccuracy: controllerValues: {} defaultValue: eTag: 776a2f5e98c411bafb45081e39a6f1ec url: >- /services/data/v58.0/ui-api/object-info/Contact/picklist-values/012000000000000AAA/OtherGeocodeAccuracy values: - attributes: label: Address validFor: [] value: Address - attributes: label: NearAddress validFor: [] value: NearAddress - attributes: label: Block validFor: [] value: Block - attributes: label: Street validFor: [] value: Street - attributes: label: ExtendedZip validFor: [] value: ExtendedZip - attributes: label: Zip validFor: [] value: Zip - attributes: label: Neighborhood validFor: [] value: Neighborhood - attributes: label: City validFor: [] value: City - attributes: label: County validFor: [] value: County - attributes: label: State validFor: [] value: State - attributes: label: Unknown validFor: [] value: Unknown Salutation: controllerValues: {} defaultValue: eTag: 2de0a04925bdf8e3c70fe1177129a63f url: >- /services/data/v58.0/ui-api/object-info/Contact/picklist-values/012000000000000AAA/Salutation values: - attributes: label: Mr. validFor: [] value: Mr. - attributes: label: Ms. validFor: [] value: Ms. - attributes: label: Mrs. validFor: [] value: Mrs. - attributes: label: Dr. validFor: [] value: Dr. - attributes: label: Prof. validFor: [] value: Prof. contentMediaType: application/json;charset=UTF-8 example: eTag: ef21257ca08f8952ff154f57dc775336 picklistFieldValues: CleanStatus: controllerValues: {} defaultValue: eTag: bd535d2876948d8bb91fad409b69e359 url: >- /services/data/v58.0/ui-api/object-info/Contact/picklist-values/012000000000000AAA/CleanStatus values: - attributes: label: In Sync validFor: [] value: Matched - attributes: label: Different validFor: [] value: Different - attributes: label: Reviewed validFor: [] value: Acknowledged - attributes: label: Not Found validFor: [] value: NotFound - attributes: label: Inactive validFor: [] value: Inactive - attributes: label: Not Compared validFor: [] value: Pending - attributes: label: Select Match validFor: [] value: SelectMatch - attributes: label: Skipped validFor: [] value: Skipped LeadSource: controllerValues: {} defaultValue: eTag: edb5c49da4ff7bfe2cf15ecae67a306c url: >- /services/data/v58.0/ui-api/object-info/Contact/picklist-values/012000000000000AAA/LeadSource values: - attributes: label: Web validFor: [] value: Web - attributes: label: Phone Inquiry validFor: [] value: Phone Inquiry - attributes: label: Partner Referral validFor: [] value: Partner Referral - attributes: label: Purchased List validFor: [] value: Purchased List - attributes: label: Other validFor: [] value: Other Level__c: controllerValues: {} defaultValue: eTag: ffef8adfed014c3057fd14658f5202c4 url: >- /services/data/v58.0/ui-api/object-info/Contact/picklist-values/012000000000000AAA/Level__c values: - attributes: label: Secondary validFor: [] value: Secondary - attributes: label: Tertiary validFor: [] value: Tertiary - attributes: label: Primary validFor: [] value: Primary MailingGeocodeAccuracy: controllerValues: {} defaultValue: eTag: 776a2f5e98c411bafb45081e39a6f1ec url: >- /services/data/v58.0/ui-api/object-info/Contact/picklist-values/012000000000000AAA/MailingGeocodeAccuracy values: - attributes: label: Address validFor: [] value: Address - attributes: label: NearAddress validFor: [] value: NearAddress - attributes: label: Block validFor: [] value: Block - attributes: label: Street validFor: [] value: Street - attributes: label: ExtendedZip validFor: [] value: ExtendedZip - attributes: label: Zip validFor: [] value: Zip - attributes: label: Neighborhood validFor: [] value: Neighborhood - attributes: label: City validFor: [] value: City - attributes: label: County validFor: [] value: County - attributes: label: State validFor: [] value: State - attributes: label: Unknown validFor: [] value: Unknown OtherGeocodeAccuracy: controllerValues: {} defaultValue: eTag: 776a2f5e98c411bafb45081e39a6f1ec url: >- /services/data/v58.0/ui-api/object-info/Contact/picklist-values/012000000000000AAA/OtherGeocodeAccuracy values: - attributes: label: Address validFor: [] value: Address - attributes: label: NearAddress validFor: [] value: NearAddress - attributes: label: Block validFor: [] value: Block - attributes: label: Street validFor: [] value: Street - attributes: label: ExtendedZip validFor: [] value: ExtendedZip - attributes: label: Zip validFor: [] value: Zip - attributes: label: Neighborhood validFor: [] value: Neighborhood - attributes: label: City validFor: [] value: City - attributes: label: County validFor: [] value: County - attributes: label: State validFor: [] value: State - attributes: label: Unknown validFor: [] value: Unknown Salutation: controllerValues: {} defaultValue: eTag: 2de0a04925bdf8e3c70fe1177129a63f url: >- /services/data/v58.0/ui-api/object-info/Contact/picklist-values/012000000000000AAA/Salutation values: - attributes: label: Mr. validFor: [] value: Mr. - attributes: label: Ms. validFor: [] value: Ms. - attributes: label: Mrs. validFor: [] value: Mrs. - attributes: label: Dr. validFor: [] value: Dr. - attributes: label: Prof. validFor: [] value: Prof. deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/ui-api/records/{RECORD_ID}/child-relationships/{RELATIONSHIP_NAME}: get: tags: - Child - Get - Records summary: Salesforce Get Child Records description: >- Get child records for a specified record and child relationship name. Relationships are connections between records. On a record detail page, each record in a related list has a child relationship to the parent record. operationId: GetChildRecords parameters: - name: RECORD_ID in: path description: Record ID required: true schema: type: string example: '500123' - name: RELATIONSHIP_NAME in: path description: API name of the relationship required: true schema: type: string example: example_value responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 27 Sep 2023 15:57:35 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/GetChildRecords' - examples: - count: 1 currentPageToken: >- 1;5;001B000000UnQ2wIAF;Contacts;Contact.Id,Contact.Name; currentPageUrl: >- /services/data/v58.0/ui-api/records/001B000000UnQ2wIAF/child-relationships/Contacts?fields=Contact.Id%2CContact.Name&page=1&pageSize=5 nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: records: - apiName: Contact childRelationships: {} eTag: c3d33add9008aed557a1efa68173aa9b fields: AccountId: displayValue: value: 001B000000UnQ2wIAF Id: displayValue: value: 003B00000097MToIAM Name: displayValue: value: Jack Rogers id: 003B00000097MToIAM lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2017-08-18T14:46:22.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2017-08-18T14:46:22.000Z' weakEtag: 1503067582000 contentMediaType: application/json;charset=UTF-8 example: count: 1 currentPageToken: 1;5;001B000000UnQ2wIAF;Contacts;Contact.Id,Contact.Name; currentPageUrl: >- /services/data/v58.0/ui-api/records/001B000000UnQ2wIAF/child-relationships/Contacts?fields=Contact.Id%2CContact.Name&page=1&pageSize=5 nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: records: - apiName: Contact childRelationships: {} eTag: c3d33add9008aed557a1efa68173aa9b fields: AccountId: displayValue: value: 001B000000UnQ2wIAF Id: displayValue: value: 003B00000097MToIAM Name: displayValue: value: Jack Rogers id: 003B00000097MToIAM lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2017-08-18T14:46:22.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2017-08-18T14:46:22.000Z' weakEtag: 1503067582000 deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/ui-api/records/{RECORD_ID}: get: tags: - Get - Record summary: Salesforce Get a Record description: Get a record’s data. operationId: GetaRecord parameters: - name: RECORD_ID in: path description: '' required: true schema: type: string example: '500123' responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 27 Sep 2023 15:58:57 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private ETag: content: text/plain: schema: type: string contentMediaType: text/plain example: '"8897eb60da3dea171b0d755821bf2c36--gzip"' Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/GetaRecord' - examples: - apiName: Account childRelationships: {} eTag: 8897eb60da3dea171b0d755821bf2c36 fields: Name: displayValue: value: Burlington Textiles Corp of America Rating: displayValue: Warm value: Warm id: 001B000000UnQ2wIAF lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2017-08-18T14:46:22.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2017-08-18T14:46:22.000Z' weakEtag: 1503067582000 contentMediaType: application/json;charset=UTF-8 example: apiName: Account childRelationships: {} eTag: 8897eb60da3dea171b0d755821bf2c36 fields: Name: displayValue: value: Burlington Textiles Corp of America Rating: displayValue: Warm value: Warm id: 001B000000UnQ2wIAF lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2017-08-18T14:46:22.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2017-08-18T14:46:22.000Z' weakEtag: 1503067582000 deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK patch: tags: - Record - Update summary: Salesforce Update a Record description: >- Update a record's data. User Interface API enforces Salesforce validation rules. If a validation rule fails, the response is an Error with Output. When you make a PATCH request to update a record, make sure that the record hasn’t changed since the user started editing it. To find out whether it’s safe to save a record, pass the If-Modified-Since HTTP header in the request. As of API version 43.0, if you pass read-only fields in a request body, the response is an Error with Output. operationId: UpdateaRecord parameters: - name: RECORD_ID in: path description: Record ID required: true schema: type: string example: '500123' requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/UpdateaRecordRequest' - examples: - allowSaveOnDuplicate: false fields: FieldAPIName: FieldValue contentMediaType: application/json example: allowSaveOnDuplicate: false fields: FieldAPIName: FieldValue required: true responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 27 Sep 2023 16:04:41 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private ETag: content: text/plain: schema: type: string contentMediaType: text/plain example: '"1be6f040e46732e79a0999d6fea9fe7d"' Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/UpdateaRecord' - examples: - apiName: Account childRelationships: {} eTag: 1be6f040e46732e79a0999d6fea9fe7d fields: AccountNumber: displayValue: value: Active__c: displayValue: value: AnnualRevenue: displayValue: value: BillingCity: displayValue: value: BillingCountry: displayValue: value: BillingPostalCode: displayValue: value: BillingState: displayValue: value: BillingStreet: displayValue: value: CreatedBy: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cc07f7ef1b08ddbd75074c69512dd388 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2023-02-02T10:32:12.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-09-27T15:47:51.000Z' weakEtag: 1695829671000 CreatedById: displayValue: value: 005B0000003TOI6IAO CreatedDate: displayValue: 27/09/2023 18:01 value: '2023-09-27T16:01:14.000Z' CustomerPriority__c: displayValue: value: Description: displayValue: value: Fax: displayValue: value: Industry: displayValue: value: LastModifiedBy: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cc07f7ef1b08ddbd75074c69512dd388 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2023-02-02T10:32:12.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-09-27T15:47:51.000Z' weakEtag: 1695829671000 LastModifiedById: displayValue: value: 005B0000003TOI6IAO LastModifiedDate: displayValue: 27/09/2023 18:04 value: '2023-09-27T16:04:41.000Z' Name: displayValue: value: My Renamed Account NumberOfEmployees: displayValue: value: NumberofLocations__c: displayValue: value: Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cc07f7ef1b08ddbd75074c69512dd388 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2023-02-02T10:32:12.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-09-27T15:47:51.000Z' weakEtag: 1695829671000 OwnerId: displayValue: value: 005B0000003TOI6IAO Ownership: displayValue: value: Parent: displayValue: value: ParentId: displayValue: value: Phone: displayValue: value: Rating: displayValue: value: SLAExpirationDate__c: displayValue: value: SLASerialNumber__c: displayValue: value: SLA__c: displayValue: value: ShippingCity: displayValue: value: ShippingCountry: displayValue: value: ShippingPostalCode: displayValue: value: ShippingState: displayValue: value: ShippingStreet: displayValue: value: Sic: displayValue: value: Site: displayValue: value: TickerSymbol: displayValue: value: Type: displayValue: value: UpsellOpportunity__c: displayValue: value: Website: displayValue: value: id: 0011Q00002Z2P5jQAF lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2023-09-27T16:04:41.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2023-09-27T16:04:41.000Z' weakEtag: 1695830681000 contentMediaType: application/json;charset=UTF-8 example: apiName: Account childRelationships: {} eTag: 1be6f040e46732e79a0999d6fea9fe7d fields: AccountNumber: displayValue: value: Active__c: displayValue: value: AnnualRevenue: displayValue: value: BillingCity: displayValue: value: BillingCountry: displayValue: value: BillingPostalCode: displayValue: value: BillingState: displayValue: value: BillingStreet: displayValue: value: CreatedBy: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cc07f7ef1b08ddbd75074c69512dd388 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2023-02-02T10:32:12.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-09-27T15:47:51.000Z' weakEtag: 1695829671000 CreatedById: displayValue: value: 005B0000003TOI6IAO CreatedDate: displayValue: 27/09/2023 18:01 value: '2023-09-27T16:01:14.000Z' CustomerPriority__c: displayValue: value: Description: displayValue: value: Fax: displayValue: value: Industry: displayValue: value: LastModifiedBy: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cc07f7ef1b08ddbd75074c69512dd388 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2023-02-02T10:32:12.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-09-27T15:47:51.000Z' weakEtag: 1695829671000 LastModifiedById: displayValue: value: 005B0000003TOI6IAO LastModifiedDate: displayValue: 27/09/2023 18:04 value: '2023-09-27T16:04:41.000Z' Name: displayValue: value: My Renamed Account NumberOfEmployees: displayValue: value: NumberofLocations__c: displayValue: value: Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cc07f7ef1b08ddbd75074c69512dd388 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2023-02-02T10:32:12.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-09-27T15:47:51.000Z' weakEtag: 1695829671000 OwnerId: displayValue: value: 005B0000003TOI6IAO Ownership: displayValue: value: Parent: displayValue: value: ParentId: displayValue: value: Phone: displayValue: value: Rating: displayValue: value: SLAExpirationDate__c: displayValue: value: SLASerialNumber__c: displayValue: value: SLA__c: displayValue: value: ShippingCity: displayValue: value: ShippingCountry: displayValue: value: ShippingPostalCode: displayValue: value: ShippingState: displayValue: value: ShippingStreet: displayValue: value: Sic: displayValue: value: Site: displayValue: value: TickerSymbol: displayValue: value: Type: displayValue: value: UpsellOpportunity__c: displayValue: value: Website: displayValue: value: id: 0011Q00002Z2P5jQAF lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2023-09-27T16:04:41.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2023-09-27T16:04:41.000Z' weakEtag: 1695830681000 deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK delete: tags: - Deletes - Record summary: Salesforce Delete a Record description: >- Update a record's data. User Interface API enforces Salesforce validation rules. If a validation rule fails, the response is an Error with Output. When you make a PATCH request to update a record, make sure that the record hasn’t changed since the user started editing it. To find out whether it’s safe to save a record, pass the If-Modified-Since HTTP header in the request. As of API version 43.0, if you pass read-only fields in a request body, the response is an Error with Output. operationId: DeleteaRecord parameters: - name: RECORD_ID in: path description: Record ID required: true schema: type: string example: '500123' responses: '204': description: No Content headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 27 Sep 2023 16:05:14 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block Content-Security-Policy: content: text/plain: schema: type: string contentMediaType: text/plain example: upgrade-insecure-requests X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private content: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/ui-api/records/batch/{RECORD_IDS}: get: tags: - Batch - Get - Records summary: Salesforce Get a Batch of Records description: Get data for a batch of records. operationId: GetaBatchofRecords parameters: - name: RECORD_IDS in: path description: Comma-separated list of record IDs required: true schema: type: string example: example_value responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 27 Sep 2023 16:00:23 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/GetaBatchofRecords' - examples: - hasErrors: false results: - result: apiName: Account childRelationships: {} eTag: 8aae3f4fbe3055e68df1d4c8a989a671 fields: AnnualRevenue: displayValue: $350,000,000 value: 350000000 BillingCity: displayValue: value: Burlington BillingCountry: displayValue: value: USA BillingPostalCode: displayValue: value: '27215' BillingState: displayValue: value: NC BillingStreet: displayValue: value: 525 S. Lexington Ave Industry: displayValue: Apparel value: Apparel Name: displayValue: value: Burlington Textiles Corp of America Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cc07f7ef1b08ddbd75074c69512dd388 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2023-02-02T10:32:12.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-09-27T15:47:51.000Z' weakEtag: 1695829671000 OwnerId: displayValue: value: 005B0000003TOI6IAO Parent: displayValue: value: ParentId: displayValue: value: Phone: displayValue: value: (336) 222-7000 PhotoUrl: displayValue: value: /services/images/photo/001B000000UnQ2wIAF Site: displayValue: value: Type: displayValue: Customer - Direct value: Customer - Direct Website: displayValue: value: www.burlington.com id: 001B000000UnQ2wIAF lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2017-08-18T14:46:22.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2017-08-18T14:46:22.000Z' weakEtag: 1503067582000 statusCode: 200 - result: apiName: Account childRelationships: {} eTag: a825a67a87fa16446d82b4948e5643c7 fields: AnnualRevenue: displayValue: $50,000,000 value: 50000000 BillingCity: displayValue: value: Lawrence BillingCountry: displayValue: value: USA BillingPostalCode: displayValue: value: '66045' BillingState: displayValue: value: KS BillingStreet: displayValue: value: 1301 Hoch Drive Industry: displayValue: Consulting value: Consulting Name: displayValue: value: Dickenson plc Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cc07f7ef1b08ddbd75074c69512dd388 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2023-02-02T10:32:12.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-09-27T15:47:51.000Z' weakEtag: 1695829671000 OwnerId: displayValue: value: 005B0000003TOI6IAO Parent: displayValue: value: ParentId: displayValue: value: Phone: displayValue: value: (785) 241-6200 PhotoUrl: displayValue: value: /services/images/photo/001B000000UnQ2yIAF Site: displayValue: value: Type: displayValue: Customer - Channel value: Customer - Channel Website: displayValue: value: dickenson-consulting.com id: 001B000000UnQ2yIAF lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2017-08-18T14:46:22.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2017-08-18T14:46:22.000Z' weakEtag: 1503067582000 statusCode: 200 contentMediaType: application/json;charset=UTF-8 example: hasErrors: false results: - result: apiName: Account childRelationships: {} eTag: 8aae3f4fbe3055e68df1d4c8a989a671 fields: AnnualRevenue: displayValue: $350,000,000 value: 350000000 BillingCity: displayValue: value: Burlington BillingCountry: displayValue: value: USA BillingPostalCode: displayValue: value: '27215' BillingState: displayValue: value: NC BillingStreet: displayValue: value: 525 S. Lexington Ave Industry: displayValue: Apparel value: Apparel Name: displayValue: value: Burlington Textiles Corp of America Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cc07f7ef1b08ddbd75074c69512dd388 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2023-02-02T10:32:12.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-09-27T15:47:51.000Z' weakEtag: 1695829671000 OwnerId: displayValue: value: 005B0000003TOI6IAO Parent: displayValue: value: ParentId: displayValue: value: Phone: displayValue: value: (336) 222-7000 PhotoUrl: displayValue: value: /services/images/photo/001B000000UnQ2wIAF Site: displayValue: value: Type: displayValue: Customer - Direct value: Customer - Direct Website: displayValue: value: www.burlington.com id: 001B000000UnQ2wIAF lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2017-08-18T14:46:22.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2017-08-18T14:46:22.000Z' weakEtag: 1503067582000 statusCode: 200 - result: apiName: Account childRelationships: {} eTag: a825a67a87fa16446d82b4948e5643c7 fields: AnnualRevenue: displayValue: $50,000,000 value: 50000000 BillingCity: displayValue: value: Lawrence BillingCountry: displayValue: value: USA BillingPostalCode: displayValue: value: '66045' BillingState: displayValue: value: KS BillingStreet: displayValue: value: 1301 Hoch Drive Industry: displayValue: Consulting value: Consulting Name: displayValue: value: Dickenson plc Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cc07f7ef1b08ddbd75074c69512dd388 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2023-02-02T10:32:12.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-09-27T15:47:51.000Z' weakEtag: 1695829671000 OwnerId: displayValue: value: 005B0000003TOI6IAO Parent: displayValue: value: ParentId: displayValue: value: Phone: displayValue: value: (785) 241-6200 PhotoUrl: displayValue: value: /services/images/photo/001B000000UnQ2yIAF Site: displayValue: value: Type: displayValue: Customer - Channel value: Customer - Channel Website: displayValue: value: dickenson-consulting.com id: 001B000000UnQ2yIAF lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2017-08-18T14:46:22.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2017-08-18T14:46:22.000Z' weakEtag: 1503067582000 statusCode: 200 deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/ui-api/records: post: tags: - Create - Record summary: Salesforce Create a Record description: >- Create a record. First, make a request to the Clone Record Default or Create Record Default resources to get the default metadata and data for the record. As of API version 43.0, if you pass read-only fields in a request body, the response is an Error with Output. operationId: CreateaRecord parameters: [] requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/CreateaRecordRequest' - examples: - allowSaveOnDuplicate: false apiName: Object fields: FieldAPIName: FieldValue contentMediaType: application/json example: allowSaveOnDuplicate: false apiName: Object fields: FieldAPIName: FieldValue required: true responses: '201': description: Created headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 27 Sep 2023 16:01:13 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private ETag: content: text/plain: schema: type: string contentMediaType: text/plain example: '"057ae0953591faed613c5e19a086f7a8--gzip"' Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/CreateaRecord' - examples: - apiName: Account childRelationships: {} eTag: 057ae0953591faed613c5e19a086f7a8 fields: AccountNumber: displayValue: value: Active__c: displayValue: value: AnnualRevenue: displayValue: value: BillingCity: displayValue: value: BillingCountry: displayValue: value: BillingPostalCode: displayValue: value: BillingState: displayValue: value: BillingStreet: displayValue: value: CreatedBy: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cc07f7ef1b08ddbd75074c69512dd388 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2023-02-02T10:32:12.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-09-27T15:47:51.000Z' weakEtag: 1695829671000 CreatedById: displayValue: value: 005B0000003TOI6IAO CreatedDate: displayValue: 27/09/2023 18:01 value: '2023-09-27T16:01:14.000Z' CustomerPriority__c: displayValue: value: Description: displayValue: value: Fax: displayValue: value: Industry: displayValue: value: LastModifiedBy: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cc07f7ef1b08ddbd75074c69512dd388 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2023-02-02T10:32:12.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-09-27T15:47:51.000Z' weakEtag: 1695829671000 LastModifiedById: displayValue: value: 005B0000003TOI6IAO LastModifiedDate: displayValue: 27/09/2023 18:01 value: '2023-09-27T16:01:14.000Z' Name: displayValue: value: My New Account NumberOfEmployees: displayValue: value: NumberofLocations__c: displayValue: value: Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cc07f7ef1b08ddbd75074c69512dd388 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2023-02-02T10:32:12.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-09-27T15:47:51.000Z' weakEtag: 1695829671000 OwnerId: displayValue: value: 005B0000003TOI6IAO Ownership: displayValue: value: Parent: displayValue: value: ParentId: displayValue: value: Phone: displayValue: value: Rating: displayValue: value: SLAExpirationDate__c: displayValue: value: SLASerialNumber__c: displayValue: value: SLA__c: displayValue: value: ShippingCity: displayValue: value: ShippingCountry: displayValue: value: ShippingPostalCode: displayValue: value: ShippingState: displayValue: value: ShippingStreet: displayValue: value: Sic: displayValue: value: Site: displayValue: value: TickerSymbol: displayValue: value: Type: displayValue: value: UpsellOpportunity__c: displayValue: value: Website: displayValue: value: id: 0011Q00002Z2P5jQAF lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2023-09-27T16:01:14.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2023-09-27T16:01:14.000Z' weakEtag: 1695830474000 contentMediaType: application/json;charset=UTF-8 example: apiName: Account childRelationships: {} eTag: 057ae0953591faed613c5e19a086f7a8 fields: AccountNumber: displayValue: value: Active__c: displayValue: value: AnnualRevenue: displayValue: value: BillingCity: displayValue: value: BillingCountry: displayValue: value: BillingPostalCode: displayValue: value: BillingState: displayValue: value: BillingStreet: displayValue: value: CreatedBy: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cc07f7ef1b08ddbd75074c69512dd388 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2023-02-02T10:32:12.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-09-27T15:47:51.000Z' weakEtag: 1695829671000 CreatedById: displayValue: value: 005B0000003TOI6IAO CreatedDate: displayValue: 27/09/2023 18:01 value: '2023-09-27T16:01:14.000Z' CustomerPriority__c: displayValue: value: Description: displayValue: value: Fax: displayValue: value: Industry: displayValue: value: LastModifiedBy: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cc07f7ef1b08ddbd75074c69512dd388 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2023-02-02T10:32:12.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-09-27T15:47:51.000Z' weakEtag: 1695829671000 LastModifiedById: displayValue: value: 005B0000003TOI6IAO LastModifiedDate: displayValue: 27/09/2023 18:01 value: '2023-09-27T16:01:14.000Z' Name: displayValue: value: My New Account NumberOfEmployees: displayValue: value: NumberofLocations__c: displayValue: value: Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cc07f7ef1b08ddbd75074c69512dd388 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2023-02-02T10:32:12.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-09-27T15:47:51.000Z' weakEtag: 1695829671000 OwnerId: displayValue: value: 005B0000003TOI6IAO Ownership: displayValue: value: Parent: displayValue: value: ParentId: displayValue: value: Phone: displayValue: value: Rating: displayValue: value: SLAExpirationDate__c: displayValue: value: SLASerialNumber__c: displayValue: value: SLA__c: displayValue: value: ShippingCity: displayValue: value: ShippingCountry: displayValue: value: ShippingPostalCode: displayValue: value: ShippingState: displayValue: value: ShippingStreet: displayValue: value: Sic: displayValue: value: Site: displayValue: value: TickerSymbol: displayValue: value: Type: displayValue: value: UpsellOpportunity__c: displayValue: value: Website: displayValue: value: id: 0011Q00002Z2P5jQAF lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2023-09-27T16:01:14.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2023-09-27T16:01:14.000Z' weakEtag: 1695830474000 deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/ui-api/record-defaults/clone/{RECORD_ID}: get: tags: - Clone - Get - Record - Values summary: Salesforce Get Default Values to Clone a Record description: >- Get the default layout information, object information, and data for cloning a record. After getting the default values, make a request to POST /ui-api/records to create the record. The response contains the default field values for a record cloned from the record specified in , optionally of the specified recordTypeId. It also contains the corresponding layout information for edit mode. In the Salesforce user interface, an admin with “Customize Application” permission can mark a field as required in a layout. When you’re building UI, to determine which fields to mark as required in a layout for edit mode, use the RecordLayoutItem.required property. The response contains object metadata for the object type of the record specified in and for any nested objects. For example, /ui-api/record-defaults/clone/001d000000AtfRIAAZ is a request to clone an Account record. It returns object metadata for Account and User, because the OwnerId field on the Account object contains a reference to the User object. operationId: GetDefaultValuestoCloneaRecord parameters: - name: RECORD_ID in: path description: Record ID required: true schema: type: string example: '500123' responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 27 Sep 2023 16:01:45 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: $ref: '#/components/schemas/GetDefaultValuestoCloneaRecord' examples: Getdefaultvaluestoclonearecord200Example: summary: Default GetDefaultValuestoCloneaRecord 200 response x-microcks-default: true value: layout: eTag: example_value id: abc123 layoutType: example_value mode: example_value objectApiName: example_value recordTypeId: '500123' saveOptions: - {} sections: - {} objectInfos: {} record: apiName: example_value childRelationships: example_value eTag: example_value id: abc123 lastModifiedById: '500123' lastModifiedDate: example_value recordTypeId: '500123' recordTypeInfo: example_value systemModstamp: example_value weakEtag: 10 deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/ui-api/record-defaults/create/{SOBJECT_API_NAME}: get: tags: - Create - Get - Record - Values summary: Salesforce Get Default Values to Create a Record description: >- Get the default values for fields for a new record of a specified object and optional record type. After getting the default values, make a request to POST /ui-api/records to create the record. The response contains the default field values for the Full layout type for a new record of the object type specified in . It also contains the corresponding layout for create mode. In the Salesforce user interface, an admin with “Customize Application” permission can mark a field as required in a layout. When you’re building UI, to determine which fields to mark as required in a layout for create mode, use the RecordLayoutItem.required property. The response contains object metadata for the object specified in and for any nested objects. For example, a request to /ui-api/record-defaults/create/Account returns object metadata for Account and User, because the OwnerId field on the Account object contains a reference to the User object. operationId: GetDefaultValuestoCreateaRecord parameters: - name: SOBJECT_API_NAME in: path description: sObject API name required: true schema: type: string example: example_value responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 27 Sep 2023 16:03:34 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: $ref: '#/components/schemas/GetDefaultValuestoCreateaRecord' examples: Getdefaultvaluestocreatearecord200Example: summary: Default GetDefaultValuestoCreateaRecord 200 response x-microcks-default: true value: layout: eTag: example_value id: abc123 layoutType: example_value mode: example_value objectApiName: example_value recordTypeId: '500123' saveOptions: - {} sections: - {} objectInfos: {} record: apiName: example_value childRelationships: example_value eTag: example_value id: abc123 lastModifiedById: '500123' lastModifiedDate: example_value recordTypeId: '500123' recordTypeInfo: example_value systemModstamp: example_value weakEtag: 10 deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/ui-api/lookups/{SOBJECT_API_NAME}/{FIELD_API_NAME}: get: tags: - Field - Get - Suggestions summary: Salesforce Get Lookup Field Suggestions description: >- When a user edits a lookup field, use this resource to search for and display suggestions. You can search for most recently used matches, for matching names, or for any match in a searchable field. You can also specify lookup filter bindings for dependent lookups. operationId: GetLookupFieldSuggestions parameters: - name: SOBJECT_API_NAME in: path description: sObject API name required: true schema: type: string example: example_value - name: FIELD_API_NAME in: path description: Field API name required: true schema: type: string example: example_value responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 27 Sep 2023 16:07:13 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/GetLookupFieldSuggestions' - examples: - lookupResults: Account: count: 2 currentPageToken: currentPageUrl: >- /services/data/v58.0/ui-api/lookups/Contact/AccountId/Account?searchType=Recent&page=1&pageSize=25 nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: records: - apiName: Account childRelationships: {} eTag: 610a250509b966f2eb376b3205824a8b fields: Id: displayValue: value: 001B000000UnQ2yIAF Name: displayValue: value: Dickenson plc Site: displayValue: value: id: 001B000000UnQ2yIAF lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2017-08-18T14:46:22.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2017-08-18T14:46:22.000Z' weakEtag: 1503067582000 - apiName: Account childRelationships: {} eTag: d0b7cec61a65e01f88b2596dea75cbd8 fields: Id: displayValue: value: 001B000000UnQ2wIAF Name: displayValue: value: Burlington Textiles Corp of America Site: displayValue: value: id: 001B000000UnQ2wIAF lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2017-08-18T14:46:22.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2017-08-18T14:46:22.000Z' weakEtag: 1503067582000 metadata: Account: fieldApiName: objectApiName: secondaryField: Site targetInfo: {} contentMediaType: application/json;charset=UTF-8 example: lookupResults: Account: count: 2 currentPageToken: currentPageUrl: >- /services/data/v58.0/ui-api/lookups/Contact/AccountId/Account?searchType=Recent&page=1&pageSize=25 nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: records: - apiName: Account childRelationships: {} eTag: 610a250509b966f2eb376b3205824a8b fields: Id: displayValue: value: 001B000000UnQ2yIAF Name: displayValue: value: Dickenson plc Site: displayValue: value: id: 001B000000UnQ2yIAF lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2017-08-18T14:46:22.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2017-08-18T14:46:22.000Z' weakEtag: 1503067582000 - apiName: Account childRelationships: {} eTag: d0b7cec61a65e01f88b2596dea75cbd8 fields: Id: displayValue: value: 001B000000UnQ2wIAF Name: displayValue: value: Burlington Textiles Corp of America Site: displayValue: value: id: 001B000000UnQ2wIAF lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2017-08-18T14:46:22.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2017-08-18T14:46:22.000Z' weakEtag: 1503067582000 metadata: Account: fieldApiName: objectApiName: secondaryField: Site targetInfo: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/ui-api/lookups/{SOBJECT_API_NAME}/{FIELD_API_NAME}/{TARGET_API_NAME}: get: tags: - Field - Get - Objects - Suggestions summary: Salesforce Get Lookup Field Suggestions for a Specified Object description: >- When a user edits a lookup field, use this resource to search for and display suggestions for a specified object. You can search for most recently used matches, for matching names, or for any match in a searchable field. You can also specify lookup filter bindings for dependent lookups. operationId: GetLookupFieldSuggestionsforaSpecifiedObject parameters: - name: SOBJECT_API_NAME in: path description: The API name of a source object. required: true schema: type: string example: example_value - name: FIELD_API_NAME in: path description: The API name of a lookup field on the source object. required: true schema: type: string example: example_value - name: TARGET_API_NAME in: path description: The API name of the target (lookup) object. required: true schema: type: string example: example_value responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Wed, 27 Sep 2023 16:10:07 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-XSS-Protection: content: text/plain: schema: type: string contentMediaType: text/plain example: 1; mode=block X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: >- #/components/schemas/GetLookupFieldSuggestionsforaSpecifiedObject - examples: - count: 2 currentPageToken: currentPageUrl: >- /services/data/v58.0/ui-api/lookups/Contact/AccountId/Account?searchType=Recent&page=1&pageSize=25 nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: records: - apiName: Account childRelationships: {} eTag: 2316c5f4a27ac31b407d91aab610b281 fields: DisambiguationField: displayValue: value: Id: displayValue: value: 001B000000UnQ2yIAF Name: displayValue: value: Dickenson plc Site: displayValue: value: id: 001B000000UnQ2yIAF lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2017-08-18T14:46:22.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2017-08-18T14:46:22.000Z' weakEtag: 1503067582000 - apiName: Account childRelationships: {} eTag: cb5afb4494d9c9f6f81ab0e5f214585c fields: DisambiguationField: displayValue: value: Id: displayValue: value: 001B000000UnQ2wIAF Name: displayValue: value: Burlington Textiles Corp of America Site: displayValue: value: id: 001B000000UnQ2wIAF lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2017-08-18T14:46:22.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2017-08-18T14:46:22.000Z' weakEtag: 1503067582000 contentMediaType: application/json;charset=UTF-8 example: count: 2 currentPageToken: currentPageUrl: >- /services/data/v58.0/ui-api/lookups/Contact/AccountId/Account?searchType=Recent&page=1&pageSize=25 nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: records: - apiName: Account childRelationships: {} eTag: 2316c5f4a27ac31b407d91aab610b281 fields: DisambiguationField: displayValue: value: Id: displayValue: value: 001B000000UnQ2yIAF Name: displayValue: value: Dickenson plc Site: displayValue: value: id: 001B000000UnQ2yIAF lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2017-08-18T14:46:22.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2017-08-18T14:46:22.000Z' weakEtag: 1503067582000 - apiName: Account childRelationships: {} eTag: cb5afb4494d9c9f6f81ab0e5f214585c fields: DisambiguationField: displayValue: value: Id: displayValue: value: 001B000000UnQ2wIAF Name: displayValue: value: Burlington Textiles Corp of America Site: displayValue: value: id: 001B000000UnQ2wIAF lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2017-08-18T14:46:22.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2017-08-18T14:46:22.000Z' weakEtag: 1503067582000 deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/ui-api/favorites: post: tags: - Create - Favorite summary: Salesforce Create a Favorite description: Create a Favorite operationId: CreateaFavorite parameters: [] requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/CreateaFavoriteRequest' - examples: - name: Favorite Name sortOrder: 1 target: API Name or ID targetType: ListView | ObjectHome | Record | Tab contentMediaType: application/json example: name: Favorite Name sortOrder: 1 target: API Name or ID targetType: ListView | ObjectHome | Record | Tab required: true responses: '201': description: Created headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Fri, 06 Oct 2023 10:03:31 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/CreateaFavoritelistview' - examples: - accessCount: 1 iconColor: '5867E8' iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_120.png id: 0MV4H0000004qIeWAI lastAccessDate: '2023-10-06T10:03:32.000Z' name: AllAccountsListView objectType: Account sortOrder: 1 subtitle: Accounts target: 00B58000002ssinEAA targetType: ListView contentMediaType: application/json;charset=UTF-8 example: accessCount: 1 iconColor: '5867E8' iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_120.png id: 0MV4H0000004qIeWAI lastAccessDate: '2023-10-06T10:03:32.000Z' name: AllAccountsListView objectType: Account sortOrder: 1 subtitle: Accounts target: 00B58000002ssinEAA targetType: ListView deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK get: tags: - Get summary: Salesforce Get Favorites description: Get all of a user’s favorites. operationId: GetFavorites parameters: [] responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Fri, 06 Oct 2023 10:03:55 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/GetFavorites' - examples: - favorites: - accessCount: 1 iconColor: '5867E8' iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_120.png id: 0MV4H0000004qIeWAI lastAccessDate: '2023-10-06T10:03:32.000Z' name: AllAccountsListView objectType: Account sortOrder: 1 subtitle: Accounts target: 00B58000002ssinEAA targetType: ListView contentMediaType: application/json;charset=UTF-8 example: favorites: - accessCount: 1 iconColor: '5867E8' iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_120.png id: 0MV4H0000004qIeWAI lastAccessDate: '2023-10-06T10:03:32.000Z' name: AllAccountsListView objectType: Account sortOrder: 1 subtitle: Accounts target: 00B58000002ssinEAA targetType: ListView deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/ui-api/favorites/{FAVORITE_ID}: get: tags: - Favorite - Get summary: Salesforce Get a Favorite description: Get a favorite. operationId: GetaFavorite parameters: - name: FAVORITE_ID in: path description: The ID of a favorite required: true schema: type: string example: '500123' responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Fri, 06 Oct 2023 10:04:41 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/GetaFavorite' - examples: - accessCount: 1 iconColor: '5867E8' iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_120.png id: 0MV4H0000004qIeWAI lastAccessDate: '2023-10-06T10:03:32.000Z' name: AllAccountsListView objectType: Account sortOrder: 1 subtitle: Accounts target: 00B58000002ssinEAA targetType: ListView contentMediaType: application/json;charset=UTF-8 example: accessCount: 1 iconColor: '5867E8' iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_120.png id: 0MV4H0000004qIeWAI lastAccessDate: '2023-10-06T10:03:32.000Z' name: AllAccountsListView objectType: Account sortOrder: 1 subtitle: Accounts target: 00B58000002ssinEAA targetType: ListView deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK patch: tags: - Favorite - Update summary: Salesforce Update a Favorite description: Update a Favorite operationId: UpdateaFavorite parameters: - name: FAVORITE_ID in: path description: The ID of a favorite required: true schema: type: string example: '500123' requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/UpdateaFavoriteRequest' - examples: - name: Red Accounts sortOrder: 1 contentMediaType: application/json example: name: Red Accounts sortOrder: 1 required: true responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Fri, 06 Oct 2023 10:06:33 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/UpdateaFavorite' - examples: - accessCount: 1 iconColor: '5867E8' iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_120.png id: 0MV4H0000004qIeWAI lastAccessDate: '2023-10-06T10:03:32.000Z' name: AllAccountsListViewFavoriteRenamed objectType: Account sortOrder: 1 subtitle: Accounts target: 00B58000002ssinEAA targetType: ListView contentMediaType: application/json;charset=UTF-8 example: accessCount: 1 iconColor: '5867E8' iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_120.png id: 0MV4H0000004qIeWAI lastAccessDate: '2023-10-06T10:03:32.000Z' name: AllAccountsListViewFavoriteRenamed objectType: Account sortOrder: 1 subtitle: Accounts target: 00B58000002ssinEAA targetType: ListView deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK delete: tags: - Deletes - Favorite summary: Salesforce Delete a Favorite description: Get a favorite. operationId: DeleteaFavorite parameters: - name: FAVORITE_ID in: path description: The ID of a favorite required: true schema: type: string example: '500123' responses: '204': description: No Content headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Fri, 06 Oct 2023 10:09:14 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff Content-Security-Policy: content: text/plain: schema: type: string contentMediaType: text/plain example: upgrade-insecure-requests X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private content: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/ui-api/favorites/batch: put: tags: - Batch - Update summary: Salesforce Update a Batch of Favorites description: >- Update all favorites at once. The sort order is updated to the given relative ordering. Any favorites missing from the request body are deleted. operationId: UpdateaBatchofFavorites parameters: [] requestBody: description: '' content: application/json: schema: allOf: - $ref: '#/components/schemas/UpdateaBatchofFavoritesRequest' - examples: - favorites: - id: 0MVR00000004DhnOAE name: Q4 Perf contentMediaType: application/json example: favorites: - id: 0MVR00000004DhnOAE name: Q4 Perf required: true responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Fri, 06 Oct 2023 10:07:35 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/UpdateaBatchofFavorites' - examples: - favorites: - accessCount: 1 iconColor: '5867E8' iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_120.png id: 0MV4H0000004qIeWAI lastAccessDate: '2023-10-06T10:03:32.000Z' name: RenamedAllAcountsListView objectType: Account sortOrder: 1 subtitle: Accounts target: 00B58000002ssinEAA targetType: ListView contentMediaType: application/json;charset=UTF-8 example: favorites: - accessCount: 1 iconColor: '5867E8' iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_120.png id: 0MV4H0000004qIeWAI lastAccessDate: '2023-10-06T10:03:32.000Z' name: RenamedAllAcountsListView objectType: Account sortOrder: 1 subtitle: Accounts target: 00B58000002ssinEAA targetType: ListView deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/ui-api/favorites/{FAVORITE_ID}/usage: patch: tags: - Favorite - Update - Usage summary: Salesforce Update Usage of a Favorite description: >- Update the usage of an individual favorite, for example, the last time and number of times the favorite was clicked. operationId: UpdateUsageofaFavorite parameters: - name: FAVORITE_ID in: path description: The ID of a favorite required: true schema: type: string example: '500123' responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Fri, 06 Oct 2023 10:09:03 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/UpdateUsageofaFavorite' - examples: - accessCount: 2 iconColor: '5867E8' iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_120.png id: 0MV4H0000004qIeWAI lastAccessDate: '2023-10-06T10:09:03.304Z' name: RenamedAllAcountsListView objectType: Account sortOrder: 1 subtitle: Accounts target: 00B58000002ssinEAA targetType: ListView contentMediaType: application/json;charset=UTF-8 example: accessCount: 2 iconColor: '5867E8' iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_120.png id: 0MV4H0000004qIeWAI lastAccessDate: '2023-10-06T10:09:03.304Z' name: RenamedAllAcountsListView objectType: Account sortOrder: 1 subtitle: Accounts target: 00B58000002ssinEAA targetType: ListView deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/ui-api/apps: get: tags: - Applications - Get summary: Salesforce Get Apps description: >- Get metadata for all the apps a user has access to. Metadata for the selected app includes tabs on the app’s navigation bar. Metadata for other apps doesn’t include tabs on the navigation bar. operationId: GetApps parameters: - name: formFactor in: query description: >- The form factor for each app that the user has access to (`Large`, `Medium` or `Small`) required: true style: form explode: true schema: type: string examples: - Large example: example_value responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Fri, 06 Oct 2023 09:27:10 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private ETag: content: text/plain: schema: type: string contentMediaType: text/plain example: '"619eb2f896db72ff9a0823ed6a551e66--gzip"' Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/GetApps' - examples: - apps: - appId: 06m58000000fBK2AAM description: >- Manage your sales process with accounts, leads, opportunities, and more developerName: LightningSales eTag: e288a1d753c535d52fd11b047cd74482 formFactors: - Small - Medium - Large headerColor: '#0070D2' iconUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/SalesCloud/icon.png isNavAutoTempTabsDisabled: false isNavPersonalizationDisabled: false isNavTabPersistenceDisabled: false label: Sales logoUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/SalesCloud/logo.png mobileStartUrl: navItems: - availableInClassic: true availableInLightning: true color: FF538A content: >- https://pozil-dev-ed.my.salesforce.com/lightning/page/home custom: false developerName: standard-home iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/home_120.png id: itemType: Standard label: Home objectApiName: Home objectLabel: objectLabelPlural: pageReference: attributes: pageName: home state: {} type: standard__namedPage standardType: Home - availableInClassic: true availableInLightning: true color: FF5D2D content: https://pozil-dev-ed.my.salesforce.com/006/o custom: false developerName: standard-Opportunity iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/opportunity_120.png id: itemType: Entity label: Opportunities objectApiName: Opportunity objectLabel: Opportunity objectLabelPlural: Opportunities pageReference: attributes: objectApiName: Opportunity actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: FF5D2D content: https://pozil-dev-ed.my.salesforce.com/00Q/o custom: false developerName: standard-Lead iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/lead_120.png id: itemType: Entity label: Leads objectApiName: Lead objectLabel: Lead objectLabelPlural: Leads pageReference: attributes: objectApiName: Lead actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: false availableInLightning: true color: 3BA755 content: https://pozil-dev-ed.my.salesforce.com/00T/o custom: false developerName: standard-Task iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/task_120.png id: itemType: Standard label: Tasks objectApiName: Task objectLabel: Task objectLabelPlural: Tasks pageReference: attributes: objectApiName: Task actionName: home state: {} type: standard__objectPage standardType: Tasks - availableInClassic: true availableInLightning: true color: '939393' content: >- https://pozil-dev-ed.my.salesforce.com/_ui/core/chatter/files/FileTabPage custom: false developerName: standard-File iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/file_120.png id: itemType: Entity label: Files objectApiName: ContentDocument objectLabel: objectLabelPlural: pageReference: attributes: objectApiName: ContentDocument actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: '5867E8' content: https://pozil-dev-ed.my.salesforce.com/001/o custom: false developerName: standard-Account iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_120.png id: itemType: Entity label: Accounts objectApiName: Account objectLabel: Account objectLabelPlural: Accounts pageReference: attributes: objectApiName: Account actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: '5867E8' content: https://pozil-dev-ed.my.salesforce.com/003/o custom: false developerName: standard-Contact iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/contact_120.png id: itemType: Entity label: Contacts objectApiName: Contact objectLabel: Contact objectLabelPlural: Contacts pageReference: attributes: objectApiName: Contact actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: FF538A content: https://pozil-dev-ed.my.salesforce.com/01Z/o custom: false developerName: standard-Dashboard iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/dashboard_120.png id: itemType: Standard label: Dashboards objectApiName: Dashboard objectLabel: Dashboard objectLabelPlural: Dashboards pageReference: attributes: objectApiName: Dashboard actionName: home state: {} type: standard__objectPage standardType: Dashboards - availableInClassic: true availableInLightning: true color: 06A59A content: https://pozil-dev-ed.my.salesforce.com/00O/o custom: false developerName: standard-report iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/report_120.png id: itemType: Standard label: Reports objectApiName: Report objectLabel: Report objectLabelPlural: Reports pageReference: attributes: objectApiName: Report actionName: home state: {} type: standard__objectPage standardType: Reports - availableInClassic: false availableInLightning: true color: 1B96FF content: custom: false developerName: standard-Feed iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/feed_120.png id: itemType: Standard label: Chatter objectApiName: Feed objectLabel: objectLabelPlural: pageReference: attributes: pageName: chatter state: {} type: standard__namedPage standardType: Feed - availableInClassic: true availableInLightning: true color: 1B96FF content: >- https://pozil-dev-ed.my.salesforce.com/_ui/core/chatter/groups/GroupListPage custom: false developerName: standard-CollaborationGroup iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/groups_120.png id: itemType: Standard label: Groups objectApiName: CollaborationGroup objectLabel: Group objectLabelPlural: Groups pageReference: attributes: objectApiName: CollaborationGroup actionName: home state: {} type: standard__objectPage standardType: Groups - availableInClassic: false availableInLightning: true color: FF538A content: https://pozil-dev-ed.my.salesforce.com/00U/o custom: false developerName: standard-Event iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/event_120.png id: itemType: Standard label: Calendar objectApiName: Event objectLabel: Event objectLabelPlural: Events pageReference: attributes: objectApiName: Event actionName: home state: {} type: standard__objectPage standardType: Events - availableInClassic: true availableInLightning: true color: 1B96FF content: >- https://pozil-dev-ed.my.salesforce.com/_ui/core/chatter/people/PeopleListPage custom: false developerName: standard-OtherUserProfile iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/user_120.png id: itemType: Standard label: People objectApiName: User objectLabel: User objectLabelPlural: People pageReference: attributes: objectApiName: User actionName: home state: {} type: standard__objectPage standardType: People - availableInClassic: true availableInLightning: true color: FF5D2D content: https://pozil-dev-ed.my.salesforce.com/500/o custom: false developerName: standard-Case iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/case_120.png id: itemType: Entity label: Cases objectApiName: Case objectLabel: Case objectLabelPlural: Cases pageReference: attributes: objectApiName: Case actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: 3BA755 content: >- https://pozil-dev-ed.my.salesforce.com/_ui/sales/forecasting/ui/ForecastingTabPage custom: false developerName: standard-Forecasting3 iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/forecasts_120.png id: itemType: Standard label: Forecasts objectApiName: Forecasting3 objectLabel: objectLabelPlural: pageReference: attributes: pageName: forecasting state: {} type: standard__namedPage standardType: Forecasting3 selected: true startUrl: >- https://pozil-dev-ed.my.salesforce.com/home/home.jsp?tsid=02u58000000fBK2 type: Lightning userNavItems: [] - appId: 06m58000000dRxBAAU description: >- Manage customer service with accounts, contacts, cases, and more developerName: Service eTag: b8b5942342984b0853126b7a7558e130 formFactors: - Large headerColor: '#0070D2' iconUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/ServiceCloud/icon.png isNavAutoTempTabsDisabled: false isNavPersonalizationDisabled: false isNavTabPersistenceDisabled: false label: Service logoUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/ServiceCloud/logo.png mobileStartUrl: navItems: [] selected: false startUrl: >- https://pozil-dev-ed.my.salesforce.com/home/home.jsp?tsid=02u58000000dRxB type: Classic userNavItems: [] - appId: 06m58000000dRxCAAU description: Best-in-class on-demand marketing automation developerName: Marketing eTag: ffedb4e8ce9ada4905724cd13c74955e formFactors: - Large headerColor: '#0070D2' iconUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/MarketingCloud/icon.png isNavAutoTempTabsDisabled: false isNavPersonalizationDisabled: false isNavTabPersistenceDisabled: false label: Marketing logoUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/MarketingCloud/logo.png mobileStartUrl: navItems: [] selected: false startUrl: >- https://pozil-dev-ed.my.salesforce.com/home/home.jsp?tsid=02u58000000dRxC type: Classic userNavItems: [] - appId: 06m58000000dRx2AAE description: Salesforce CRM Communities developerName: Community eTag: 12283186521e9dff9e4440f9f83b7a4d formFactors: - Large headerColor: '#0070D2' iconUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/Community/icon.png isNavAutoTempTabsDisabled: false isNavPersonalizationDisabled: false isNavTabPersistenceDisabled: false label: Community logoUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/Community/logo.png mobileStartUrl: navItems: [] selected: false startUrl: >- https://pozil-dev-ed.my.salesforce.com/home/home.jsp?tsid=02u58000000dRx2 type: Classic userNavItems: [] - appId: 06m58000000dRx3AAE description: >- Build pixel-perfect, data-rich websites using the drag-and-drop Site.com application, and manage content and published sites. developerName: Sites eTag: 0f40c4dd79d400146f97c64b1cf7d865 formFactors: - Large headerColor: '#0070D2' iconUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/Sites/icon.png isNavAutoTempTabsDisabled: false isNavPersonalizationDisabled: false isNavTabPersistenceDisabled: false label: Site.com logoUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/app/00D58000000arpq/02u58000000dRx3AAE mobileStartUrl: navItems: [] selected: false startUrl: >- https://pozil-dev-ed.my.salesforce.com/home/home.jsp?tsid=02u58000000dRx3 type: Classic userNavItems: [] - appId: 06m58000000dRx4AAE description: >- The Salesforce Chatter social network, including profiles and feeds developerName: Chatter eTag: 95c37da7ec4eee2c9a96d53d7ce9b89b formFactors: - Large headerColor: '#0070D2' iconUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/Chatter/icon.png isNavAutoTempTabsDisabled: false isNavPersonalizationDisabled: false isNavTabPersistenceDisabled: false label: Salesforce Chatter logoUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Standard/feed/logo.svg mobileStartUrl: navItems: [] selected: false startUrl: >- https://pozil-dev-ed.my.salesforce.com/home/home.jsp?tsid=02u58000000dRx4 type: Classic userNavItems: [] - appId: 06m58000000dRx9AAE description: Salesforce CRM Content developerName: Content eTag: edeb0edc6c931a4b3ebb4c08bc7c4c21 formFactors: - Large headerColor: '#0070D2' iconUrl: isNavAutoTempTabsDisabled: false isNavPersonalizationDisabled: false isNavTabPersistenceDisabled: false label: Content logoUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Standard/file/logo.svg mobileStartUrl: navItems: [] selected: false startUrl: >- https://pozil-dev-ed.my.salesforce.com/home/home.jsp?tsid=02u58000000dRx9 type: Classic userNavItems: [] - appId: 06m58000000dRx1AAE description: App Launcher tabs developerName: AppLauncher eTag: 932216e29355c05453a6ed51a3d24902 formFactors: - Large headerColor: '#0070D2' iconUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/AppLauncher/icon.png isNavAutoTempTabsDisabled: false isNavPersonalizationDisabled: false isNavTabPersistenceDisabled: false label: App Launcher logoUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/AppLauncher/logo.png mobileStartUrl: navItems: [] selected: false startUrl: >- https://pozil-dev-ed.my.salesforce.com/app/mgmt/applauncher/appLauncher.apexp?tsid=02u58000000dRx1 type: Classic userNavItems: [] - appId: 06m58000000MpvkAAC description: >- View Adoption and Usage Metrics for Lightning Experience developerName: LightningInstrumentation eTag: 69788cb0de5d4b5b483fced75461fa88 formFactors: - Large headerColor: '#0070D2' iconUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/LightningInstrumentation/icon.png isNavAutoTempTabsDisabled: false isNavPersonalizationDisabled: false isNavTabPersistenceDisabled: false label: Lightning Usage App logoUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/LightningInstrumentation/logo.png mobileStartUrl: navItems: [] selected: false startUrl: >- https://pozil-dev-ed.my.salesforce.com/home/home.jsp?tsid=02u58000000Mpvk type: Lightning userNavItems: [] - appId: 06m4H000000QTsDQAW description: >- Manage your store's products, catalogs, and pricebooks. developerName: Commerce eTag: ba22fc3752be6c8c3f96bf7bd50a4e55 formFactors: - Large headerColor: '#0070D2' iconUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/Commerce/icon.png isNavAutoTempTabsDisabled: false isNavPersonalizationDisabled: false isNavTabPersistenceDisabled: false label: Commerce logoUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/Commerce/logo.png mobileStartUrl: navItems: [] selected: false startUrl: >- https://pozil-dev-ed.my.salesforce.com/home/home.jsp?tsid=02u4H000000QTsD type: Lightning userNavItems: [] eTag: 619eb2f896db72ff9a0823ed6a551e66 contentMediaType: application/json;charset=UTF-8 example: apps: - appId: 06m58000000fBK2AAM description: >- Manage your sales process with accounts, leads, opportunities, and more developerName: LightningSales eTag: e288a1d753c535d52fd11b047cd74482 formFactors: - Small - Medium - Large headerColor: '#0070D2' iconUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/SalesCloud/icon.png isNavAutoTempTabsDisabled: false isNavPersonalizationDisabled: false isNavTabPersistenceDisabled: false label: Sales logoUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/SalesCloud/logo.png mobileStartUrl: navItems: - availableInClassic: true availableInLightning: true color: FF538A content: >- https://pozil-dev-ed.my.salesforce.com/lightning/page/home custom: false developerName: standard-home iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/home_120.png id: itemType: Standard label: Home objectApiName: Home objectLabel: objectLabelPlural: pageReference: attributes: pageName: home state: {} type: standard__namedPage standardType: Home - availableInClassic: true availableInLightning: true color: FF5D2D content: https://pozil-dev-ed.my.salesforce.com/006/o custom: false developerName: standard-Opportunity iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/opportunity_120.png id: itemType: Entity label: Opportunities objectApiName: Opportunity objectLabel: Opportunity objectLabelPlural: Opportunities pageReference: attributes: objectApiName: Opportunity actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: FF5D2D content: https://pozil-dev-ed.my.salesforce.com/00Q/o custom: false developerName: standard-Lead iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/lead_120.png id: itemType: Entity label: Leads objectApiName: Lead objectLabel: Lead objectLabelPlural: Leads pageReference: attributes: objectApiName: Lead actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: false availableInLightning: true color: 3BA755 content: https://pozil-dev-ed.my.salesforce.com/00T/o custom: false developerName: standard-Task iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/task_120.png id: itemType: Standard label: Tasks objectApiName: Task objectLabel: Task objectLabelPlural: Tasks pageReference: attributes: objectApiName: Task actionName: home state: {} type: standard__objectPage standardType: Tasks - availableInClassic: true availableInLightning: true color: '939393' content: >- https://pozil-dev-ed.my.salesforce.com/_ui/core/chatter/files/FileTabPage custom: false developerName: standard-File iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/file_120.png id: itemType: Entity label: Files objectApiName: ContentDocument objectLabel: objectLabelPlural: pageReference: attributes: objectApiName: ContentDocument actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: '5867E8' content: https://pozil-dev-ed.my.salesforce.com/001/o custom: false developerName: standard-Account iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_120.png id: itemType: Entity label: Accounts objectApiName: Account objectLabel: Account objectLabelPlural: Accounts pageReference: attributes: objectApiName: Account actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: '5867E8' content: https://pozil-dev-ed.my.salesforce.com/003/o custom: false developerName: standard-Contact iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/contact_120.png id: itemType: Entity label: Contacts objectApiName: Contact objectLabel: Contact objectLabelPlural: Contacts pageReference: attributes: objectApiName: Contact actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: FF538A content: https://pozil-dev-ed.my.salesforce.com/01Z/o custom: false developerName: standard-Dashboard iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/dashboard_120.png id: itemType: Standard label: Dashboards objectApiName: Dashboard objectLabel: Dashboard objectLabelPlural: Dashboards pageReference: attributes: objectApiName: Dashboard actionName: home state: {} type: standard__objectPage standardType: Dashboards - availableInClassic: true availableInLightning: true color: 06A59A content: https://pozil-dev-ed.my.salesforce.com/00O/o custom: false developerName: standard-report iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/report_120.png id: itemType: Standard label: Reports objectApiName: Report objectLabel: Report objectLabelPlural: Reports pageReference: attributes: objectApiName: Report actionName: home state: {} type: standard__objectPage standardType: Reports - availableInClassic: false availableInLightning: true color: 1B96FF content: custom: false developerName: standard-Feed iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/feed_120.png id: itemType: Standard label: Chatter objectApiName: Feed objectLabel: objectLabelPlural: pageReference: attributes: pageName: chatter state: {} type: standard__namedPage standardType: Feed - availableInClassic: true availableInLightning: true color: 1B96FF content: >- https://pozil-dev-ed.my.salesforce.com/_ui/core/chatter/groups/GroupListPage custom: false developerName: standard-CollaborationGroup iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/groups_120.png id: itemType: Standard label: Groups objectApiName: CollaborationGroup objectLabel: Group objectLabelPlural: Groups pageReference: attributes: objectApiName: CollaborationGroup actionName: home state: {} type: standard__objectPage standardType: Groups - availableInClassic: false availableInLightning: true color: FF538A content: https://pozil-dev-ed.my.salesforce.com/00U/o custom: false developerName: standard-Event iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/event_120.png id: itemType: Standard label: Calendar objectApiName: Event objectLabel: Event objectLabelPlural: Events pageReference: attributes: objectApiName: Event actionName: home state: {} type: standard__objectPage standardType: Events - availableInClassic: true availableInLightning: true color: 1B96FF content: >- https://pozil-dev-ed.my.salesforce.com/_ui/core/chatter/people/PeopleListPage custom: false developerName: standard-OtherUserProfile iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/user_120.png id: itemType: Standard label: People objectApiName: User objectLabel: User objectLabelPlural: People pageReference: attributes: objectApiName: User actionName: home state: {} type: standard__objectPage standardType: People - availableInClassic: true availableInLightning: true color: FF5D2D content: https://pozil-dev-ed.my.salesforce.com/500/o custom: false developerName: standard-Case iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/case_120.png id: itemType: Entity label: Cases objectApiName: Case objectLabel: Case objectLabelPlural: Cases pageReference: attributes: objectApiName: Case actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: 3BA755 content: >- https://pozil-dev-ed.my.salesforce.com/_ui/sales/forecasting/ui/ForecastingTabPage custom: false developerName: standard-Forecasting3 iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/forecasts_120.png id: itemType: Standard label: Forecasts objectApiName: Forecasting3 objectLabel: objectLabelPlural: pageReference: attributes: pageName: forecasting state: {} type: standard__namedPage standardType: Forecasting3 selected: true startUrl: >- https://pozil-dev-ed.my.salesforce.com/home/home.jsp?tsid=02u58000000fBK2 type: Lightning userNavItems: [] - appId: 06m58000000dRxBAAU description: >- Manage customer service with accounts, contacts, cases, and more developerName: Service eTag: b8b5942342984b0853126b7a7558e130 formFactors: - Large headerColor: '#0070D2' iconUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/ServiceCloud/icon.png isNavAutoTempTabsDisabled: false isNavPersonalizationDisabled: false isNavTabPersistenceDisabled: false label: Service logoUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/ServiceCloud/logo.png mobileStartUrl: navItems: [] selected: false startUrl: >- https://pozil-dev-ed.my.salesforce.com/home/home.jsp?tsid=02u58000000dRxB type: Classic userNavItems: [] - appId: 06m58000000dRxCAAU description: Best-in-class on-demand marketing automation developerName: Marketing eTag: ffedb4e8ce9ada4905724cd13c74955e formFactors: - Large headerColor: '#0070D2' iconUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/MarketingCloud/icon.png isNavAutoTempTabsDisabled: false isNavPersonalizationDisabled: false isNavTabPersistenceDisabled: false label: Marketing logoUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/MarketingCloud/logo.png mobileStartUrl: navItems: [] selected: false startUrl: >- https://pozil-dev-ed.my.salesforce.com/home/home.jsp?tsid=02u58000000dRxC type: Classic userNavItems: [] - appId: 06m58000000dRx2AAE description: Salesforce CRM Communities developerName: Community eTag: 12283186521e9dff9e4440f9f83b7a4d formFactors: - Large headerColor: '#0070D2' iconUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/Community/icon.png isNavAutoTempTabsDisabled: false isNavPersonalizationDisabled: false isNavTabPersistenceDisabled: false label: Community logoUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/Community/logo.png mobileStartUrl: navItems: [] selected: false startUrl: >- https://pozil-dev-ed.my.salesforce.com/home/home.jsp?tsid=02u58000000dRx2 type: Classic userNavItems: [] - appId: 06m58000000dRx3AAE description: >- Build pixel-perfect, data-rich websites using the drag-and-drop Site.com application, and manage content and published sites. developerName: Sites eTag: 0f40c4dd79d400146f97c64b1cf7d865 formFactors: - Large headerColor: '#0070D2' iconUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/Sites/icon.png isNavAutoTempTabsDisabled: false isNavPersonalizationDisabled: false isNavTabPersistenceDisabled: false label: Site.com logoUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/app/00D58000000arpq/02u58000000dRx3AAE mobileStartUrl: navItems: [] selected: false startUrl: >- https://pozil-dev-ed.my.salesforce.com/home/home.jsp?tsid=02u58000000dRx3 type: Classic userNavItems: [] - appId: 06m58000000dRx4AAE description: >- The Salesforce Chatter social network, including profiles and feeds developerName: Chatter eTag: 95c37da7ec4eee2c9a96d53d7ce9b89b formFactors: - Large headerColor: '#0070D2' iconUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/Chatter/icon.png isNavAutoTempTabsDisabled: false isNavPersonalizationDisabled: false isNavTabPersistenceDisabled: false label: Salesforce Chatter logoUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Standard/feed/logo.svg mobileStartUrl: navItems: [] selected: false startUrl: >- https://pozil-dev-ed.my.salesforce.com/home/home.jsp?tsid=02u58000000dRx4 type: Classic userNavItems: [] - appId: 06m58000000dRx9AAE description: Salesforce CRM Content developerName: Content eTag: edeb0edc6c931a4b3ebb4c08bc7c4c21 formFactors: - Large headerColor: '#0070D2' iconUrl: isNavAutoTempTabsDisabled: false isNavPersonalizationDisabled: false isNavTabPersistenceDisabled: false label: Content logoUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Standard/file/logo.svg mobileStartUrl: navItems: [] selected: false startUrl: >- https://pozil-dev-ed.my.salesforce.com/home/home.jsp?tsid=02u58000000dRx9 type: Classic userNavItems: [] - appId: 06m58000000dRx1AAE description: App Launcher tabs developerName: AppLauncher eTag: 932216e29355c05453a6ed51a3d24902 formFactors: - Large headerColor: '#0070D2' iconUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/AppLauncher/icon.png isNavAutoTempTabsDisabled: false isNavPersonalizationDisabled: false isNavTabPersistenceDisabled: false label: App Launcher logoUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/AppLauncher/logo.png mobileStartUrl: navItems: [] selected: false startUrl: >- https://pozil-dev-ed.my.salesforce.com/app/mgmt/applauncher/appLauncher.apexp?tsid=02u58000000dRx1 type: Classic userNavItems: [] - appId: 06m58000000MpvkAAC description: View Adoption and Usage Metrics for Lightning Experience developerName: LightningInstrumentation eTag: 69788cb0de5d4b5b483fced75461fa88 formFactors: - Large headerColor: '#0070D2' iconUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/LightningInstrumentation/icon.png isNavAutoTempTabsDisabled: false isNavPersonalizationDisabled: false isNavTabPersistenceDisabled: false label: Lightning Usage App logoUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/LightningInstrumentation/logo.png mobileStartUrl: navItems: [] selected: false startUrl: >- https://pozil-dev-ed.my.salesforce.com/home/home.jsp?tsid=02u58000000Mpvk type: Lightning userNavItems: [] - appId: 06m4H000000QTsDQAW description: >- Manage your store's products, catalogs, and pricebooks. developerName: Commerce eTag: ba22fc3752be6c8c3f96bf7bd50a4e55 formFactors: - Large headerColor: '#0070D2' iconUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/Commerce/icon.png isNavAutoTempTabsDisabled: false isNavPersonalizationDisabled: false isNavTabPersistenceDisabled: false label: Commerce logoUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/Commerce/logo.png mobileStartUrl: navItems: [] selected: false startUrl: >- https://pozil-dev-ed.my.salesforce.com/home/home.jsp?tsid=02u4H000000QTsD type: Lightning userNavItems: [] eTag: 619eb2f896db72ff9a0823ed6a551e66 deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/ui-api/apps/{APP_ID}: get: tags: - Applications - Get summary: Salesforce Get an App description: Get metadata about an app. operationId: GetanApp parameters: - name: formFactor in: query description: >- The form factor for each app that the user has access to (`Large`, `Medium` or `Small`) required: true style: form explode: true schema: type: string examples: - Small example: example_value - name: APP_ID in: path description: Application ID required: true schema: type: string example: '500123' responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Fri, 06 Oct 2023 09:35:36 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private ETag: content: text/plain: schema: type: string contentMediaType: text/plain example: '"21d4bafc5c5730c4f9421875288c4a00--gzip"' Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/GetanApp' - examples: - appId: 06m58000000fBK2AAM description: >- Manage your sales process with accounts, leads, opportunities, and more developerName: LightningSales eTag: 21d4bafc5c5730c4f9421875288c4a00 formFactors: - Small - Medium - Large headerColor: '#0070D2' iconUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/SalesCloud/icon.png isNavAutoTempTabsDisabled: false isNavPersonalizationDisabled: false isNavTabPersistenceDisabled: false label: Sales logoUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/SalesCloud/logo.png mobileStartUrl: navItems: - availableInClassic: true availableInLightning: true color: FF5D2D content: https://pozil-dev-ed.my.salesforce.com/006/o custom: false developerName: standard-Opportunity iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/opportunity_120.png id: itemType: Entity label: Opportunities objectApiName: Opportunity objectLabel: Opportunity objectLabelPlural: Opportunities pageReference: attributes: objectApiName: Opportunity actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: FF5D2D content: https://pozil-dev-ed.my.salesforce.com/00Q/o custom: false developerName: standard-Lead iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/lead_120.png id: itemType: Entity label: Leads objectApiName: Lead objectLabel: Lead objectLabelPlural: Leads pageReference: attributes: objectApiName: Lead actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: false availableInLightning: true color: 3BA755 content: https://pozil-dev-ed.my.salesforce.com/00T/o custom: false developerName: standard-Task iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/task_120.png id: itemType: Standard label: Tasks objectApiName: Task objectLabel: Task objectLabelPlural: Tasks pageReference: attributes: objectApiName: Task actionName: home state: {} type: standard__objectPage standardType: Tasks - availableInClassic: true availableInLightning: true color: '939393' content: >- https://pozil-dev-ed.my.salesforce.com/_ui/core/chatter/files/FileTabPage custom: false developerName: standard-File iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/file_120.png id: itemType: Entity label: Files objectApiName: ContentDocument objectLabel: objectLabelPlural: pageReference: attributes: objectApiName: ContentDocument actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: '5867E8' content: https://pozil-dev-ed.my.salesforce.com/001/o custom: false developerName: standard-Account iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_120.png id: itemType: Entity label: Accounts objectApiName: Account objectLabel: Account objectLabelPlural: Accounts pageReference: attributes: objectApiName: Account actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: '5867E8' content: https://pozil-dev-ed.my.salesforce.com/003/o custom: false developerName: standard-Contact iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/contact_120.png id: itemType: Entity label: Contacts objectApiName: Contact objectLabel: Contact objectLabelPlural: Contacts pageReference: attributes: objectApiName: Contact actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: FF538A content: https://pozil-dev-ed.my.salesforce.com/01Z/o custom: false developerName: standard-Dashboard iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/dashboard_120.png id: itemType: Standard label: Dashboards objectApiName: Dashboard objectLabel: Dashboard objectLabelPlural: Dashboards pageReference: attributes: objectApiName: Dashboard actionName: home state: {} type: standard__objectPage standardType: Dashboards - availableInClassic: true availableInLightning: true color: 06A59A content: https://pozil-dev-ed.my.salesforce.com/00O/o custom: false developerName: standard-report iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/report_120.png id: itemType: Standard label: Reports objectApiName: Report objectLabel: Report objectLabelPlural: Reports pageReference: attributes: objectApiName: Report actionName: home state: {} type: standard__objectPage standardType: Reports - availableInClassic: false availableInLightning: true color: 1B96FF content: custom: false developerName: standard-Feed iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/feed_120.png id: itemType: Standard label: Chatter objectApiName: Feed objectLabel: objectLabelPlural: pageReference: attributes: pageName: chatter state: {} type: standard__namedPage standardType: Feed - availableInClassic: true availableInLightning: true color: 1B96FF content: >- https://pozil-dev-ed.my.salesforce.com/_ui/core/chatter/groups/GroupListPage custom: false developerName: standard-CollaborationGroup iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/groups_120.png id: itemType: Standard label: Groups objectApiName: CollaborationGroup objectLabel: Group objectLabelPlural: Groups pageReference: attributes: objectApiName: CollaborationGroup actionName: home state: {} type: standard__objectPage standardType: Groups - availableInClassic: false availableInLightning: true color: FF538A content: custom: false developerName: Events iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/event_120.png id: itemType: Standard label: Events objectApiName: Event objectLabel: Event objectLabelPlural: Events pageReference: attributes: objectApiName: Event actionName: home state: {} type: standard__objectPage standardType: Events - availableInClassic: true availableInLightning: true color: 1B96FF content: >- https://pozil-dev-ed.my.salesforce.com/_ui/core/chatter/people/PeopleListPage custom: false developerName: standard-OtherUserProfile iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/user_120.png id: itemType: Standard label: People objectApiName: User objectLabel: User objectLabelPlural: People pageReference: attributes: objectApiName: User actionName: home state: {} type: standard__objectPage standardType: People - availableInClassic: true availableInLightning: true color: FF5D2D content: https://pozil-dev-ed.my.salesforce.com/500/o custom: false developerName: standard-Case iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/case_120.png id: itemType: Entity label: Cases objectApiName: Case objectLabel: Case objectLabelPlural: Cases pageReference: attributes: objectApiName: Case actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: 3BA755 content: custom: false developerName: ForecastingLightning iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/forecasts_120.png id: itemType: Standard label: Forecasts objectApiName: objectLabel: objectLabelPlural: pageReference: attributes: pageName: forecasting state: {} type: standard__namedPage standardType: ForecastingLightning selected: true startUrl: >- https://pozil-dev-ed.my.salesforce.com/home/home.jsp?tsid=02u58000000fBK2 type: Lightning userNavItems: [] contentMediaType: application/json;charset=UTF-8 example: appId: 06m58000000fBK2AAM description: >- Manage your sales process with accounts, leads, opportunities, and more developerName: LightningSales eTag: 21d4bafc5c5730c4f9421875288c4a00 formFactors: - Small - Medium - Large headerColor: '#0070D2' iconUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/SalesCloud/icon.png isNavAutoTempTabsDisabled: false isNavPersonalizationDisabled: false isNavTabPersistenceDisabled: false label: Sales logoUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/SalesCloud/logo.png mobileStartUrl: navItems: - availableInClassic: true availableInLightning: true color: FF5D2D content: https://pozil-dev-ed.my.salesforce.com/006/o custom: false developerName: standard-Opportunity iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/opportunity_120.png id: itemType: Entity label: Opportunities objectApiName: Opportunity objectLabel: Opportunity objectLabelPlural: Opportunities pageReference: attributes: objectApiName: Opportunity actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: FF5D2D content: https://pozil-dev-ed.my.salesforce.com/00Q/o custom: false developerName: standard-Lead iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/lead_120.png id: itemType: Entity label: Leads objectApiName: Lead objectLabel: Lead objectLabelPlural: Leads pageReference: attributes: objectApiName: Lead actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: false availableInLightning: true color: 3BA755 content: https://pozil-dev-ed.my.salesforce.com/00T/o custom: false developerName: standard-Task iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/task_120.png id: itemType: Standard label: Tasks objectApiName: Task objectLabel: Task objectLabelPlural: Tasks pageReference: attributes: objectApiName: Task actionName: home state: {} type: standard__objectPage standardType: Tasks - availableInClassic: true availableInLightning: true color: '939393' content: >- https://pozil-dev-ed.my.salesforce.com/_ui/core/chatter/files/FileTabPage custom: false developerName: standard-File iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/file_120.png id: itemType: Entity label: Files objectApiName: ContentDocument objectLabel: objectLabelPlural: pageReference: attributes: objectApiName: ContentDocument actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: '5867E8' content: https://pozil-dev-ed.my.salesforce.com/001/o custom: false developerName: standard-Account iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_120.png id: itemType: Entity label: Accounts objectApiName: Account objectLabel: Account objectLabelPlural: Accounts pageReference: attributes: objectApiName: Account actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: '5867E8' content: https://pozil-dev-ed.my.salesforce.com/003/o custom: false developerName: standard-Contact iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/contact_120.png id: itemType: Entity label: Contacts objectApiName: Contact objectLabel: Contact objectLabelPlural: Contacts pageReference: attributes: objectApiName: Contact actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: FF538A content: https://pozil-dev-ed.my.salesforce.com/01Z/o custom: false developerName: standard-Dashboard iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/dashboard_120.png id: itemType: Standard label: Dashboards objectApiName: Dashboard objectLabel: Dashboard objectLabelPlural: Dashboards pageReference: attributes: objectApiName: Dashboard actionName: home state: {} type: standard__objectPage standardType: Dashboards - availableInClassic: true availableInLightning: true color: 06A59A content: https://pozil-dev-ed.my.salesforce.com/00O/o custom: false developerName: standard-report iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/report_120.png id: itemType: Standard label: Reports objectApiName: Report objectLabel: Report objectLabelPlural: Reports pageReference: attributes: objectApiName: Report actionName: home state: {} type: standard__objectPage standardType: Reports - availableInClassic: false availableInLightning: true color: 1B96FF content: custom: false developerName: standard-Feed iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/feed_120.png id: itemType: Standard label: Chatter objectApiName: Feed objectLabel: objectLabelPlural: pageReference: attributes: pageName: chatter state: {} type: standard__namedPage standardType: Feed - availableInClassic: true availableInLightning: true color: 1B96FF content: >- https://pozil-dev-ed.my.salesforce.com/_ui/core/chatter/groups/GroupListPage custom: false developerName: standard-CollaborationGroup iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/groups_120.png id: itemType: Standard label: Groups objectApiName: CollaborationGroup objectLabel: Group objectLabelPlural: Groups pageReference: attributes: objectApiName: CollaborationGroup actionName: home state: {} type: standard__objectPage standardType: Groups - availableInClassic: false availableInLightning: true color: FF538A content: custom: false developerName: Events iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/event_120.png id: itemType: Standard label: Events objectApiName: Event objectLabel: Event objectLabelPlural: Events pageReference: attributes: objectApiName: Event actionName: home state: {} type: standard__objectPage standardType: Events - availableInClassic: true availableInLightning: true color: 1B96FF content: >- https://pozil-dev-ed.my.salesforce.com/_ui/core/chatter/people/PeopleListPage custom: false developerName: standard-OtherUserProfile iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/user_120.png id: itemType: Standard label: People objectApiName: User objectLabel: User objectLabelPlural: People pageReference: attributes: objectApiName: User actionName: home state: {} type: standard__objectPage standardType: People - availableInClassic: true availableInLightning: true color: FF5D2D content: https://pozil-dev-ed.my.salesforce.com/500/o custom: false developerName: standard-Case iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/case_120.png id: itemType: Entity label: Cases objectApiName: Case objectLabel: Case objectLabelPlural: Cases pageReference: attributes: objectApiName: Case actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: 3BA755 content: custom: false developerName: ForecastingLightning iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/forecasts_120.png id: itemType: Standard label: Forecasts objectApiName: objectLabel: objectLabelPlural: pageReference: attributes: pageName: forecasting state: {} type: standard__namedPage standardType: ForecastingLightning selected: true startUrl: >- https://pozil-dev-ed.my.salesforce.com/home/home.jsp?tsid=02u58000000fBK2 type: Lightning userNavItems: [] deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK patch: tags: - Applications - Last - Selected - Update summary: Salesforce Update Last Selected App description: >- Returns metadata for an app, and saves an app as the last selected for a user. operationId: UpdateLastSelectedApp parameters: - name: formFactor in: query description: >- The form factor for each app that the user has access to (`Large`, `Medium` or `Small`) required: true style: form explode: true schema: type: string examples: - Large example: example_value - name: APP_ID in: path description: Application ID required: true schema: type: string example: '500123' responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Fri, 06 Oct 2023 09:37:59 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private ETag: content: text/plain: schema: type: string contentMediaType: text/plain example: '"e288a1d753c535d52fd11b047cd74482"' Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/UpdateLastSelectedApp' - examples: - appId: 06m58000000fBK2AAM description: >- Manage your sales process with accounts, leads, opportunities, and more developerName: LightningSales eTag: e288a1d753c535d52fd11b047cd74482 formFactors: - Small - Medium - Large headerColor: '#0070D2' iconUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/SalesCloud/icon.png isNavAutoTempTabsDisabled: false isNavPersonalizationDisabled: false isNavTabPersistenceDisabled: false label: Sales logoUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/SalesCloud/logo.png mobileStartUrl: navItems: - availableInClassic: true availableInLightning: true color: FF538A content: >- https://pozil-dev-ed.my.salesforce.com/lightning/page/home custom: false developerName: standard-home iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/home_120.png id: itemType: Standard label: Home objectApiName: Home objectLabel: objectLabelPlural: pageReference: attributes: pageName: home state: {} type: standard__namedPage standardType: Home - availableInClassic: true availableInLightning: true color: FF5D2D content: https://pozil-dev-ed.my.salesforce.com/006/o custom: false developerName: standard-Opportunity iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/opportunity_120.png id: itemType: Entity label: Opportunities objectApiName: Opportunity objectLabel: Opportunity objectLabelPlural: Opportunities pageReference: attributes: objectApiName: Opportunity actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: FF5D2D content: https://pozil-dev-ed.my.salesforce.com/00Q/o custom: false developerName: standard-Lead iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/lead_120.png id: itemType: Entity label: Leads objectApiName: Lead objectLabel: Lead objectLabelPlural: Leads pageReference: attributes: objectApiName: Lead actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: false availableInLightning: true color: 3BA755 content: https://pozil-dev-ed.my.salesforce.com/00T/o custom: false developerName: standard-Task iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/task_120.png id: itemType: Standard label: Tasks objectApiName: Task objectLabel: Task objectLabelPlural: Tasks pageReference: attributes: objectApiName: Task actionName: home state: {} type: standard__objectPage standardType: Tasks - availableInClassic: true availableInLightning: true color: '939393' content: >- https://pozil-dev-ed.my.salesforce.com/_ui/core/chatter/files/FileTabPage custom: false developerName: standard-File iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/file_120.png id: itemType: Entity label: Files objectApiName: ContentDocument objectLabel: objectLabelPlural: pageReference: attributes: objectApiName: ContentDocument actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: '5867E8' content: https://pozil-dev-ed.my.salesforce.com/001/o custom: false developerName: standard-Account iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_120.png id: itemType: Entity label: Accounts objectApiName: Account objectLabel: Account objectLabelPlural: Accounts pageReference: attributes: objectApiName: Account actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: '5867E8' content: https://pozil-dev-ed.my.salesforce.com/003/o custom: false developerName: standard-Contact iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/contact_120.png id: itemType: Entity label: Contacts objectApiName: Contact objectLabel: Contact objectLabelPlural: Contacts pageReference: attributes: objectApiName: Contact actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: FF538A content: https://pozil-dev-ed.my.salesforce.com/01Z/o custom: false developerName: standard-Dashboard iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/dashboard_120.png id: itemType: Standard label: Dashboards objectApiName: Dashboard objectLabel: Dashboard objectLabelPlural: Dashboards pageReference: attributes: objectApiName: Dashboard actionName: home state: {} type: standard__objectPage standardType: Dashboards - availableInClassic: true availableInLightning: true color: 06A59A content: https://pozil-dev-ed.my.salesforce.com/00O/o custom: false developerName: standard-report iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/report_120.png id: itemType: Standard label: Reports objectApiName: Report objectLabel: Report objectLabelPlural: Reports pageReference: attributes: objectApiName: Report actionName: home state: {} type: standard__objectPage standardType: Reports - availableInClassic: false availableInLightning: true color: 1B96FF content: custom: false developerName: standard-Feed iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/feed_120.png id: itemType: Standard label: Chatter objectApiName: Feed objectLabel: objectLabelPlural: pageReference: attributes: pageName: chatter state: {} type: standard__namedPage standardType: Feed - availableInClassic: true availableInLightning: true color: 1B96FF content: >- https://pozil-dev-ed.my.salesforce.com/_ui/core/chatter/groups/GroupListPage custom: false developerName: standard-CollaborationGroup iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/groups_120.png id: itemType: Standard label: Groups objectApiName: CollaborationGroup objectLabel: Group objectLabelPlural: Groups pageReference: attributes: objectApiName: CollaborationGroup actionName: home state: {} type: standard__objectPage standardType: Groups - availableInClassic: false availableInLightning: true color: FF538A content: https://pozil-dev-ed.my.salesforce.com/00U/o custom: false developerName: standard-Event iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/event_120.png id: itemType: Standard label: Calendar objectApiName: Event objectLabel: Event objectLabelPlural: Events pageReference: attributes: objectApiName: Event actionName: home state: {} type: standard__objectPage standardType: Events - availableInClassic: true availableInLightning: true color: 1B96FF content: >- https://pozil-dev-ed.my.salesforce.com/_ui/core/chatter/people/PeopleListPage custom: false developerName: standard-OtherUserProfile iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/user_120.png id: itemType: Standard label: People objectApiName: User objectLabel: User objectLabelPlural: People pageReference: attributes: objectApiName: User actionName: home state: {} type: standard__objectPage standardType: People - availableInClassic: true availableInLightning: true color: FF5D2D content: https://pozil-dev-ed.my.salesforce.com/500/o custom: false developerName: standard-Case iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/case_120.png id: itemType: Entity label: Cases objectApiName: Case objectLabel: Case objectLabelPlural: Cases pageReference: attributes: objectApiName: Case actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: 3BA755 content: >- https://pozil-dev-ed.my.salesforce.com/_ui/sales/forecasting/ui/ForecastingTabPage custom: false developerName: standard-Forecasting3 iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/forecasts_120.png id: itemType: Standard label: Forecasts objectApiName: Forecasting3 objectLabel: objectLabelPlural: pageReference: attributes: pageName: forecasting state: {} type: standard__namedPage standardType: Forecasting3 selected: true startUrl: >- https://pozil-dev-ed.my.salesforce.com/home/home.jsp?tsid=02u58000000fBK2 type: Lightning userNavItems: [] contentMediaType: application/json;charset=UTF-8 example: appId: 06m58000000fBK2AAM description: >- Manage your sales process with accounts, leads, opportunities, and more developerName: LightningSales eTag: e288a1d753c535d52fd11b047cd74482 formFactors: - Small - Medium - Large headerColor: '#0070D2' iconUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/SalesCloud/icon.png isNavAutoTempTabsDisabled: false isNavPersonalizationDisabled: false isNavTabPersistenceDisabled: false label: Sales logoUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/SalesCloud/logo.png mobileStartUrl: navItems: - availableInClassic: true availableInLightning: true color: FF538A content: https://pozil-dev-ed.my.salesforce.com/lightning/page/home custom: false developerName: standard-home iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/home_120.png id: itemType: Standard label: Home objectApiName: Home objectLabel: objectLabelPlural: pageReference: attributes: pageName: home state: {} type: standard__namedPage standardType: Home - availableInClassic: true availableInLightning: true color: FF5D2D content: https://pozil-dev-ed.my.salesforce.com/006/o custom: false developerName: standard-Opportunity iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/opportunity_120.png id: itemType: Entity label: Opportunities objectApiName: Opportunity objectLabel: Opportunity objectLabelPlural: Opportunities pageReference: attributes: objectApiName: Opportunity actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: FF5D2D content: https://pozil-dev-ed.my.salesforce.com/00Q/o custom: false developerName: standard-Lead iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/lead_120.png id: itemType: Entity label: Leads objectApiName: Lead objectLabel: Lead objectLabelPlural: Leads pageReference: attributes: objectApiName: Lead actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: false availableInLightning: true color: 3BA755 content: https://pozil-dev-ed.my.salesforce.com/00T/o custom: false developerName: standard-Task iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/task_120.png id: itemType: Standard label: Tasks objectApiName: Task objectLabel: Task objectLabelPlural: Tasks pageReference: attributes: objectApiName: Task actionName: home state: {} type: standard__objectPage standardType: Tasks - availableInClassic: true availableInLightning: true color: '939393' content: >- https://pozil-dev-ed.my.salesforce.com/_ui/core/chatter/files/FileTabPage custom: false developerName: standard-File iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/file_120.png id: itemType: Entity label: Files objectApiName: ContentDocument objectLabel: objectLabelPlural: pageReference: attributes: objectApiName: ContentDocument actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: '5867E8' content: https://pozil-dev-ed.my.salesforce.com/001/o custom: false developerName: standard-Account iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_120.png id: itemType: Entity label: Accounts objectApiName: Account objectLabel: Account objectLabelPlural: Accounts pageReference: attributes: objectApiName: Account actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: '5867E8' content: https://pozil-dev-ed.my.salesforce.com/003/o custom: false developerName: standard-Contact iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/contact_120.png id: itemType: Entity label: Contacts objectApiName: Contact objectLabel: Contact objectLabelPlural: Contacts pageReference: attributes: objectApiName: Contact actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: FF538A content: https://pozil-dev-ed.my.salesforce.com/01Z/o custom: false developerName: standard-Dashboard iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/dashboard_120.png id: itemType: Standard label: Dashboards objectApiName: Dashboard objectLabel: Dashboard objectLabelPlural: Dashboards pageReference: attributes: objectApiName: Dashboard actionName: home state: {} type: standard__objectPage standardType: Dashboards - availableInClassic: true availableInLightning: true color: 06A59A content: https://pozil-dev-ed.my.salesforce.com/00O/o custom: false developerName: standard-report iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/report_120.png id: itemType: Standard label: Reports objectApiName: Report objectLabel: Report objectLabelPlural: Reports pageReference: attributes: objectApiName: Report actionName: home state: {} type: standard__objectPage standardType: Reports - availableInClassic: false availableInLightning: true color: 1B96FF content: custom: false developerName: standard-Feed iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/feed_120.png id: itemType: Standard label: Chatter objectApiName: Feed objectLabel: objectLabelPlural: pageReference: attributes: pageName: chatter state: {} type: standard__namedPage standardType: Feed - availableInClassic: true availableInLightning: true color: 1B96FF content: >- https://pozil-dev-ed.my.salesforce.com/_ui/core/chatter/groups/GroupListPage custom: false developerName: standard-CollaborationGroup iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/groups_120.png id: itemType: Standard label: Groups objectApiName: CollaborationGroup objectLabel: Group objectLabelPlural: Groups pageReference: attributes: objectApiName: CollaborationGroup actionName: home state: {} type: standard__objectPage standardType: Groups - availableInClassic: false availableInLightning: true color: FF538A content: https://pozil-dev-ed.my.salesforce.com/00U/o custom: false developerName: standard-Event iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/event_120.png id: itemType: Standard label: Calendar objectApiName: Event objectLabel: Event objectLabelPlural: Events pageReference: attributes: objectApiName: Event actionName: home state: {} type: standard__objectPage standardType: Events - availableInClassic: true availableInLightning: true color: 1B96FF content: >- https://pozil-dev-ed.my.salesforce.com/_ui/core/chatter/people/PeopleListPage custom: false developerName: standard-OtherUserProfile iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/user_120.png id: itemType: Standard label: People objectApiName: User objectLabel: User objectLabelPlural: People pageReference: attributes: objectApiName: User actionName: home state: {} type: standard__objectPage standardType: People - availableInClassic: true availableInLightning: true color: FF5D2D content: https://pozil-dev-ed.my.salesforce.com/500/o custom: false developerName: standard-Case iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/case_120.png id: itemType: Entity label: Cases objectApiName: Case objectLabel: Case objectLabelPlural: Cases pageReference: attributes: objectApiName: Case actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: 3BA755 content: >- https://pozil-dev-ed.my.salesforce.com/_ui/sales/forecasting/ui/ForecastingTabPage custom: false developerName: standard-Forecasting3 iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/forecasts_120.png id: itemType: Standard label: Forecasts objectApiName: Forecasting3 objectLabel: objectLabelPlural: pageReference: attributes: pageName: forecasting state: {} type: standard__namedPage standardType: Forecasting3 selected: true startUrl: >- https://pozil-dev-ed.my.salesforce.com/home/home.jsp?tsid=02u58000000fBK2 type: Lightning userNavItems: [] deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/ui-api/apps/selected: get: tags: - Applications - Get - Last - Selected summary: Salesforce Get Last Selected App description: >- Retrieves the app the current user last selected or the app the user sees by default. operationId: GetLastSelectedApp parameters: - name: formFactor in: query description: >- The form factor for each app that the user has access to (`Large`, `Medium` or `Small`) required: true style: form explode: true schema: type: string examples: - Large example: example_value responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Fri, 06 Oct 2023 09:37:32 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private ETag: content: text/plain: schema: type: string contentMediaType: text/plain example: '"e288a1d753c535d52fd11b047cd74482--gzip"' Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/GetLastSelectedApp' - examples: - appId: 06m58000000fBK2AAM description: >- Manage your sales process with accounts, leads, opportunities, and more developerName: LightningSales eTag: e288a1d753c535d52fd11b047cd74482 formFactors: - Small - Medium - Large headerColor: '#0070D2' iconUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/SalesCloud/icon.png isNavAutoTempTabsDisabled: false isNavPersonalizationDisabled: false isNavTabPersistenceDisabled: false label: Sales logoUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/SalesCloud/logo.png mobileStartUrl: navItems: - availableInClassic: true availableInLightning: true color: FF538A content: >- https://pozil-dev-ed.my.salesforce.com/lightning/page/home custom: false developerName: standard-home iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/home_120.png id: itemType: Standard label: Home objectApiName: Home objectLabel: objectLabelPlural: pageReference: attributes: pageName: home state: {} type: standard__namedPage standardType: Home - availableInClassic: true availableInLightning: true color: FF5D2D content: https://pozil-dev-ed.my.salesforce.com/006/o custom: false developerName: standard-Opportunity iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/opportunity_120.png id: itemType: Entity label: Opportunities objectApiName: Opportunity objectLabel: Opportunity objectLabelPlural: Opportunities pageReference: attributes: objectApiName: Opportunity actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: FF5D2D content: https://pozil-dev-ed.my.salesforce.com/00Q/o custom: false developerName: standard-Lead iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/lead_120.png id: itemType: Entity label: Leads objectApiName: Lead objectLabel: Lead objectLabelPlural: Leads pageReference: attributes: objectApiName: Lead actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: false availableInLightning: true color: 3BA755 content: https://pozil-dev-ed.my.salesforce.com/00T/o custom: false developerName: standard-Task iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/task_120.png id: itemType: Standard label: Tasks objectApiName: Task objectLabel: Task objectLabelPlural: Tasks pageReference: attributes: objectApiName: Task actionName: home state: {} type: standard__objectPage standardType: Tasks - availableInClassic: true availableInLightning: true color: '939393' content: >- https://pozil-dev-ed.my.salesforce.com/_ui/core/chatter/files/FileTabPage custom: false developerName: standard-File iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/file_120.png id: itemType: Entity label: Files objectApiName: ContentDocument objectLabel: objectLabelPlural: pageReference: attributes: objectApiName: ContentDocument actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: '5867E8' content: https://pozil-dev-ed.my.salesforce.com/001/o custom: false developerName: standard-Account iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_120.png id: itemType: Entity label: Accounts objectApiName: Account objectLabel: Account objectLabelPlural: Accounts pageReference: attributes: objectApiName: Account actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: '5867E8' content: https://pozil-dev-ed.my.salesforce.com/003/o custom: false developerName: standard-Contact iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/contact_120.png id: itemType: Entity label: Contacts objectApiName: Contact objectLabel: Contact objectLabelPlural: Contacts pageReference: attributes: objectApiName: Contact actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: FF538A content: https://pozil-dev-ed.my.salesforce.com/01Z/o custom: false developerName: standard-Dashboard iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/dashboard_120.png id: itemType: Standard label: Dashboards objectApiName: Dashboard objectLabel: Dashboard objectLabelPlural: Dashboards pageReference: attributes: objectApiName: Dashboard actionName: home state: {} type: standard__objectPage standardType: Dashboards - availableInClassic: true availableInLightning: true color: 06A59A content: https://pozil-dev-ed.my.salesforce.com/00O/o custom: false developerName: standard-report iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/report_120.png id: itemType: Standard label: Reports objectApiName: Report objectLabel: Report objectLabelPlural: Reports pageReference: attributes: objectApiName: Report actionName: home state: {} type: standard__objectPage standardType: Reports - availableInClassic: false availableInLightning: true color: 1B96FF content: custom: false developerName: standard-Feed iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/feed_120.png id: itemType: Standard label: Chatter objectApiName: Feed objectLabel: objectLabelPlural: pageReference: attributes: pageName: chatter state: {} type: standard__namedPage standardType: Feed - availableInClassic: true availableInLightning: true color: 1B96FF content: >- https://pozil-dev-ed.my.salesforce.com/_ui/core/chatter/groups/GroupListPage custom: false developerName: standard-CollaborationGroup iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/groups_120.png id: itemType: Standard label: Groups objectApiName: CollaborationGroup objectLabel: Group objectLabelPlural: Groups pageReference: attributes: objectApiName: CollaborationGroup actionName: home state: {} type: standard__objectPage standardType: Groups - availableInClassic: false availableInLightning: true color: FF538A content: https://pozil-dev-ed.my.salesforce.com/00U/o custom: false developerName: standard-Event iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/event_120.png id: itemType: Standard label: Calendar objectApiName: Event objectLabel: Event objectLabelPlural: Events pageReference: attributes: objectApiName: Event actionName: home state: {} type: standard__objectPage standardType: Events - availableInClassic: true availableInLightning: true color: 1B96FF content: >- https://pozil-dev-ed.my.salesforce.com/_ui/core/chatter/people/PeopleListPage custom: false developerName: standard-OtherUserProfile iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/user_120.png id: itemType: Standard label: People objectApiName: User objectLabel: User objectLabelPlural: People pageReference: attributes: objectApiName: User actionName: home state: {} type: standard__objectPage standardType: People - availableInClassic: true availableInLightning: true color: FF5D2D content: https://pozil-dev-ed.my.salesforce.com/500/o custom: false developerName: standard-Case iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/case_120.png id: itemType: Entity label: Cases objectApiName: Case objectLabel: Case objectLabelPlural: Cases pageReference: attributes: objectApiName: Case actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: 3BA755 content: >- https://pozil-dev-ed.my.salesforce.com/_ui/sales/forecasting/ui/ForecastingTabPage custom: false developerName: standard-Forecasting3 iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/forecasts_120.png id: itemType: Standard label: Forecasts objectApiName: Forecasting3 objectLabel: objectLabelPlural: pageReference: attributes: pageName: forecasting state: {} type: standard__namedPage standardType: Forecasting3 selected: true startUrl: >- https://pozil-dev-ed.my.salesforce.com/home/home.jsp?tsid=02u58000000fBK2 type: Lightning userNavItems: [] contentMediaType: application/json;charset=UTF-8 example: appId: 06m58000000fBK2AAM description: >- Manage your sales process with accounts, leads, opportunities, and more developerName: LightningSales eTag: e288a1d753c535d52fd11b047cd74482 formFactors: - Small - Medium - Large headerColor: '#0070D2' iconUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/SalesCloud/icon.png isNavAutoTempTabsDisabled: false isNavPersonalizationDisabled: false isNavTabPersistenceDisabled: false label: Sales logoUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/SalesCloud/logo.png mobileStartUrl: navItems: - availableInClassic: true availableInLightning: true color: FF538A content: https://pozil-dev-ed.my.salesforce.com/lightning/page/home custom: false developerName: standard-home iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/home_120.png id: itemType: Standard label: Home objectApiName: Home objectLabel: objectLabelPlural: pageReference: attributes: pageName: home state: {} type: standard__namedPage standardType: Home - availableInClassic: true availableInLightning: true color: FF5D2D content: https://pozil-dev-ed.my.salesforce.com/006/o custom: false developerName: standard-Opportunity iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/opportunity_120.png id: itemType: Entity label: Opportunities objectApiName: Opportunity objectLabel: Opportunity objectLabelPlural: Opportunities pageReference: attributes: objectApiName: Opportunity actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: FF5D2D content: https://pozil-dev-ed.my.salesforce.com/00Q/o custom: false developerName: standard-Lead iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/lead_120.png id: itemType: Entity label: Leads objectApiName: Lead objectLabel: Lead objectLabelPlural: Leads pageReference: attributes: objectApiName: Lead actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: false availableInLightning: true color: 3BA755 content: https://pozil-dev-ed.my.salesforce.com/00T/o custom: false developerName: standard-Task iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/task_120.png id: itemType: Standard label: Tasks objectApiName: Task objectLabel: Task objectLabelPlural: Tasks pageReference: attributes: objectApiName: Task actionName: home state: {} type: standard__objectPage standardType: Tasks - availableInClassic: true availableInLightning: true color: '939393' content: >- https://pozil-dev-ed.my.salesforce.com/_ui/core/chatter/files/FileTabPage custom: false developerName: standard-File iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/file_120.png id: itemType: Entity label: Files objectApiName: ContentDocument objectLabel: objectLabelPlural: pageReference: attributes: objectApiName: ContentDocument actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: '5867E8' content: https://pozil-dev-ed.my.salesforce.com/001/o custom: false developerName: standard-Account iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_120.png id: itemType: Entity label: Accounts objectApiName: Account objectLabel: Account objectLabelPlural: Accounts pageReference: attributes: objectApiName: Account actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: '5867E8' content: https://pozil-dev-ed.my.salesforce.com/003/o custom: false developerName: standard-Contact iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/contact_120.png id: itemType: Entity label: Contacts objectApiName: Contact objectLabel: Contact objectLabelPlural: Contacts pageReference: attributes: objectApiName: Contact actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: FF538A content: https://pozil-dev-ed.my.salesforce.com/01Z/o custom: false developerName: standard-Dashboard iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/dashboard_120.png id: itemType: Standard label: Dashboards objectApiName: Dashboard objectLabel: Dashboard objectLabelPlural: Dashboards pageReference: attributes: objectApiName: Dashboard actionName: home state: {} type: standard__objectPage standardType: Dashboards - availableInClassic: true availableInLightning: true color: 06A59A content: https://pozil-dev-ed.my.salesforce.com/00O/o custom: false developerName: standard-report iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/report_120.png id: itemType: Standard label: Reports objectApiName: Report objectLabel: Report objectLabelPlural: Reports pageReference: attributes: objectApiName: Report actionName: home state: {} type: standard__objectPage standardType: Reports - availableInClassic: false availableInLightning: true color: 1B96FF content: custom: false developerName: standard-Feed iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/feed_120.png id: itemType: Standard label: Chatter objectApiName: Feed objectLabel: objectLabelPlural: pageReference: attributes: pageName: chatter state: {} type: standard__namedPage standardType: Feed - availableInClassic: true availableInLightning: true color: 1B96FF content: >- https://pozil-dev-ed.my.salesforce.com/_ui/core/chatter/groups/GroupListPage custom: false developerName: standard-CollaborationGroup iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/groups_120.png id: itemType: Standard label: Groups objectApiName: CollaborationGroup objectLabel: Group objectLabelPlural: Groups pageReference: attributes: objectApiName: CollaborationGroup actionName: home state: {} type: standard__objectPage standardType: Groups - availableInClassic: false availableInLightning: true color: FF538A content: https://pozil-dev-ed.my.salesforce.com/00U/o custom: false developerName: standard-Event iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/event_120.png id: itemType: Standard label: Calendar objectApiName: Event objectLabel: Event objectLabelPlural: Events pageReference: attributes: objectApiName: Event actionName: home state: {} type: standard__objectPage standardType: Events - availableInClassic: true availableInLightning: true color: 1B96FF content: >- https://pozil-dev-ed.my.salesforce.com/_ui/core/chatter/people/PeopleListPage custom: false developerName: standard-OtherUserProfile iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/user_120.png id: itemType: Standard label: People objectApiName: User objectLabel: User objectLabelPlural: People pageReference: attributes: objectApiName: User actionName: home state: {} type: standard__objectPage standardType: People - availableInClassic: true availableInLightning: true color: FF5D2D content: https://pozil-dev-ed.my.salesforce.com/500/o custom: false developerName: standard-Case iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/case_120.png id: itemType: Entity label: Cases objectApiName: Case objectLabel: Case objectLabelPlural: Cases pageReference: attributes: objectApiName: Case actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: 3BA755 content: >- https://pozil-dev-ed.my.salesforce.com/_ui/sales/forecasting/ui/ForecastingTabPage custom: false developerName: standard-Forecasting3 iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/forecasts_120.png id: itemType: Standard label: Forecasts objectApiName: Forecasting3 objectLabel: objectLabelPlural: pageReference: attributes: pageName: forecasting state: {} type: standard__namedPage standardType: Forecasting3 selected: true startUrl: >- https://pozil-dev-ed.my.salesforce.com/home/home.jsp?tsid=02u58000000fBK2 type: Lightning userNavItems: [] deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/ui-api/apps/{APP_ID}/user-nav-items: get: tags: - Get - Items - Navigation - Personalized summary: Salesforce Get Personalized Navigation Items description: Get a user’s personalized navigation items (tabs). operationId: GetPersonalizedNavigationItems parameters: - name: APP_ID in: path description: Application ID required: true schema: type: string example: '500123' responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Fri, 06 Oct 2023 09:42:05 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private ETag: content: text/plain: schema: type: string contentMediaType: text/plain example: '"0d35dc3820e3022bcf9145fc3ec5be69--gzip"' Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/Resultwithpersonalizednav' - examples: - currentPageUrl: >- /services/data/v58.0/ui-api/apps/06m58000000fBK2AAM/user-nav-items?formFactor=large eTag: 0d35dc3820e3022bcf9145fc3ec5be69 navItems: - availableInClassic: true availableInLightning: true color: FF538A content: >- https://pozil-dev-ed.my.salesforce.com/lightning/page/home custom: false developerName: standard-home iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/home_120.png id: 0Qk4H0000009kokSAA itemType: Standard label: Home objectApiName: Home objectLabel: objectLabelPlural: pageReference: attributes: pageName: home state: {} type: standard__namedPage standardType: Home - availableInClassic: true availableInLightning: true color: FF5D2D content: https://pozil-dev-ed.my.salesforce.com/006/o custom: false developerName: standard-Opportunity iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/opportunity_120.png id: 0Qk4H0000009kolSAA itemType: Entity label: Opportunities objectApiName: Opportunity objectLabel: Opportunity objectLabelPlural: Opportunities pageReference: attributes: objectApiName: Opportunity actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: FF5D2D content: https://pozil-dev-ed.my.salesforce.com/00Q/o custom: false developerName: standard-Lead iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/lead_120.png id: 0Qk4H0000009komSAA itemType: Entity label: Leads objectApiName: Lead objectLabel: Lead objectLabelPlural: Leads pageReference: attributes: objectApiName: Lead actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: false availableInLightning: true color: 3BA755 content: https://pozil-dev-ed.my.salesforce.com/00T/o custom: false developerName: standard-Task iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/task_120.png id: 0Qk4H0000009konSAA itemType: Standard label: Tasks objectApiName: Task objectLabel: Task objectLabelPlural: Tasks pageReference: attributes: objectApiName: Task actionName: home state: {} type: standard__objectPage standardType: Tasks - availableInClassic: true availableInLightning: true color: '939393' content: >- https://pozil-dev-ed.my.salesforce.com/_ui/core/chatter/files/FileTabPage custom: false developerName: standard-File iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/file_120.png id: 0Qk4H0000009kooSAA itemType: Entity label: Files objectApiName: ContentDocument objectLabel: objectLabelPlural: pageReference: attributes: objectApiName: ContentDocument actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: '5867E8' content: https://pozil-dev-ed.my.salesforce.com/001/o custom: false developerName: standard-Account iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_120.png id: 0Qk4H0000009kopSAA itemType: Entity label: Accounts objectApiName: Account objectLabel: Account objectLabelPlural: Accounts pageReference: attributes: objectApiName: Account actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: '5867E8' content: https://pozil-dev-ed.my.salesforce.com/003/o custom: false developerName: standard-Contact iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/contact_120.png id: 0Qk4H0000009koqSAA itemType: Entity label: Contacts objectApiName: Contact objectLabel: Contact objectLabelPlural: Contacts pageReference: attributes: objectApiName: Contact actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: FF538A content: https://pozil-dev-ed.my.salesforce.com/01Z/o custom: false developerName: standard-Dashboard iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/dashboard_120.png id: 0Qk4H0000009korSAA itemType: Standard label: Dashboards objectApiName: Dashboard objectLabel: Dashboard objectLabelPlural: Dashboards pageReference: attributes: objectApiName: Dashboard actionName: home state: {} type: standard__objectPage standardType: Dashboards - availableInClassic: true availableInLightning: true color: 06A59A content: https://pozil-dev-ed.my.salesforce.com/00O/o custom: false developerName: standard-report iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/report_120.png id: 0Qk4H0000009kosSAA itemType: Standard label: Reports objectApiName: Report objectLabel: Report objectLabelPlural: Reports pageReference: attributes: objectApiName: Report actionName: home state: {} type: standard__objectPage standardType: Reports - availableInClassic: false availableInLightning: true color: 1B96FF content: custom: false developerName: standard-Feed iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/feed_120.png id: 0Qk4H0000009kotSAA itemType: Standard label: Chatter objectApiName: Feed objectLabel: objectLabelPlural: pageReference: attributes: pageName: chatter state: {} type: standard__namedPage standardType: Feed - availableInClassic: true availableInLightning: true color: 1B96FF content: >- https://pozil-dev-ed.my.salesforce.com/_ui/core/chatter/groups/GroupListPage custom: false developerName: standard-CollaborationGroup iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/groups_120.png id: 0Qk4H0000009kouSAA itemType: Standard label: Groups objectApiName: CollaborationGroup objectLabel: Group objectLabelPlural: Groups pageReference: attributes: objectApiName: CollaborationGroup actionName: home state: {} type: standard__objectPage standardType: Groups - availableInClassic: true availableInLightning: true color: 1B96FF content: >- https://pozil-dev-ed.my.salesforce.com/_ui/core/chatter/people/PeopleListPage custom: false developerName: standard-OtherUserProfile iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/user_120.png id: 0Qk4H0000009kovSAA itemType: Standard label: People objectApiName: User objectLabel: User objectLabelPlural: People pageReference: attributes: objectApiName: User actionName: home state: {} type: standard__objectPage standardType: People - availableInClassic: true availableInLightning: true color: FF5D2D content: https://pozil-dev-ed.my.salesforce.com/500/o custom: false developerName: standard-Case iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/case_120.png id: 0Qk4H0000009kowSAA itemType: Entity label: Cases objectApiName: Case objectLabel: Case objectLabelPlural: Cases pageReference: attributes: objectApiName: Case actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: false availableInLightning: true color: FF538A content: https://pozil-dev-ed.my.salesforce.com/00U/o custom: false developerName: standard-Event iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/event_120.png id: 0Qk4H0000009koxSAA itemType: Standard label: Calendar objectApiName: Event objectLabel: Event objectLabelPlural: Events pageReference: attributes: objectApiName: Event actionName: home state: {} type: standard__objectPage standardType: Events - availableInClassic: true availableInLightning: true color: 3BA755 content: >- https://pozil-dev-ed.my.salesforce.com/_ui/sales/forecasting/ui/ForecastingTabPage custom: false developerName: standard-Forecasting3 iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/forecasts_120.png id: 0Qk4H0000009koySAA itemType: Standard label: Forecasts objectApiName: Forecasting3 objectLabel: objectLabelPlural: pageReference: attributes: pageName: forecasting state: {} type: standard__namedPage standardType: Forecasting3 nextPageUrl: contentMediaType: application/json;charset=UTF-8 example: currentPageUrl: >- /services/data/v58.0/ui-api/apps/06m58000000fBK2AAM/user-nav-items?formFactor=large eTag: 0d35dc3820e3022bcf9145fc3ec5be69 navItems: - availableInClassic: true availableInLightning: true color: FF538A content: https://pozil-dev-ed.my.salesforce.com/lightning/page/home custom: false developerName: standard-home iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/home_120.png id: 0Qk4H0000009kokSAA itemType: Standard label: Home objectApiName: Home objectLabel: objectLabelPlural: pageReference: attributes: pageName: home state: {} type: standard__namedPage standardType: Home - availableInClassic: true availableInLightning: true color: FF5D2D content: https://pozil-dev-ed.my.salesforce.com/006/o custom: false developerName: standard-Opportunity iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/opportunity_120.png id: 0Qk4H0000009kolSAA itemType: Entity label: Opportunities objectApiName: Opportunity objectLabel: Opportunity objectLabelPlural: Opportunities pageReference: attributes: objectApiName: Opportunity actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: FF5D2D content: https://pozil-dev-ed.my.salesforce.com/00Q/o custom: false developerName: standard-Lead iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/lead_120.png id: 0Qk4H0000009komSAA itemType: Entity label: Leads objectApiName: Lead objectLabel: Lead objectLabelPlural: Leads pageReference: attributes: objectApiName: Lead actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: false availableInLightning: true color: 3BA755 content: https://pozil-dev-ed.my.salesforce.com/00T/o custom: false developerName: standard-Task iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/task_120.png id: 0Qk4H0000009konSAA itemType: Standard label: Tasks objectApiName: Task objectLabel: Task objectLabelPlural: Tasks pageReference: attributes: objectApiName: Task actionName: home state: {} type: standard__objectPage standardType: Tasks - availableInClassic: true availableInLightning: true color: '939393' content: >- https://pozil-dev-ed.my.salesforce.com/_ui/core/chatter/files/FileTabPage custom: false developerName: standard-File iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/file_120.png id: 0Qk4H0000009kooSAA itemType: Entity label: Files objectApiName: ContentDocument objectLabel: objectLabelPlural: pageReference: attributes: objectApiName: ContentDocument actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: '5867E8' content: https://pozil-dev-ed.my.salesforce.com/001/o custom: false developerName: standard-Account iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_120.png id: 0Qk4H0000009kopSAA itemType: Entity label: Accounts objectApiName: Account objectLabel: Account objectLabelPlural: Accounts pageReference: attributes: objectApiName: Account actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: '5867E8' content: https://pozil-dev-ed.my.salesforce.com/003/o custom: false developerName: standard-Contact iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/contact_120.png id: 0Qk4H0000009koqSAA itemType: Entity label: Contacts objectApiName: Contact objectLabel: Contact objectLabelPlural: Contacts pageReference: attributes: objectApiName: Contact actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: FF538A content: https://pozil-dev-ed.my.salesforce.com/01Z/o custom: false developerName: standard-Dashboard iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/dashboard_120.png id: 0Qk4H0000009korSAA itemType: Standard label: Dashboards objectApiName: Dashboard objectLabel: Dashboard objectLabelPlural: Dashboards pageReference: attributes: objectApiName: Dashboard actionName: home state: {} type: standard__objectPage standardType: Dashboards - availableInClassic: true availableInLightning: true color: 06A59A content: https://pozil-dev-ed.my.salesforce.com/00O/o custom: false developerName: standard-report iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/report_120.png id: 0Qk4H0000009kosSAA itemType: Standard label: Reports objectApiName: Report objectLabel: Report objectLabelPlural: Reports pageReference: attributes: objectApiName: Report actionName: home state: {} type: standard__objectPage standardType: Reports - availableInClassic: false availableInLightning: true color: 1B96FF content: custom: false developerName: standard-Feed iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/feed_120.png id: 0Qk4H0000009kotSAA itemType: Standard label: Chatter objectApiName: Feed objectLabel: objectLabelPlural: pageReference: attributes: pageName: chatter state: {} type: standard__namedPage standardType: Feed - availableInClassic: true availableInLightning: true color: 1B96FF content: >- https://pozil-dev-ed.my.salesforce.com/_ui/core/chatter/groups/GroupListPage custom: false developerName: standard-CollaborationGroup iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/groups_120.png id: 0Qk4H0000009kouSAA itemType: Standard label: Groups objectApiName: CollaborationGroup objectLabel: Group objectLabelPlural: Groups pageReference: attributes: objectApiName: CollaborationGroup actionName: home state: {} type: standard__objectPage standardType: Groups - availableInClassic: true availableInLightning: true color: 1B96FF content: >- https://pozil-dev-ed.my.salesforce.com/_ui/core/chatter/people/PeopleListPage custom: false developerName: standard-OtherUserProfile iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/user_120.png id: 0Qk4H0000009kovSAA itemType: Standard label: People objectApiName: User objectLabel: User objectLabelPlural: People pageReference: attributes: objectApiName: User actionName: home state: {} type: standard__objectPage standardType: People - availableInClassic: true availableInLightning: true color: FF5D2D content: https://pozil-dev-ed.my.salesforce.com/500/o custom: false developerName: standard-Case iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/case_120.png id: 0Qk4H0000009kowSAA itemType: Entity label: Cases objectApiName: Case objectLabel: Case objectLabelPlural: Cases pageReference: attributes: objectApiName: Case actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: false availableInLightning: true color: FF538A content: https://pozil-dev-ed.my.salesforce.com/00U/o custom: false developerName: standard-Event iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/event_120.png id: 0Qk4H0000009koxSAA itemType: Standard label: Calendar objectApiName: Event objectLabel: Event objectLabelPlural: Events pageReference: attributes: objectApiName: Event actionName: home state: {} type: standard__objectPage standardType: Events - availableInClassic: true availableInLightning: true color: 3BA755 content: >- https://pozil-dev-ed.my.salesforce.com/_ui/sales/forecasting/ui/ForecastingTabPage custom: false developerName: standard-Forecasting3 iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/forecasts_120.png id: 0Qk4H0000009koySAA itemType: Standard label: Forecasts objectApiName: Forecasting3 objectLabel: objectLabelPlural: pageReference: attributes: pageName: forecasting state: {} type: standard__namedPage standardType: Forecasting3 nextPageUrl: deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK put: tags: - Items - Navigation - Personalized - Update summary: Salesforce Update Personalized Navigation Items description: >- Updates the order of a user’s personalized navigation items (tabs) and adds a navigation item to the list in the order specified. operationId: UpdatePersonalizedNavigationItems parameters: - name: APP_ID in: path description: Application ID required: true schema: type: string example: '500123' responses: '200': description: '' headers: {} deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] /data/v64.0/ui-api/nav-items: get: tags: - All - Get - Items - Navigation summary: Salesforce Get All Navigation Items description: Gets all navigation items (tabs) that the user has access to. operationId: GetAllNavigationItems parameters: [] responses: '200': description: OK headers: Date: content: text/plain: schema: type: string contentMediaType: text/plain example: Fri, 06 Oct 2023 09:45:07 GMT Strict-Transport-Security: content: text/plain: schema: type: string contentMediaType: text/plain example: max-age=63072000; includeSubDomains X-Content-Type-Options: content: text/plain: schema: type: string contentMediaType: text/plain example: nosniff X-Robots-Tag: content: text/plain: schema: type: string contentMediaType: text/plain example: none Cache-Control: content: text/plain: schema: type: string contentMediaType: text/plain example: no-cache,must-revalidate,max-age=0,no-store,private ETag: content: text/plain: schema: type: string contentMediaType: text/plain example: '"425dfe9232c5bd0e9c6e4b94771c91b8--gzip"' Vary: content: text/plain: schema: type: string contentMediaType: text/plain example: Accept-Encoding Content-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: gzip Transfer-Encoding: content: text/plain: schema: type: string contentMediaType: text/plain example: chunked content: application/json;charset=UTF-8: schema: allOf: - $ref: '#/components/schemas/GetAllNavigationItems' - examples: - currentPageUrl: >- /services/data/v58.0/ui-api/nav-items?formFactor=Small&page=1&pageSize=5 eTag: 425dfe9232c5bd0e9c6e4b94771c91b8 navItems: - availableInClassic: true availableInLightning: true color: content: https://pozil-dev-ed.my.salesforce.com/4nK/o custom: false developerName: standard-AssetStatePeriod iconUrl: id: itemType: Entity label: Asset State Periods objectApiName: AssetStatePeriod objectLabel: Asset State Period objectLabelPlural: Asset State Periods pageReference: attributes: objectApiName: AssetStatePeriod actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: content: https://pozil-dev-ed.my.salesforce.com/02i/o custom: false developerName: standard-Asset iconUrl: id: itemType: Entity label: Assets objectApiName: Asset objectLabel: Asset objectLabelPlural: Assets pageReference: attributes: objectApiName: Asset actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: content: https://pozil-dev-ed.my.salesforce.com/0cI/o custom: false developerName: standard-AuthorizationForm iconUrl: id: itemType: Entity label: Authorization Form objectApiName: AuthorizationForm objectLabel: Authorization Form objectLabelPlural: Authorization Forms pageReference: attributes: objectApiName: AuthorizationForm actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: content: https://pozil-dev-ed.my.salesforce.com/0cK/o custom: false developerName: standard-AuthorizationFormConsent iconUrl: id: itemType: Entity label: Authorization Form Consent objectApiName: AuthorizationFormConsent objectLabel: Authorization Form Consent objectLabelPlural: Authorization Form Consents pageReference: attributes: objectApiName: AuthorizationFormConsent actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: content: https://pozil-dev-ed.my.salesforce.com/0cM/o custom: false developerName: standard-AuthorizationFormDataUse iconUrl: id: itemType: Entity label: Authorization Form Data Use objectApiName: AuthorizationFormDataUse objectLabel: Authorization Form Data Use objectLabelPlural: Authorization Form Data Uses pageReference: attributes: objectApiName: AuthorizationFormDataUse actionName: home state: {} type: standard__objectPage standardType: nextPageUrl: >- /services/data/v58.0/ui-api/nav-items?formFactor=Small&page=2&pageSize=5 contentMediaType: application/json;charset=UTF-8 example: currentPageUrl: >- /services/data/v58.0/ui-api/nav-items?formFactor=Small&page=1&pageSize=5 eTag: 425dfe9232c5bd0e9c6e4b94771c91b8 navItems: - availableInClassic: true availableInLightning: true color: content: https://pozil-dev-ed.my.salesforce.com/4nK/o custom: false developerName: standard-AssetStatePeriod iconUrl: id: itemType: Entity label: Asset State Periods objectApiName: AssetStatePeriod objectLabel: Asset State Period objectLabelPlural: Asset State Periods pageReference: attributes: objectApiName: AssetStatePeriod actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: content: https://pozil-dev-ed.my.salesforce.com/02i/o custom: false developerName: standard-Asset iconUrl: id: itemType: Entity label: Assets objectApiName: Asset objectLabel: Asset objectLabelPlural: Assets pageReference: attributes: objectApiName: Asset actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: content: https://pozil-dev-ed.my.salesforce.com/0cI/o custom: false developerName: standard-AuthorizationForm iconUrl: id: itemType: Entity label: Authorization Form objectApiName: AuthorizationForm objectLabel: Authorization Form objectLabelPlural: Authorization Forms pageReference: attributes: objectApiName: AuthorizationForm actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: content: https://pozil-dev-ed.my.salesforce.com/0cK/o custom: false developerName: standard-AuthorizationFormConsent iconUrl: id: itemType: Entity label: Authorization Form Consent objectApiName: AuthorizationFormConsent objectLabel: Authorization Form Consent objectLabelPlural: Authorization Form Consents pageReference: attributes: objectApiName: AuthorizationFormConsent actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: content: https://pozil-dev-ed.my.salesforce.com/0cM/o custom: false developerName: standard-AuthorizationFormDataUse iconUrl: id: itemType: Entity label: Authorization Form Data Use objectApiName: AuthorizationFormDataUse objectLabel: Authorization Form Data Use objectLabelPlural: Authorization Form Data Uses pageReference: attributes: objectApiName: AuthorizationFormDataUse actionName: home state: {} type: standard__objectPage standardType: nextPageUrl: >- /services/data/v58.0/ui-api/nav-items?formFactor=Small&page=2&pageSize=5 deprecated: false servers: - url: https://services variables: {} x-api-evangelist-processing: PascalCaseOperationSummaries: true ChooseTags: true x-microcks-operation: delay: 0 dispatcher: FALLBACK parameters: [] components: schemas: Registration-InitializeRequest: title: Registration-InitializeRequest required: - userdata - customdata - password - recaptcha - verificationmethod type: object properties: userdata: $ref: '#/components/schemas/Userdata' customdata: $ref: '#/components/schemas/Customdata' password: type: string example: example_value recaptcha: type: string example: example_value verificationmethod: type: string example: example_value examples: - userdata: firstName: userFirstName lastName: userLastName email: username: customdata: mobilePhone: '+12035408967' streetAddress: 12 N Lands End Rd city: Lantana state: Florida zip: '20537' privacyPolicy: true password: Test123! recaptcha: verificationmethod: email Userdata: title: Userdata required: - firstName - lastName - email - username type: object properties: firstName: type: string example: example_value lastName: type: string example: example_value email: type: string example: user@example.com username: type: string example: example_value examples: - firstName: userFirstName lastName: userLastName email: username: Customdata: title: Customdata required: - mobilePhone - streetAddress - city - state - zip - privacyPolicy type: object properties: mobilePhone: type: string example: example_value streetAddress: type: string example: example_value city: type: string example: example_value state: type: string example: example_value zip: type: string example: example_value privacyPolicy: type: boolean example: true examples: - mobilePhone: '+12035408967' streetAddress: 12 N Lands End Rd city: Lantana state: Florida zip: '20537' privacyPolicy: true ForgotPassword-InitializeRequest: title: ForgotPassword-InitializeRequest required: - username - recaptcha type: object properties: username: type: string example: example_value recaptcha: type: string example: example_value examples: - username: recaptcha: ForgotPassword-ChangePasswordRequest: title: ForgotPassword-ChangePasswordRequest required: - username - newpassword - otp type: object properties: username: type: string example: example_value newpassword: type: string example: example_value otp: type: string example: example_value examples: - username: newpassword: otp: PasswordlessLogin-InitializeRequest: title: PasswordlessLogin-InitializeRequest required: - username - recaptcha - verificationmethod type: object properties: username: type: string example: example_value recaptcha: type: string example: example_value verificationmethod: type: string example: example_value examples: - username: recaptcha: verificationmethod: email or sms SuccessfulJWTBearerTokenFlow: title: SuccessfulJWTBearerTokenFlow required: - access_token - scope - instance_url - id - token_type type: object properties: access_token: type: string example: CAUQAA scope: type: string example: example_value instance_url: type: string example: https://www.example.com id: type: string example: abc123 token_type: type: string example: CAUQAA examples: - access_token: scope: web openid api full instance_url: https:// id: https://login.salesforce.com/id/00D.../005... token_type: Bearer SuccessfulOAuthUsernamePasswordLogin: title: SuccessfulOAuthUsernamePasswordLogin required: - access_token - instance_url - id - token_type - issued_at - signature type: object properties: access_token: type: string example: CAUQAA instance_url: type: string example: https://www.example.com id: type: string example: abc123 token_type: type: string example: CAUQAA issued_at: type: string example: '2026-01-15T10:30:00Z' signature: type: string example: example_value examples: - access_token: ACCESS_TOKEN_GOES_HERE instance_url: https://pozil-dev-ed.my.salesforce.com id: >- https://login.salesforce.com/id/00D58000000arpqEAA/00558000000yFyDAAU token_type: Bearer issued_at: '1609942615640' signature: SIGNATURE_GOES_HERE SuccessfulWebServerFlow2: title: SuccessfulWebServerFlow2 required: - access_token - refresh_token - signature - scope - id_token - instance_url - id - token_type - issued_at type: object properties: access_token: type: string example: CAUQAA refresh_token: type: string example: CAUQAA signature: type: string example: example_value scope: type: string example: example_value id_token: type: string example: CAUQAA instance_url: type: string example: https://www.example.com id: type: string example: abc123 token_type: type: string example: CAUQAA issued_at: type: string example: '2026-01-15T10:30:00Z' examples: - access_token: refresh_token: signature: scope: refresh_token full id_token: instance_url: id: https://login.salesforce.com/id/00D.../005... token_type: Bearer issued_at: SuccessfulClientCredentialsFlow: title: SuccessfulClientCredentialsFlow required: - access_token - signature - scope - instance_url - id - token_type - issued_at - api_instance_url type: object properties: access_token: type: string example: CAUQAA signature: type: string example: example_value scope: type: string example: example_value instance_url: type: string example: https://www.example.com id: type: string example: abc123 token_type: type: string example: CAUQAA issued_at: type: string example: '2026-01-15T10:30:00Z' api_instance_url: type: string example: https://www.example.com examples: - access_token: signature: scope: instance_url: https:// id: https://login.salesforce.com/id/00D.../005... token_type: Bearer issued_at: api_instance_url: https://api.salesforce.com SuccessfulClientCredentialsFlow-basicauthorizationheader: title: SuccessfulClientCredentialsFlow-basicauthorizationheader required: - access_token - signature - scope - instance_url - id - token_type - issued_at - api_instance_url type: object properties: access_token: type: string example: CAUQAA signature: type: string example: example_value scope: type: string example: example_value instance_url: type: string example: https://www.example.com id: type: string example: abc123 token_type: type: string example: CAUQAA issued_at: type: string example: '2026-01-15T10:30:00Z' api_instance_url: type: string example: https://www.example.com examples: - access_token: signature: scope: instance_url: https:// id: https://login.salesforce.com/id/00D.../005... token_type: Bearer issued_at: api_instance_url: https://api.salesforce.com SuccessfulDeviceFlow2: title: SuccessfulDeviceFlow2 required: - access_token - refresh_token - signature - scope - id_token - instance_url - id - token_type - issued_at type: object properties: access_token: type: string example: CAUQAA refresh_token: type: string example: CAUQAA signature: type: string example: example_value scope: type: string example: example_value id_token: type: string example: CAUQAA instance_url: type: string example: https://www.example.com id: type: string example: abc123 token_type: type: string example: CAUQAA issued_at: type: string example: '2026-01-15T10:30:00Z' examples: - access_token: refresh_token: signature: DD9WZJyeKtTaY9QumwdCdGoSSTsCVpWegA0Rahzf5e8= scope: id_token: instance_url: https:// id: https://login.salesforce.com/id/00D.../005... token_type: Bearer issued_at: SuccessfulAssetTokenFlow: title: SuccessfulAssetTokenFlow required: - access_token - issued_token_type - token_type - expires_in type: object properties: access_token: type: string example: CAUQAA issued_token_type: type: string example: CAUQAA token_type: type: string example: CAUQAA expires_in: type: integer contentEncoding: int32 example: 10 examples: - access_token: issued_token_type: urn:ietf:params:oauth:token-type:jwt token_type: Bearer expires_in: 60 SuccessfulRefreshToken: title: SuccessfulRefreshToken required: - access_token - signature - scope - id_token - instance_url - id - token_type - issued_at type: object properties: access_token: type: string example: CAUQAA signature: type: string example: example_value scope: type: string example: example_value id_token: type: string example: CAUQAA instance_url: type: string example: https://www.example.com id: type: string example: abc123 token_type: type: string example: CAUQAA issued_at: type: string example: '2026-01-15T10:30:00Z' examples: - access_token: signature: scope: id_token: id: https://login.salesforce.com/id/00D.../005... token_type: Bearer issued_at: SuccessfulUserInfo: title: SuccessfulUserInfo required: - sub - user_id - organization_id - preferred_username - nickname - name - email - email_verified - given_name - family_name - zoneinfo - photos - profile - picture - address - is_salesforce_integration_user - urls - active - user_type - language - locale - utcOffset - updated_at - is_app_installed type: object properties: sub: type: string example: example_value user_id: type: string example: '500123' organization_id: type: string example: '500123' preferred_username: type: string example: example_value nickname: type: string example: example_value name: type: string example: Example Title email: type: string example: user@example.com email_verified: type: boolean example: user@example.com given_name: type: string example: example_value family_name: type: string example: example_value zoneinfo: type: string example: example_value photos: $ref: '#/components/schemas/Photos' profile: type: string example: example_value picture: type: string example: example_value address: $ref: '#/components/schemas/Address' is_salesforce_integration_user: type: boolean example: true urls: $ref: '#/components/schemas/Urls' active: type: boolean example: true user_type: type: string example: example_value language: type: string example: example_value locale: type: string example: example_value utcOffset: type: integer contentEncoding: int32 example: 10 updated_at: type: string example: '2026-01-15T10:30:00Z' is_app_installed: type: boolean example: true examples: - sub: https://login.salesforce.com/id/00D.../005... user_id: 005... organization_id: 00D... preferred_username: nickname: name: email: email_verified: true given_name: family_name: zoneinfo: Europe/Paris photos: picture: https:///profilephoto/005/F thumbnail: https:///profilephoto/005/T profile: https:///005 picture: https:///profilephoto/005/F address: country: FR is_salesforce_integration_user: false urls: enterprise: https:///services/Soap/c/{version}/00D... metadata: https:///services/Soap/m/{version}/00D... partner: https:///services/Soap/u/{version}/00D... rest: https:///services/data/v{version}/ sobjects: https:///services/data/v{version}/sobjects/ search: https:///services/data/v{version}/search/ query: https:///services/data/v{version}/query/ recent: https:///services/data/v{version}/recent/ tooling_soap: https:///services/Soap/T/{version}/00D... tooling_rest: https:///services/data/v{version}/tooling/ profile: https:///0052o00000DOJ1PAAX feeds: https:///services/data/v{version}/chatter/feeds groups: https:///services/data/v{version}/chatter/groups users: https:///services/data/v{version}/chatter/users feed_items: https:///services/data/v{version}/chatter/feed-items feed_elements: https:///services/data/v{version}/chatter/feed-elements custom_domain: https:// active: true user_type: STANDARD language: en_US locale: fr_FR_EURO utcOffset: 3600000 updated_at: is_app_installed: true Photos: title: Photos required: - picture - thumbnail type: object properties: picture: type: string example: example_value thumbnail: type: string example: example_value examples: - picture: https:///profilephoto/005/F thumbnail: https:///profilephoto/005/T Address: title: Address required: - country type: object properties: country: type: string example: 42 examples: - country: FR Urls: title: Urls required: - enterprise - metadata - partner - rest - sobjects - search - query - recent - tooling_soap - tooling_rest - profile - feeds - groups - users - feed_items - feed_elements - custom_domain type: object properties: enterprise: type: string example: example_value metadata: type: string example: example_value partner: type: string example: example_value rest: type: string example: example_value sobjects: type: string example: example_value search: type: string example: example_value query: type: string example: example_value recent: type: string example: example_value tooling_soap: type: string example: example_value tooling_rest: type: string example: example_value profile: type: string example: example_value feeds: type: string example: example_value groups: type: string example: example_value users: type: string example: example_value feed_items: type: string example: example_value feed_elements: type: string example: example_value custom_domain: type: string example: example_value examples: - enterprise: https:///services/Soap/c/{version}/00D... metadata: https:///services/Soap/m/{version}/00D... partner: https:///services/Soap/u/{version}/00D... rest: https:///services/data/v{version}/ sobjects: https:///services/data/v{version}/sobjects/ search: https:///services/data/v{version}/search/ query: https:///services/data/v{version}/query/ recent: https:///services/data/v{version}/recent/ tooling_soap: https:///services/Soap/T/{version}/00D... tooling_rest: https:///services/data/v{version}/tooling/ profile: https:///0052o00000DOJ1PAAX feeds: https:///services/data/v{version}/chatter/feeds groups: https:///services/data/v{version}/chatter/groups users: https:///services/data/v{version}/chatter/users feed_items: https:///services/data/v{version}/chatter/feed-items feed_elements: https:///services/data/v{version}/chatter/feed-elements custom_domain: https:// SuccessfulOpenIDConnectDiscoveryEndpoint: title: SuccessfulOpenIDConnectDiscoveryEndpoint required: - end_session_endpoint - frontchannel_logout_supported - frontchannel_logout_session_supported - issuer - authorization_endpoint - token_endpoint - revocation_endpoint - userinfo_endpoint - jwks_uri - registration_endpoint - introspection_endpoint - scopes_supported - response_types_supported - subject_types_supported - id_token_signing_alg_values_supported - display_values_supported - token_endpoint_auth_methods_supported - claims_supported type: object properties: end_session_endpoint: type: string example: example_value frontchannel_logout_supported: type: boolean example: true frontchannel_logout_session_supported: type: boolean example: true issuer: type: string example: example_value authorization_endpoint: type: string example: example_value token_endpoint: type: string example: CAUQAA revocation_endpoint: type: string example: example_value userinfo_endpoint: type: string example: example_value jwks_uri: type: string example: example_value registration_endpoint: type: string example: example_value introspection_endpoint: type: string example: example_value scopes_supported: type: array items: type: string description: '' example: [] response_types_supported: type: array items: type: string description: '' example: [] subject_types_supported: type: array items: type: string description: '' example: [] id_token_signing_alg_values_supported: type: array items: type: string description: '' example: CAUQAA display_values_supported: type: array items: type: string description: '' example: [] token_endpoint_auth_methods_supported: type: array items: type: string description: '' example: CAUQAA claims_supported: type: array items: type: string description: '' example: [] examples: - end_session_endpoint: https:///services/auth/idp/oidc/logout frontchannel_logout_supported: true frontchannel_logout_session_supported: false issuer: https:// authorization_endpoint: https:///services/oauth2/authorize token_endpoint: https:///services/oauth2/token revocation_endpoint: https:///services/oauth2/revoke userinfo_endpoint: https:///services/oauth2/userinfo jwks_uri: https:///id/keys registration_endpoint: https:///services/oauth2/register introspection_endpoint: https:///services/oauth2/introspect scopes_supported: - cdp_ingest_api - custom_permissions - cdp_segment_api - content - cdp_api - chatbot_api - cdp_identityresolution_api - interaction_api - wave_api - web - cdp_calculated_insight_api - einstein_gpt_api - offline_access - id - api - eclair_api - email - pardot_api - lightning - visualforce - cdp_query_api - sfap_api - address - openid - profile - cdp_profile_api - refresh_token - phone - user_registration_api - pwdless_login_api - chatter_api - full - forgot_password response_types_supported: - code - token - token id_token subject_types_supported: - public id_token_signing_alg_values_supported: - RS256 display_values_supported: - page - popup - touch token_endpoint_auth_methods_supported: - client_secret_post - client_secret_basic - private_key_jwt claims_supported: - active - address - email - email_verified - family_name - given_name - is_app_installed - language - locale - name - nickname - organization_id - phone_number - phone_number_verified - photos - picture - preferred_username - profile - sub - updated_at - urls - user_id - user_type - zoneinfo SuccessfulAuthenticationConfigurationEndpoint: title: SuccessfulAuthenticationConfigurationEndpoint required: - OrgId - Url - MobileSDK - LoginPage - SamlProviders - AuthProviders - CertificateLogin - LoginPageType - LoginPageTypeConfigs type: object properties: OrgId: type: string example: '500123' Url: type: string example: https://www.example.com MobileSDK: $ref: '#/components/schemas/MobileSDK' LoginPage: type: - string - 'null' example: example_value SamlProviders: type: array items: type: string description: '' example: [] AuthProviders: type: array items: type: string description: '' example: [] CertificateLogin: type: - string - 'null' example: example_value LoginPageType: type: string example: example_value LoginPageTypeConfigs: type: object example: example_value examples: - OrgId: 00D2o000000i6mB Url: https:// MobileSDK: UseiOSNativeBrowserForAuthentication: false UseAndroidNativeBrowserForAuthentication: false shareBrowserSessionIOS: false shareBrowserSessionAndroid: false LoginPage: SamlProviders: [] AuthProviders: [] CertificateLogin: LoginPageType: standard LoginPageTypeConfigs: {} MobileSDK: title: MobileSDK required: - UseiOSNativeBrowserForAuthentication - UseAndroidNativeBrowserForAuthentication - shareBrowserSessionIOS - shareBrowserSessionAndroid type: object properties: UseiOSNativeBrowserForAuthentication: type: boolean example: true UseAndroidNativeBrowserForAuthentication: type: boolean example: true shareBrowserSessionIOS: type: boolean example: true shareBrowserSessionAndroid: type: boolean example: '500123' examples: - UseiOSNativeBrowserForAuthentication: false UseAndroidNativeBrowserForAuthentication: false shareBrowserSessionIOS: false shareBrowserSessionAndroid: false OpenIDConnectDynamicClientRegistrationEndpointRequest: title: OpenIDConnectDynamicClientRegistrationEndpointRequest required: - redirect_uris - response_types - grant_types - application_type - contacts - client_name type: object properties: redirect_uris: type: array items: type: string description: '' example: [] response_types: type: array items: type: string description: '' example: [] grant_types: type: array items: type: string description: '' example: [] application_type: type: string example: example_value contacts: type: array items: type: string description: '' example: [] client_name: type: string example: example_value examples: - redirect_uris: - http://localhost response_types: - code - token - id_token grant_types: - authorization_code - implicit - refresh_token application_type: web contacts: - abc@sf.com - ve7jtb@example.org client_name: Example Olivier SuccessfulSalesforceKeys: title: SuccessfulSalesforceKeys required: - keys type: object properties: keys: type: array items: $ref: '#/components/schemas/Key' description: '' example: [] examples: - keys: - kty: RSA 'n': e: AQAB alg: RS256 use: sig kid: '248' - kty: RSA 'n': e: AQAB alg: RS256 use: sig kid: '244' - kty: RSA 'n': e: AQAB alg: RS256 use: sig kid: '246' - kty: RSA 'n': e: AQAB alg: RS256 use: sig kid: asset Key: title: Key required: - kty - 'n' - e - alg - use - kid type: object properties: kty: type: string example: example_value 'n': type: string example: example_value e: type: string example: example_value alg: type: string example: example_value use: type: string example: example_value kid: type: string example: '500123' examples: - kty: RSA 'n': e: AQAB alg: RS256 use: sig kid: '248' SuccessfulIDToken: title: SuccessfulIDToken required: - id - asserted_user - user_id - organization_id - username - nick_name - display_name - email - email_verified - first_name - last_name - timezone - photos - addr_street - addr_city - addr_state - addr_country - addr_zip - mobile_phone - mobile_phone_verified - is_lightning_login_user - status - urls - active - user_type - language - locale - utcOffset - last_modified_date - is_app_installed type: object properties: id: type: string example: abc123 asserted_user: type: boolean example: true user_id: type: string example: '500123' organization_id: type: string example: '500123' username: type: string example: example_value nick_name: type: string example: example_value display_name: type: string example: example_value email: type: string example: user@example.com email_verified: type: boolean example: user@example.com first_name: type: string example: example_value last_name: type: string example: example_value timezone: type: string example: example_value photos: $ref: '#/components/schemas/Photos' addr_street: type: - string - 'null' example: example_value addr_city: type: - string - 'null' example: example_value addr_state: type: - string - 'null' example: example_value addr_country: type: string example: 42 addr_zip: type: - string - 'null' example: example_value mobile_phone: type: - string - 'null' example: example_value mobile_phone_verified: type: boolean example: true is_lightning_login_user: type: boolean example: true status: $ref: '#/components/schemas/Status' urls: $ref: '#/components/schemas/Urls' active: type: boolean example: true user_type: type: string example: example_value language: type: string example: example_value locale: type: string example: example_value utcOffset: type: integer contentEncoding: int32 example: 10 last_modified_date: type: string example: example_value is_app_installed: type: boolean example: true examples: - id: https://login.salesforce.com/id/00D.../005... asserted_user: true user_id: 005... organization_id: 00D... username: nick_name: display_name: email: email_verified: true first_name: last_name: timezone: Europe/Paris photos: picture: https:///profilephoto/005/F thumbnail: https:///profilephoto/005/T addr_street: addr_city: addr_state: addr_country: FR addr_zip: mobile_phone: mobile_phone_verified: false is_lightning_login_user: false status: created_date: body: urls: enterprise: https:///services/Soap/c/{version}/00D... metadata: https:///services/Soap/m/{version}/00D... partner: https:///services/Soap/u/{version}/00D... rest: https:///services/data/v{version}/ sobjects: https:///services/data/v{version}/sobjects/ search: https:///services/data/v{version}/search/ query: https:///services/data/v{version}/query/ recent: https:///services/data/v{version}/recent/ tooling_soap: https:///services/Soap/T/{version}/00D... tooling_rest: https:///services/data/v{version}/tooling/ profile: https:///0052o00000DOJ1PAAX feeds: https:///services/data/v{version}/chatter/feeds groups: https:///services/data/v{version}/chatter/groups users: https:///services/data/v{version}/chatter/users feed_items: https:///services/data/v{version}/chatter/feed-items feed_elements: https:///services/data/v{version}/chatter/feed-elements custom_domain: https:// active: true user_type: STANDARD language: en_US locale: fr_FR_EURO utcOffset: 3600000 last_modified_date: is_app_installed: true Status: title: Status required: - created_date - body type: object properties: created_date: type: - string - 'null' example: example_value body: type: - string - 'null' example: example_value examples: - created_date: body: SuccessfulGetJobInfoQuery: title: SuccessfulGetJobInfoQuery required: - id - operation - object - createdById - createdDate - systemModstamp - state - concurrencyMode - contentType - apiVersion - jobType - retries - totalProcessingTime - apiActiveProcessingTime - apexProcessingTime type: object properties: id: type: string example: abc123 operation: type: string example: example_value object: type: string example: example_value createdById: type: string example: '500123' createdDate: type: string example: example_value systemModstamp: type: string example: example_value state: type: string example: example_value concurrencyMode: type: string example: example_value contentType: type: string example: example_value apiVersion: type: integer contentEncoding: int32 example: 10 jobType: type: string example: example_value retries: type: integer contentEncoding: int32 example: 10 totalProcessingTime: type: integer contentEncoding: int32 example: 1700000000000 apiActiveProcessingTime: type: integer contentEncoding: int32 example: 1700000000000 apexProcessingTime: type: integer contentEncoding: int32 example: 1700000000000 examples: - id: 750... operation: insert object: Account createdById: 005... createdDate: systemModstamp: state: Open concurrencyMode: Parallel contentType: CSV apiVersion: 58 jobType: Classic retries: 0 totalProcessingTime: 0 apiActiveProcessingTime: 0 apexProcessingTime: 0 BulkCreateJobRequest: title: BulkCreateJobRequest required: - operation - object - contentType type: object properties: operation: type: string example: example_value object: type: string example: example_value contentType: type: string example: example_value examples: - operation: insert object: Account contentType: CSV SuccessfulBulkCreateJob: title: SuccessfulBulkCreateJob required: - apexProcessingTime - apiActiveProcessingTime - apiVersion - assignmentRuleId - concurrencyMode - contentType - createdById - createdDate - externalIdFieldName - fastPathEnabled - id - numberBatchesCompleted - numberBatchesFailed - numberBatchesInProgress - numberBatchesQueued - numberBatchesTotal - numberRecordsFailed - numberRecordsProcessed - numberRetries - object - operation - state - systemModstamp - totalProcessingTime type: object properties: apexProcessingTime: type: integer contentEncoding: int32 example: 1700000000000 apiActiveProcessingTime: type: integer contentEncoding: int32 example: 1700000000000 apiVersion: type: integer contentEncoding: int32 example: 10 assignmentRuleId: type: - string - 'null' example: '500123' concurrencyMode: type: string example: example_value contentType: type: string example: example_value createdById: type: string example: '500123' createdDate: type: string example: example_value externalIdFieldName: type: - string - 'null' example: example_value fastPathEnabled: type: boolean example: true id: type: string example: abc123 numberBatchesCompleted: type: integer contentEncoding: int32 example: 10 numberBatchesFailed: type: integer contentEncoding: int32 example: 10 numberBatchesInProgress: type: integer contentEncoding: int32 example: 10 numberBatchesQueued: type: integer contentEncoding: int32 example: 10 numberBatchesTotal: type: integer contentEncoding: int32 example: 42 numberRecordsFailed: type: integer contentEncoding: int32 example: 10 numberRecordsProcessed: type: integer contentEncoding: int32 example: 10 numberRetries: type: integer contentEncoding: int32 example: 10 object: type: string example: example_value operation: type: string example: example_value state: type: string example: example_value systemModstamp: type: string example: example_value totalProcessingTime: type: integer contentEncoding: int32 example: 1700000000000 examples: - apexProcessingTime: 0 apiActiveProcessingTime: 0 apiVersion: 58 assignmentRuleId: concurrencyMode: Parallel contentType: CSV createdById: 005... createdDate: externalIdFieldName: fastPathEnabled: false id: 750... numberBatchesCompleted: 0 numberBatchesFailed: 0 numberBatchesInProgress: 0 numberBatchesQueued: 0 numberBatchesTotal: 0 numberRecordsFailed: 0 numberRecordsProcessed: 0 numberRetries: 0 object: operation: insert state: Open systemModstamp: totalProcessingTime: 0 batchInfo: title: batchInfo required: - id - jobId - state - createdDate - systemModstamp - numberRecordsProcessed - numberRecordsFailed - totalProcessingTime - apiActiveProcessingTime - apexProcessingTime type: object properties: id: type: string xml: name: id namespace: http://www.force.com/2009/06/asyncapi/dataload attribute: false wrapped: false example: abc123 jobId: type: string xml: name: jobId namespace: http://www.force.com/2009/06/asyncapi/dataload attribute: false wrapped: false example: '500123' state: type: string xml: name: state namespace: http://www.force.com/2009/06/asyncapi/dataload attribute: false wrapped: false example: example_value createdDate: type: string xml: name: createdDate namespace: http://www.force.com/2009/06/asyncapi/dataload attribute: false wrapped: false example: example_value systemModstamp: type: string xml: name: systemModstamp namespace: http://www.force.com/2009/06/asyncapi/dataload attribute: false wrapped: false example: example_value numberRecordsProcessed: type: integer contentEncoding: int32 xml: name: numberRecordsProcessed namespace: http://www.force.com/2009/06/asyncapi/dataload attribute: false wrapped: false example: 10 numberRecordsFailed: type: integer contentEncoding: int32 xml: name: numberRecordsFailed namespace: http://www.force.com/2009/06/asyncapi/dataload attribute: false wrapped: false example: 10 totalProcessingTime: type: integer contentEncoding: int32 xml: name: totalProcessingTime namespace: http://www.force.com/2009/06/asyncapi/dataload attribute: false wrapped: false example: 1700000000000 apiActiveProcessingTime: type: integer contentEncoding: int32 xml: name: apiActiveProcessingTime namespace: http://www.force.com/2009/06/asyncapi/dataload attribute: false wrapped: false example: 1700000000000 apexProcessingTime: type: integer contentEncoding: int32 xml: name: apexProcessingTime namespace: http://www.force.com/2009/06/asyncapi/dataload attribute: false wrapped: false example: 1700000000000 xml: name: batchInfo namespace: http://www.force.com/2009/06/asyncapi/dataload attribute: false wrapped: false BulkCloseJobRequest: title: BulkCloseJobRequest required: - state type: object properties: state: type: string example: example_value examples: - state: Closed SuccessfulBulkCloseJob: title: SuccessfulBulkCloseJob required: - apexProcessingTime - apiActiveProcessingTime - apiVersion - assignmentRuleId - concurrencyMode - contentType - createdById - createdDate - externalIdFieldName - fastPathEnabled - id - numberBatchesCompleted - numberBatchesFailed - numberBatchesInProgress - numberBatchesQueued - numberBatchesTotal - numberRecordsFailed - numberRecordsProcessed - numberRetries - object - operation - state - systemModstamp - totalProcessingTime type: object properties: apexProcessingTime: type: integer contentEncoding: int32 example: 1700000000000 apiActiveProcessingTime: type: integer contentEncoding: int32 example: 1700000000000 apiVersion: type: integer contentEncoding: int32 example: 10 assignmentRuleId: type: - string - 'null' example: '500123' concurrencyMode: type: string example: example_value contentType: type: string example: example_value createdById: type: string example: '500123' createdDate: type: string example: example_value externalIdFieldName: type: - string - 'null' example: example_value fastPathEnabled: type: boolean example: true id: type: string example: abc123 numberBatchesCompleted: type: integer contentEncoding: int32 example: 10 numberBatchesFailed: type: integer contentEncoding: int32 example: 10 numberBatchesInProgress: type: integer contentEncoding: int32 example: 10 numberBatchesQueued: type: integer contentEncoding: int32 example: 10 numberBatchesTotal: type: integer contentEncoding: int32 example: 42 numberRecordsFailed: type: integer contentEncoding: int32 example: 10 numberRecordsProcessed: type: integer contentEncoding: int32 example: 10 numberRetries: type: integer contentEncoding: int32 example: 10 object: type: string example: example_value operation: type: string example: example_value state: type: string example: example_value systemModstamp: type: string example: example_value totalProcessingTime: type: integer contentEncoding: int32 example: 1700000000000 examples: - apexProcessingTime: 64 apiActiveProcessingTime: 225 apiVersion: 58 assignmentRuleId: concurrencyMode: Parallel contentType: CSV createdById: 005... createdDate: externalIdFieldName: fastPathEnabled: false id: 750... numberBatchesCompleted: 1 numberBatchesFailed: 0 numberBatchesInProgress: 0 numberBatchesQueued: 0 numberBatchesTotal: 1 numberRecordsFailed: 0 numberRecordsProcessed: 1 numberRetries: 0 object: operation: insert state: Closed systemModstamp: totalProcessingTime: 403 batchInfoList: title: batchInfoList required: - batchInfo type: object properties: batchInfo: allOf: - $ref: '#/components/schemas/batchInfo' - xml: name: batchInfo namespace: http://www.force.com/2009/06/asyncapi/dataload attribute: false wrapped: false example: example_value xml: name: batchInfoList namespace: http://www.force.com/2009/06/asyncapi/dataload attribute: false wrapped: false SuccessfulCreatejobQueryRequest: title: SuccessfulCreatejobQueryRequest required: - operation - query - contentType - columnDelimiter - lineEnding type: object properties: operation: type: string example: example_value query: type: string example: example_value contentType: type: string example: example_value columnDelimiter: type: string example: example_value lineEnding: type: string example: example_value examples: - operation: query query: SELECT fields FROM object WHERE filter contentType: CSV columnDelimiter: BACKQUOTE | CARET | COMMA | PIPE | SEMICOLON | TAB lineEnding: CRLF | LF SuccessfulCreatejobQuery: title: SuccessfulCreatejobQuery required: - id - operation - object - createdById - createdDate - systemModstamp - state - concurrencyMode - contentType - apiVersion - lineEnding - columnDelimiter type: object properties: id: type: string example: abc123 operation: type: string example: example_value object: type: string example: example_value createdById: type: string example: '500123' createdDate: type: string example: example_value systemModstamp: type: string example: example_value state: type: string example: example_value concurrencyMode: type: string example: example_value contentType: type: string example: example_value apiVersion: type: integer contentEncoding: int32 example: 10 lineEnding: type: string example: example_value columnDelimiter: type: string example: example_value examples: - id: 750... operation: query object: Account createdById: 005... createdDate: systemModstamp: state: UploadComplete concurrencyMode: Parallel contentType: CSV apiVersion: 58 lineEnding: LF columnDelimiter: COMMA AbortaJobQueryRequest: title: AbortaJobQueryRequest required: - state type: object properties: state: type: string example: example_value examples: - state: Aborted AbortaJobQuery: title: AbortaJobQuery required: - id - operation - object - createdById - createdDate - systemModstamp - state - concurrencyMode - contentType - apiVersion type: object properties: id: type: string example: abc123 operation: type: string example: example_value object: type: string example: example_value createdById: type: string example: '500123' createdDate: type: string example: example_value systemModstamp: type: string example: example_value state: type: string example: example_value concurrencyMode: type: string example: example_value contentType: type: string example: example_value apiVersion: type: integer contentEncoding: int32 example: 10 examples: - id: 750... operation: query object: Account createdById: 005... createdDate: systemModstamp: state: Aborted concurrencyMode: Parallel contentType: CSV apiVersion: 58 SuccessfulGetJobInfoQuery1: title: SuccessfulGetJobInfoQuery1 required: - id - operation - object - createdById - createdDate - systemModstamp - state - concurrencyMode - contentType - apiVersion - jobType - lineEnding - columnDelimiter - numberRecordsProcessed - retries - totalProcessingTime type: object properties: id: type: string example: abc123 operation: type: string example: example_value object: type: string example: example_value createdById: type: string example: '500123' createdDate: type: string example: example_value systemModstamp: type: string example: example_value state: type: string example: example_value concurrencyMode: type: string example: example_value contentType: type: string example: example_value apiVersion: type: integer contentEncoding: int32 example: 10 jobType: type: string example: example_value lineEnding: type: string example: example_value columnDelimiter: type: string example: example_value numberRecordsProcessed: type: integer contentEncoding: int32 example: 10 retries: type: integer contentEncoding: int32 example: 10 totalProcessingTime: type: integer contentEncoding: int32 example: 1700000000000 examples: - id: 750... operation: query object: Account createdById: 005... createdDate: systemModstamp: state: JobComplete concurrencyMode: Parallel contentType: CSV apiVersion: 58 jobType: V2Query lineEnding: LF columnDelimiter: COMMA numberRecordsProcessed: 15 retries: 0 totalProcessingTime: 242 GetParallelResultsforaQueryJob: title: GetParallelResultsforaQueryJob required: - resultPages - nextRecordsUrl - done type: object properties: resultPages: type: array items: $ref: '#/components/schemas/ResultPage' description: '' example: [] nextRecordsUrl: type: string example: https://www.example.com done: type: boolean example: true examples: - resultPages: - resultLink: /jobs/query/750R0000000zxr8IAA/results?locator=aBcDeFg4N - resultLink: /jobs/query/750R0000000zxr8IAA/results?locator=HiJkLmN4N - resultLink: /jobs/query/750R0000000zxr8IAA/results?locator=oPQrStU4N - resultLink: /jobs/query/750R0000000zxr8IAA/results?locator=vWxYzz4N - resultLink: /jobs/query/750R0000000zxr8IAA/results?locator=NiKmABC4N nextRecordsUrl: /jobs/query/750R0000000zxr8IAA/resultpages?locator=YcApWm4N done: false ResultPage: title: ResultPage required: - resultLink type: object properties: resultLink: type: string example: example_value examples: - resultLink: /jobs/query/750R0000000zxr8IAA/results?locator=aBcDeFg4N SuccessfulGetAllQueryJobs: title: SuccessfulGetAllQueryJobs required: - done - nextRecordsUrl - records type: object properties: done: type: boolean example: true nextRecordsUrl: type: - string - 'null' example: https://www.example.com records: type: array items: $ref: '#/components/schemas/Record' description: '' example: [] examples: - done: true nextRecordsUrl: records: - id: 750... operation: insert object: Account createdById: 005... createdDate: systemModstamp: state: Open concurrencyMode: Parallel contentType: CSV apiVersion: 58 jobType: Classic Record: title: Record required: - id - operation - object - createdById - createdDate - systemModstamp - state - concurrencyMode - contentType - apiVersion - jobType type: object properties: id: type: string example: abc123 operation: type: string example: example_value object: type: string example: example_value createdById: type: string example: '500123' createdDate: type: string example: example_value systemModstamp: type: string example: example_value state: type: string example: example_value concurrencyMode: type: string example: example_value contentType: type: string example: example_value apiVersion: type: integer contentEncoding: int32 example: 10 jobType: type: string example: example_value examples: - id: 750... operation: insert object: Account createdById: 005... createdDate: systemModstamp: state: Open concurrencyMode: Parallel contentType: CSV apiVersion: 58 jobType: Classic CreatejobRequest: title: CreatejobRequest required: - object - operation type: object properties: object: type: string example: example_value operation: type: string example: example_value examples: - object: Asset operation: update SuccessfulCreatejob: title: SuccessfulCreatejob required: - id - operation - object - createdById - createdDate - systemModstamp - state - concurrencyMode - contentType - apiVersion - contentUrl - lineEnding - columnDelimiter type: object properties: id: type: string example: abc123 operation: type: string example: example_value object: type: string example: example_value createdById: type: string example: '500123' createdDate: type: string example: example_value systemModstamp: type: string example: example_value state: type: string example: example_value concurrencyMode: type: string example: example_value contentType: type: string example: example_value apiVersion: type: integer contentEncoding: int32 example: 10 contentUrl: type: string example: https://www.example.com lineEnding: type: string example: example_value columnDelimiter: type: string example: example_value examples: - id: 750... operation: insert object: Account createdById: 005... createdDate: systemModstamp: state: Open concurrencyMode: Parallel contentType: CSV apiVersion: 58 contentUrl: services/data/v58.0/jobs/ingest/750.../batches lineEnding: LF columnDelimiter: COMMA CloseorAbortaJobRequest: title: CloseorAbortaJobRequest required: - state type: object properties: state: type: string example: example_value examples: - state: UploadComplete SuccessfulCloseorAbortaJob: title: SuccessfulCloseorAbortaJob required: - id - operation - object - createdById - createdDate - systemModstamp - state - concurrencyMode - contentType - apiVersion type: object properties: id: type: string example: abc123 operation: type: string example: example_value object: type: string example: example_value createdById: type: string example: '500123' createdDate: type: string example: example_value systemModstamp: type: string example: example_value state: type: string example: example_value concurrencyMode: type: string example: example_value contentType: type: string example: example_value apiVersion: type: integer contentEncoding: int32 example: 10 examples: - id: 750... operation: insert object: Account createdById: 005... createdDate: systemModstamp: state: UploadComplete concurrencyMode: Parallel contentType: CSV apiVersion: 58 SuccessfulGetJobInfo: title: SuccessfulGetJobInfo required: - id - operation - object - createdById - createdDate - systemModstamp - state - concurrencyMode - contentType - apiVersion - jobType - lineEnding - columnDelimiter - numberRecordsProcessed - numberRecordsFailed - retries - totalProcessingTime - apiActiveProcessingTime - apexProcessingTime type: object properties: id: type: string example: abc123 operation: type: string example: example_value object: type: string example: example_value createdById: type: string example: '500123' createdDate: type: string example: example_value systemModstamp: type: string example: example_value state: type: string example: example_value concurrencyMode: type: string example: example_value contentType: type: string example: example_value apiVersion: type: integer contentEncoding: int32 example: 10 jobType: type: string example: example_value lineEnding: type: string example: example_value columnDelimiter: type: string example: example_value numberRecordsProcessed: type: integer contentEncoding: int32 example: 10 numberRecordsFailed: type: integer contentEncoding: int32 example: 10 retries: type: integer contentEncoding: int32 example: 10 totalProcessingTime: type: integer contentEncoding: int32 example: 1700000000000 apiActiveProcessingTime: type: integer contentEncoding: int32 example: 1700000000000 apexProcessingTime: type: integer contentEncoding: int32 example: 1700000000000 examples: - id: 750... operation: insert object: Asset createdById: 005... createdDate: systemModstamp: state: JobComplete concurrencyMode: Parallel contentType: CSV apiVersion: 58 jobType: V2Ingest lineEnding: LF columnDelimiter: COMMA numberRecordsProcessed: 1 numberRecordsFailed: 1 retries: 0 totalProcessingTime: 100 apiActiveProcessingTime: 43 apexProcessingTime: 0 SuccessfullGetAllJobs: title: SuccessfullGetAllJobs required: - done - nextRecordsUrl - records type: object properties: done: type: boolean example: true nextRecordsUrl: type: - string - 'null' example: https://www.example.com records: type: array items: $ref: '#/components/schemas/Record' description: '' example: [] examples: - done: true nextRecordsUrl: records: - id: 750... operation: insert object: Account createdById: 005... createdDate: systemModstamp: state: Open concurrencyMode: Parallel contentType: CSV apiVersion: 58 jobType: Classic CompositeRequest: title: CompositeRequest required: - compositeRequest type: object properties: compositeRequest: type: array items: $ref: '#/components/schemas/CompositeRequest1' description: '' example: [] examples: - compositeRequest: - method: POST url: /services/data/v64.0/sobjects/Account referenceId: refAccount body: Name: Sample Account - method: POST url: /services/data/v64.0/sobjects/Contact referenceId: refContact body: LastName: Sample Contact AccountId: '@{refAccount.id}' CompositeRequest1: title: CompositeRequest1 required: - method - url - referenceId - body type: object properties: method: type: string example: example_value url: type: string example: https://www.example.com referenceId: type: string example: '500123' body: $ref: '#/components/schemas/Body' examples: - method: POST url: /services/data/v64.0/sobjects/Account referenceId: refAccount body: Name: Sample Account Body: title: Body type: object properties: Name: type: string example: Example Title LastName: type: string example: example_value AccountId: type: string example: '500123' examples: - Name: Sample Account SuccessfulComposite: title: SuccessfulComposite required: - compositeResponse type: object properties: compositeResponse: type: array items: $ref: '#/components/schemas/CompositeResponse' description: '' example: [] examples: - compositeResponse: - body: id: 001... success: true errors: [] httpHeaders: Location: /services/data/v53.0/sobjects/Account/001... httpStatusCode: 201 referenceId: refAccount - body: id: 0032o00003WauzJAAR success: true errors: [] httpHeaders: Location: /services/data/v53.0/sobjects/Contact/003... httpStatusCode: 201 referenceId: refContact CompositeResponse: title: CompositeResponse required: - body - httpHeaders - httpStatusCode - referenceId type: object properties: body: $ref: '#/components/schemas/Body1' httpHeaders: $ref: '#/components/schemas/HttpHeaders' httpStatusCode: type: integer contentEncoding: int32 example: 10 referenceId: type: string example: '500123' examples: - body: id: 001... success: true errors: [] httpHeaders: Location: /services/data/v53.0/sobjects/Account/001... httpStatusCode: 201 referenceId: refAccount Body1: title: Body1 required: - id - success - errors type: object properties: id: type: string example: abc123 success: type: boolean example: true errors: type: array items: type: string description: '' example: [] examples: - id: 001... success: true errors: [] HttpHeaders: title: HttpHeaders required: - Location type: object properties: Location: type: string example: example_value examples: - Location: /services/data/v53.0/sobjects/Account/001... CompositeGraphRequest: title: CompositeGraphRequest required: - graphs type: object properties: graphs: type: array items: $ref: '#/components/schemas/Graph' description: '' example: [] examples: - graphs: - graphId: graph1 compositeRequest: - method: POST url: /services/data/v64.0/sobjects/Account/ referenceId: newAccount body: Name: ACME Inc. Custom__c: Hello world - method: GET url: /services/data/v64.0/sobjects/Account/@{newAccount.id} referenceId: newAccountInfo Graph: title: Graph required: - graphId - compositeRequest type: object properties: graphId: type: string example: '500123' compositeRequest: type: array items: $ref: '#/components/schemas/CompositeRequest2' description: '' example: [] examples: - graphId: graph1 compositeRequest: - method: POST url: /services/data/v64.0/sobjects/Account/ referenceId: newAccount body: Name: ACME Inc. Custom__c: Hello world - method: GET url: /services/data/v64.0/sobjects/Account/@{newAccount.id} referenceId: newAccountInfo CompositeRequest2: title: CompositeRequest2 required: - method - url - referenceId type: object properties: method: type: string example: example_value url: type: string example: https://www.example.com referenceId: type: string example: '500123' body: $ref: '#/components/schemas/Body2' examples: - method: POST url: /services/data/v64.0/sobjects/Account/ referenceId: newAccount body: Name: ACME Inc. Custom__c: Hello world Body2: title: Body2 required: - Name - Custom__c type: object properties: Name: type: string example: Example Title Custom__c: type: string example: example_value examples: - Name: ACME Inc. Custom__c: Hello world SuccessfulCompositeGraph: title: SuccessfulCompositeGraph required: - graphs type: object properties: graphs: type: array items: $ref: '#/components/schemas/Graph1' description: '' example: [] examples: - graphs: - graphId: graph1 graphResponse: compositeResponse: - body: id: 0014H00002x6HUhQAM success: true errors: [] httpHeaders: Location: /services/data/v50.0/sobjects/Account/0014H00002x6HUhQAM httpStatusCode: 201 referenceId: newAccount - body: id: 0034H00002JsInQQAV success: true errors: [] httpHeaders: Location: /services/data/v50.0/sobjects/Contact/0034H00002JsInQQAV httpStatusCode: 201 referenceId: newContact isSuccessful: true Graph1: title: Graph1 required: - graphId - graphResponse - isSuccessful type: object properties: graphId: type: string example: '500123' graphResponse: $ref: '#/components/schemas/GraphResponse' isSuccessful: type: boolean example: true examples: - graphId: graph1 graphResponse: compositeResponse: - body: id: 0014H00002x6HUhQAM success: true errors: [] httpHeaders: Location: /services/data/v50.0/sobjects/Account/0014H00002x6HUhQAM httpStatusCode: 201 referenceId: newAccount - body: id: 0034H00002JsInQQAV success: true errors: [] httpHeaders: Location: /services/data/v50.0/sobjects/Contact/0034H00002JsInQQAV httpStatusCode: 201 referenceId: newContact isSuccessful: true GraphResponse: title: GraphResponse required: - compositeResponse type: object properties: compositeResponse: type: array items: $ref: '#/components/schemas/CompositeResponse' description: '' example: [] examples: - compositeResponse: - body: id: 0014H00002x6HUhQAM success: true errors: [] httpHeaders: Location: /services/data/v50.0/sobjects/Account/0014H00002x6HUhQAM httpStatusCode: 201 referenceId: newAccount - body: id: 0034H00002JsInQQAV success: true errors: [] httpHeaders: Location: /services/data/v50.0/sobjects/Contact/0034H00002JsInQQAV httpStatusCode: 201 referenceId: newContact CompositeBatchRequest: title: CompositeBatchRequest required: - haltOnError - batchRequests type: object properties: haltOnError: type: boolean example: true batchRequests: type: array items: $ref: '#/components/schemas/BatchRequest' description: '' example: [] examples: - haltOnError: true batchRequests: - method: GET url: v64.0/query/?q=SELECT+Id,+Name+FROM+Account LIMIT 2 - method: GET url: v64.0/query/?q=SELECT+Id,+Name+FROM+Opportunity LIMIT 2 BatchRequest: title: BatchRequest required: - method - url type: object properties: method: type: string example: example_value url: type: string example: https://www.example.com examples: - method: GET url: v64.0/query/?q=SELECT+Id,+Name+FROM+Account LIMIT 2 SObjectTreeRequest: title: SObjectTreeRequest required: - records type: object properties: records: type: array items: $ref: '#/components/schemas/Record2' description: '' example: [] examples: - records: - attributes: type: Account referenceId: ref1 name: SampleAccount1 phone: '1234567890' website: www.salesforce.com numberOfEmployees: '100' industry: Banking Contacts: records: - attributes: type: Contact referenceId: ref2 lastname: Smith Title: President email: sample@salesforce.com - attributes: type: Contact referenceId: ref3 lastname: Evans title: Vice President email: sample@salesforce.com - attributes: type: Account referenceId: ref4 name: SampleAccount2 phone: '1234567890' website: www.salesforce.com numberOfEmployees: '52000' industry: Banking childAccounts: records: - attributes: type: Account referenceId: ref5 name: SampleChildAccount1 phone: '1234567890' website: www.salesforce.com numberOfEmployees: '100' industry: Banking Contacts: records: - attributes: type: Contact referenceId: ref6 lastname: Jones title: President email: sample@salesforce.com Record2: title: Record2 required: - attributes - name - phone - website - numberOfEmployees - industry - Contacts type: object properties: attributes: $ref: '#/components/schemas/Attributes' name: type: string example: Example Title phone: type: string example: example_value website: type: string example: example_value numberOfEmployees: type: string example: example_value industry: type: string example: example_value Contacts: $ref: '#/components/schemas/Contacts' childAccounts: $ref: '#/components/schemas/ChildAccounts' examples: - attributes: type: Account referenceId: ref1 name: SampleAccount1 phone: '1234567890' website: www.salesforce.com numberOfEmployees: '100' industry: Banking Contacts: records: - attributes: type: Contact referenceId: ref2 lastname: Smith Title: President email: sample@salesforce.com - attributes: type: Contact referenceId: ref3 lastname: Evans title: Vice President email: sample@salesforce.com Attributes: title: Attributes required: - type - referenceId type: object properties: type: type: string example: example_value referenceId: type: string example: '500123' examples: - type: Account referenceId: ref1 Contacts: title: Contacts required: - records type: object properties: records: type: array items: $ref: '#/components/schemas/Record3' description: '' example: [] examples: - records: - attributes: type: Contact referenceId: ref2 lastname: Smith Title: President email: sample@salesforce.com - attributes: type: Contact referenceId: ref3 lastname: Evans title: Vice President email: sample@salesforce.com Record3: title: Record3 required: - attributes - lastname - email type: object properties: attributes: $ref: '#/components/schemas/Attributes' lastname: type: string example: example_value Title: type: string example: Example Title email: type: string example: user@example.com examples: - attributes: type: Contact referenceId: ref2 lastname: Smith Title: President email: sample@salesforce.com ChildAccounts: title: ChildAccounts required: - records type: object properties: records: type: array items: $ref: '#/components/schemas/Record4' description: '' example: [] examples: - records: - attributes: type: Account referenceId: ref5 name: SampleChildAccount1 phone: '1234567890' website: www.salesforce.com numberOfEmployees: '100' industry: Banking Record4: title: Record4 required: - attributes - name - phone - website - numberOfEmployees - industry type: object properties: attributes: $ref: '#/components/schemas/Attributes' name: type: string example: Example Title phone: type: string example: example_value website: type: string example: example_value numberOfEmployees: type: string example: example_value industry: type: string example: example_value examples: - attributes: type: Account referenceId: ref5 name: SampleChildAccount1 phone: '1234567890' website: www.salesforce.com numberOfEmployees: '100' industry: Banking SuccessfulSObjectTree: title: SuccessfulSObjectTree required: - hasErrors - results type: object properties: hasErrors: type: boolean example: true results: type: array items: $ref: '#/components/schemas/Result' description: '' example: [] examples: - hasErrors: false results: - referenceId: ref1 id: 001... - referenceId: ref4 id: 001... - referenceId: ref2 id: 003.. - referenceId: ref3 id: 003... - referenceId: ref5 id: 001... - referenceId: ref6 id: 003... Result: title: Result required: - referenceId - id type: object properties: referenceId: type: string example: '500123' id: type: string example: abc123 examples: - referenceId: ref1 id: 001... SObjectCollectionsCreateRequest: title: SObjectCollectionsCreateRequest required: - allOrNone - records type: object properties: allOrNone: type: boolean example: true records: type: array items: $ref: '#/components/schemas/Record5' description: '' example: [] examples: - allOrNone: false records: - attributes: type: Account Name: example.com BillingCity: San Francisco - attributes: type: Contact LastName: Johnson FirstName: Erica Record5: title: Record5 required: - attributes type: object properties: attributes: $ref: '#/components/schemas/Attributes3' Name: type: string example: Example Title BillingCity: type: string example: example_value LastName: type: string example: example_value FirstName: type: string example: example_value examples: - attributes: type: Account Name: example.com BillingCity: San Francisco Attributes3: title: Attributes3 required: - type type: object properties: type: type: string example: example_value examples: - type: Account SuccessfulSObjectCollectionsCreate: title: SuccessfulSObjectCollectionsCreate required: - id - success - errors type: object properties: id: type: string example: abc123 success: type: boolean example: true errors: type: array items: type: string description: '' example: [] examples: - id: 001... success: true errors: [] SuccessfulSObjectCollectionsRetrieve: title: SuccessfulSObjectCollectionsRetrieve required: - attributes - Name - Id type: object properties: attributes: $ref: '#/components/schemas/Attributes4' Name: type: string example: Example Title Id: type: string example: abc123 examples: - attributes: type: Account url: /services/data/v58.0/sobjects/Account/001... Name: Sample Account Id: 001... Attributes4: title: Attributes4 required: - type - url type: object properties: type: type: string example: example_value url: type: string example: https://www.example.com examples: - type: Account url: /services/data/v58.0/sobjects/Account/001... SObjectCollectionsUpdateRequest: title: SObjectCollectionsUpdateRequest required: - allOrNone - records type: object properties: allOrNone: type: boolean example: true records: type: array items: $ref: '#/components/schemas/Record6' description: '' example: [] examples: - allOrNone: false records: - attributes: type: Account id: NumberOfEmployees: 27000 Record6: title: Record6 required: - attributes - id - NumberOfEmployees type: object properties: attributes: $ref: '#/components/schemas/Attributes3' id: type: string example: abc123 NumberOfEmployees: type: integer contentEncoding: int32 example: 10 examples: - attributes: type: Account id: NumberOfEmployees: 27000 SObjectCollectionsUpdate: title: SObjectCollectionsUpdate required: - id - success - errors type: object properties: id: type: string example: abc123 success: type: boolean example: true errors: type: array items: type: string description: '' example: [] examples: - id: 001... success: true errors: [] SObjectCollectionsUpsertRequest: title: SObjectCollectionsUpsertRequest required: - allOrNone - records type: object properties: allOrNone: type: boolean example: true records: type: array items: $ref: '#/components/schemas/Record7' description: '' example: [] examples: - allOrNone: false records: - attributes: type: Account Name: Test Upsert Id: 0012o00003OBzVSAA1 Record7: title: Record7 required: - attributes - Name - Id type: object properties: attributes: $ref: '#/components/schemas/Attributes3' Name: type: string example: Example Title Id: type: string example: abc123 examples: - attributes: type: Account Name: Test Upsert Id: 0012o00003OBzVSAA1 SuccessfulSObjectCollectionsUpsert: title: SuccessfulSObjectCollectionsUpsert required: - id - success - errors - created type: object properties: id: type: string example: abc123 success: type: boolean example: true errors: type: array items: type: string description: '' example: [] created: type: boolean example: true examples: - id: 001... success: true errors: [] created: false SuccessfulSObjectCollectionsDelete: title: SuccessfulSObjectCollectionsDelete required: - id - success - errors type: object properties: id: type: string example: abc123 success: type: boolean example: true errors: type: array items: type: string description: '' example: [] examples: - id: 001... success: true errors: [] SuccessfulUsersFilesGeneral: title: SuccessfulUsersFilesGeneral required: - checksum - contentHubRepository - contentModifiedDate - contentSize - contentUrl - contentVersionId - createdDate - description - downloadUrl - externalDocumentUrl - externalFilePermissionInformation - fileAsset - fileExtension - fileType - flashRenditionStatus - id - isFileAsset - isInMyFileSync - isMajorVersion - mimeType - moderationFlags - modifiedDate - motif - mySubscription - name - origin - owner - pageCount - parentFolder - pdfRenditionStatus - publishStatus - renditionUrl - renditionUrl240By180 - renditionUrl720By480 - repositoryFileId - repositoryFileUrl - sharingOption - sharingPrivacy - sharingRole - systemModstamp - textPreview - thumb120By90RenditionStatus - thumb240By180RenditionStatus - thumb720By480RenditionStatus - title - topics - type - url - versionNumber type: object properties: checksum: type: string example: example_value contentHubRepository: type: - string - 'null' example: example_value contentModifiedDate: type: string example: example_value contentSize: type: integer contentEncoding: int32 example: 10 contentUrl: type: - string - 'null' example: https://www.example.com contentVersionId: type: string example: '500123' createdDate: type: string example: example_value description: type: - string - 'null' example: A sample description. downloadUrl: type: string example: https://www.example.com externalDocumentUrl: type: - string - 'null' example: https://www.example.com externalFilePermissionInformation: type: - string - 'null' example: example_value fileAsset: type: - string - 'null' example: example_value fileExtension: type: string example: example_value fileType: type: string example: example_value flashRenditionStatus: type: string example: example_value id: type: string example: abc123 isFileAsset: type: boolean example: true isInMyFileSync: type: boolean example: true isMajorVersion: type: boolean example: true mimeType: type: string example: example_value moderationFlags: type: - string - 'null' example: example_value modifiedDate: type: string example: example_value motif: $ref: '#/components/schemas/Motif' mySubscription: type: - string - 'null' example: example_value name: type: string example: Example Title origin: type: string example: example_value owner: $ref: '#/components/schemas/Owner' pageCount: type: integer contentEncoding: int32 example: 42 parentFolder: type: - string - 'null' example: example_value pdfRenditionStatus: type: string example: example_value publishStatus: type: string example: example_value renditionUrl: type: string example: https://www.example.com renditionUrl240By180: type: string example: https://www.example.com renditionUrl720By480: type: string example: https://www.example.com repositoryFileId: type: - string - 'null' example: '500123' repositoryFileUrl: type: - string - 'null' example: https://www.example.com sharingOption: type: string example: example_value sharingPrivacy: type: string example: example_value sharingRole: type: string example: example_value systemModstamp: type: string example: example_value textPreview: type: - string - 'null' example: example_value thumb120By90RenditionStatus: type: string example: example_value thumb240By180RenditionStatus: type: string example: example_value thumb720By480RenditionStatus: type: string example: example_value title: type: string example: Example Title topics: $ref: '#/components/schemas/Topics' type: type: string example: example_value url: type: string example: https://www.example.com versionNumber: type: string example: example_value examples: - checksum: 71a50dbba44c78128b221b7df7bb51f1 contentHubRepository: contentModifiedDate: '2023-11-20T16:28:22.000Z' contentSize: 95 contentUrl: contentVersionId: 068xx0000004C92AAE createdDate: '2023-11-20T16:28:22.000Z' description: downloadUrl: /services/data/v58.0/connect/files/069.../content?versionNumber=1 externalDocumentUrl: externalFilePermissionInformation: fileAsset: fileExtension: png fileType: Png flashRenditionStatus: Na id: 069... isFileAsset: false isInMyFileSync: false isMajorVersion: true mimeType: image/png moderationFlags: modifiedDate: '2023-11-20T16:28:22.000Z' motif: color: '939393' largeIconUrl: /img/content/content64.png mediumIconUrl: /img/content/content32.png smallIconUrl: /img/icon/files16.png svgIconUrl: mySubscription: name: 1x1.png origin: Chatter owner: additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: Firstname id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/729.../F mediumPhotoUrl: https:///profilephoto/729.../M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/729.../T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal pageCount: 0 parentFolder: pdfRenditionStatus: Na publishStatus: PrivateAccess renditionUrl: >- /services/data/v58.0/connect/files/069.../rendition?type=THUMB120BY90 renditionUrl240By180: >- /services/data/v58.0/connect/files/069.../rendition?type=THUMB240BY180 renditionUrl720By480: >- /services/data/v58.0/connect/files/069.../rendition?type=THUMB720BY480 repositoryFileId: repositoryFileUrl: sharingOption: Allowed sharingPrivacy: None sharingRole: Owner systemModstamp: '2023-11-20T16:28:23.000Z' textPreview: thumb120By90RenditionStatus: NotScheduled thumb240By180RenditionStatus: NotScheduled thumb720By480RenditionStatus: NotScheduled title: 1x1.png topics: currentPageUrl: nextPageUrl: topics: [] type: File url: /services/data/v58.0/connect/files/069...?versionNumber=1 versionNumber: '1' Motif: title: Motif required: - color - largeIconUrl - mediumIconUrl - smallIconUrl - svgIconUrl type: object properties: color: type: string example: example_value largeIconUrl: type: string example: https://www.example.com mediumIconUrl: type: string example: https://www.example.com smallIconUrl: type: string example: https://www.example.com svgIconUrl: type: - string - 'null' example: https://www.example.com examples: - color: '939393' largeIconUrl: /img/content/content64.png mediumIconUrl: /img/content/content32.png smallIconUrl: /img/icon/files16.png svgIconUrl: Owner: title: Owner required: - additionalLabel - communityNickname - companyName - displayName - firstName - id - isActive - isInThisCommunity - lastName - motif - mySubscription - name - outOfOffice - photo - reputation - title - type - url - userType type: object properties: additionalLabel: type: - string - 'null' example: example_value communityNickname: type: string example: example_value companyName: type: string example: example_value displayName: type: string example: example_value firstName: type: string example: example_value id: type: string example: abc123 isActive: type: boolean example: true isInThisCommunity: type: boolean example: true lastName: type: string example: example_value motif: $ref: '#/components/schemas/Motif' mySubscription: type: - string - 'null' example: example_value name: type: string example: Example Title outOfOffice: $ref: '#/components/schemas/OutOfOffice' photo: $ref: '#/components/schemas/Photo' reputation: type: - string - 'null' example: example_value title: type: - string - 'null' example: Example Title type: type: string example: example_value url: type: string example: https://www.example.com userType: type: string example: example_value examples: - additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: Firstname id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/729.../F mediumPhotoUrl: https:///profilephoto/729.../M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/729.../T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal OutOfOffice: title: OutOfOffice required: - message type: object properties: message: type: string example: example_value examples: - message: '' Photo: title: Photo required: - fullEmailPhotoUrl - largePhotoUrl - mediumPhotoUrl - photoVersionId - smallPhotoUrl - standardEmailPhotoUrl - url type: object properties: fullEmailPhotoUrl: type: string example: user@example.com largePhotoUrl: type: string example: https://www.example.com mediumPhotoUrl: type: string example: https://www.example.com photoVersionId: type: string example: '500123' smallPhotoUrl: type: string example: https://www.example.com standardEmailPhotoUrl: type: string example: user@example.com url: type: string example: https://www.example.com examples: - fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/729.../F mediumPhotoUrl: https:///profilephoto/729.../M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/729.../T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo Topics: title: Topics required: - currentPageUrl - nextPageUrl - topics type: object properties: currentPageUrl: type: - string - 'null' example: https://www.example.com nextPageUrl: type: - string - 'null' example: https://www.example.com topics: type: array items: type: string description: '' example: [] examples: - currentPageUrl: nextPageUrl: topics: [] FileInformation: title: FileInformation required: - checksum - contentHubRepository - contentModifiedDate - contentSize - contentUrl - createdDate - description - downloadUrl - externalDocumentUrl - externalFilePermissionInformation - fileAsset - fileExtension - fileType - flashRenditionStatus - id - isFileAsset - isInMyFileSync - isMajorVersion - mimeType - moderationFlags - modifiedDate - motif - mySubscription - name - origin - owner - pageCount - parentFolder - pdfRenditionStatus - publishStatus - renditionUrl - renditionUrl240By180 - renditionUrl720By480 - repositoryFileId - repositoryFileUrl - sharingOption - sharingPrivacy - sharingRole - systemModstamp - textPreview - thumb120By90RenditionStatus - thumb240By180RenditionStatus - thumb720By480RenditionStatus - title - topics - type - url - versionNumber type: object properties: checksum: type: string example: example_value contentHubRepository: type: - string - 'null' example: example_value contentModifiedDate: type: string example: example_value contentSize: type: integer contentEncoding: int32 example: 10 contentUrl: type: - string - 'null' example: https://www.example.com createdDate: type: string example: example_value description: type: - string - 'null' example: A sample description. downloadUrl: type: string example: https://www.example.com externalDocumentUrl: type: - string - 'null' example: https://www.example.com externalFilePermissionInformation: type: - string - 'null' example: example_value fileAsset: type: - string - 'null' example: example_value fileExtension: type: string example: example_value fileType: type: string example: example_value flashRenditionStatus: type: string example: example_value id: type: string example: abc123 isFileAsset: type: boolean example: true isInMyFileSync: type: boolean example: true isMajorVersion: type: boolean example: true mimeType: type: string example: example_value moderationFlags: type: - string - 'null' example: example_value modifiedDate: type: string example: example_value motif: $ref: '#/components/schemas/Motif' mySubscription: type: - string - 'null' example: example_value name: type: string example: Example Title origin: type: string example: example_value owner: $ref: '#/components/schemas/Owner' pageCount: type: integer contentEncoding: int32 example: 42 parentFolder: type: - string - 'null' example: example_value pdfRenditionStatus: type: string example: example_value publishStatus: type: string example: example_value renditionUrl: type: string example: https://www.example.com renditionUrl240By180: type: string example: https://www.example.com renditionUrl720By480: type: string example: https://www.example.com repositoryFileId: type: - string - 'null' example: '500123' repositoryFileUrl: type: - string - 'null' example: https://www.example.com sharingOption: type: string example: example_value sharingPrivacy: type: string example: example_value sharingRole: type: string example: example_value systemModstamp: type: string example: example_value textPreview: type: - string - 'null' example: example_value thumb120By90RenditionStatus: type: string example: example_value thumb240By180RenditionStatus: type: string example: example_value thumb720By480RenditionStatus: type: string example: example_value title: type: string example: Example Title topics: $ref: '#/components/schemas/Topics' type: type: string example: example_value url: type: string example: https://www.example.com versionNumber: type: string example: example_value examples: - checksum: 71a50dbba44c78128b221b7df7bb51f1 contentHubRepository: contentModifiedDate: '2023-11-20T16:28:22.000Z' contentSize: 95 contentUrl: createdDate: '2023-11-20T16:28:22.000Z' description: downloadUrl: /services/data/v58.0/connect/files/069.../content?versionNumber=1 externalDocumentUrl: externalFilePermissionInformation: fileAsset: fileExtension: png fileType: Png flashRenditionStatus: Na id: 069... isFileAsset: false isInMyFileSync: false isMajorVersion: true mimeType: image/png moderationFlags: modifiedDate: '2023-11-20T16:28:22.000Z' motif: color: '939393' largeIconUrl: /img/content/content64.png mediumIconUrl: /img/content/content32.png smallIconUrl: /img/icon/files16.png svgIconUrl: mySubscription: name: 1x1.png origin: Chatter owner: additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: firstName id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/729.../F mediumPhotoUrl: https:///profilephoto/729.../M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/729.../T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal pageCount: 0 parentFolder: pdfRenditionStatus: Na publishStatus: PrivateAccess renditionUrl: >- /services/data/v58.0/connect/files/069.../rendition?type=THUMB120BY90 renditionUrl240By180: >- /services/data/v58.0/connect/files/069.../rendition?type=THUMB240BY180 renditionUrl720By480: >- /services/data/v58.0/connect/files/069.../rendition?type=THUMB720BY480 repositoryFileId: repositoryFileUrl: sharingOption: Allowed sharingPrivacy: None sharingRole: Owner systemModstamp: '2023-11-20T16:28:23.000Z' textPreview: thumb120By90RenditionStatus: NotScheduled thumb240By180RenditionStatus: NotScheduled thumb720By480RenditionStatus: NotScheduled title: 1x1.png topics: currentPageUrl: nextPageUrl: topics: [] type: File url: /services/data/v58.0/connect/files/069...?versionNumber=1 versionNumber: '1' SuccessfulFileShares: title: SuccessfulFileShares required: - currentPageUrl - linkShare - nextPageUrl - previousPageUrl - shares type: object properties: currentPageUrl: type: string example: https://www.example.com linkShare: type: - string - 'null' example: example_value nextPageUrl: type: - string - 'null' example: https://www.example.com previousPageUrl: type: - string - 'null' example: https://www.example.com shares: type: array items: $ref: '#/components/schemas/Share' description: '' example: [] examples: - currentPageUrl: /services/data/v58.0/connect/files/069.../file-shares linkShare: nextPageUrl: previousPageUrl: shares: - entity: additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: firstName id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/7292o000000oAgZ/F mediumPhotoUrl: https:///profilephoto/7292o000000oAgZ/M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/7292o000000oAgZ/T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal sharingType: I Share: title: Share required: - entity - sharingType type: object properties: entity: $ref: '#/components/schemas/Entity' sharingType: type: string example: example_value examples: - entity: additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: firstName id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/7292o000000oAgZ/F mediumPhotoUrl: https:///profilephoto/7292o000000oAgZ/M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/7292o000000oAgZ/T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal sharingType: I Entity: title: Entity required: - additionalLabel - communityNickname - companyName - displayName - firstName - id - isActive - isInThisCommunity - lastName - motif - mySubscription - name - outOfOffice - photo - reputation - title - type - url - userType type: object properties: additionalLabel: type: - string - 'null' example: example_value communityNickname: type: string example: example_value companyName: type: string example: example_value displayName: type: string example: example_value firstName: type: string example: example_value id: type: string example: abc123 isActive: type: boolean example: true isInThisCommunity: type: boolean example: true lastName: type: string example: example_value motif: $ref: '#/components/schemas/Motif' mySubscription: type: - string - 'null' example: example_value name: type: string example: Example Title outOfOffice: $ref: '#/components/schemas/OutOfOffice' photo: $ref: '#/components/schemas/Photo' reputation: type: - string - 'null' example: example_value title: type: - string - 'null' example: Example Title type: type: string example: example_value url: type: string example: https://www.example.com userType: type: string example: example_value examples: - additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: firstName id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/7292o000000oAgZ/F mediumPhotoUrl: https:///profilephoto/7292o000000oAgZ/M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/7292o000000oAgZ/T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal SuccessfulFilesSharesLink: title: SuccessfulFilesSharesLink required: - expirationDate - fileViewUrl - isPasswordRequired - password - sharingType type: object properties: expirationDate: type: - string - 'null' example: example_value fileViewUrl: type: string example: https://www.example.com isPasswordRequired: type: boolean example: true password: type: - string - 'null' example: example_value sharingType: type: string example: example_value examples: - expirationDate: fileViewUrl: >- https:///sfc/p/2o000000i6mB/a/2o00000022S3/y2zsu9pHtEVIa49w6ElaXdjXz_GxBSzRVwe645_Z.dw isPasswordRequired: false password: sharingType: V SuccessfulGetCredential: title: SuccessfulGetCredential required: - authenticationProtocol - authenticationProtocolVariant - authenticationStatus - credentials - externalCredential - principalName - principalType type: object properties: authenticationProtocol: type: string example: example_value authenticationProtocolVariant: type: string example: example_value authenticationStatus: type: string example: example_value credentials: type: object example: example_value externalCredential: type: string example: example_value principalName: type: string example: example_value principalType: type: string example: example_value examples: - authenticationProtocol: Custom authenticationProtocolVariant: NoAuthentication authenticationStatus: Configured credentials: {} externalCredential: Test principalName: Test principalType: NamedPrincipal SuccessfulListExternalCredentials: title: SuccessfulListExternalCredentials required: - externalCredentials type: object properties: externalCredentials: type: array items: $ref: '#/components/schemas/ExternalCredential' description: '' example: [] examples: - externalCredentials: - authenticationProtocol: Custom authenticationProtocolVariant: NoAuthentication authenticationStatus: NotConfigured customHeaders: [] developerName: Test id: 0pt... masterLabel: Test parameters: [] principals: [] relatedNamedCredentials: - developerName: Test id: 0XA... masterLabel: Test url: >- /services/data/v58.0/named-credentials/named-credential-setup/Test url: /services/data/v58.0/named-credentials/external-credentials/Test ExternalCredential: title: ExternalCredential required: - authenticationProtocol - authenticationProtocolVariant - authenticationStatus - customHeaders - developerName - id - masterLabel - parameters - principals - relatedNamedCredentials - url type: object properties: authenticationProtocol: type: string example: example_value authenticationProtocolVariant: type: string example: example_value authenticationStatus: type: string example: example_value customHeaders: type: array items: type: string description: '' example: [] developerName: type: string example: example_value id: type: string example: abc123 masterLabel: type: string example: example_value parameters: type: array items: type: string description: '' example: [] principals: type: array items: type: string description: '' example: [] relatedNamedCredentials: type: array items: $ref: '#/components/schemas/RelatedNamedCredential' description: '' example: [] url: type: string example: https://www.example.com examples: - authenticationProtocol: Custom authenticationProtocolVariant: NoAuthentication authenticationStatus: NotConfigured customHeaders: [] developerName: Test id: 0pt... masterLabel: Test parameters: [] principals: [] relatedNamedCredentials: - developerName: Test id: 0XA... masterLabel: Test url: >- /services/data/v58.0/named-credentials/named-credential-setup/Test url: /services/data/v58.0/named-credentials/external-credentials/Test RelatedNamedCredential: title: RelatedNamedCredential required: - developerName - id - masterLabel - url type: object properties: developerName: type: string example: example_value id: type: string example: abc123 masterLabel: type: string example: example_value url: type: string example: https://www.example.com examples: - developerName: Test id: 0XA... masterLabel: Test url: /services/data/v58.0/named-credentials/named-credential-setup/Test SuccessfulListNamedCredentials: title: SuccessfulListNamedCredentials required: - namedCredentials type: object properties: namedCredentials: type: array items: $ref: '#/components/schemas/NamedCredential' description: '' example: [] examples: - namedCredentials: - calloutUrl: https://my.example.com developerName: Test id: 0XA... masterLabel: Test type: SecuredEndpoint url: >- /services/data/v58.0/named-credentials/named-credential-setup/Test NamedCredential: title: NamedCredential required: - calloutUrl - developerName - id - masterLabel - type - url type: object properties: calloutUrl: type: string example: https://www.example.com developerName: type: string example: example_value id: type: string example: abc123 masterLabel: type: string example: example_value type: type: string example: example_value url: type: string example: https://www.example.com examples: - calloutUrl: https://my.example.com developerName: Test id: 0XA... masterLabel: Test type: SecuredEndpoint url: /services/data/v58.0/named-credentials/named-credential-setup/Test SuccessfulGetExternalCredentialsbyDeveloperName: title: SuccessfulGetExternalCredentialsbyDeveloperName required: - authenticationProtocol - authenticationProtocolVariant - authenticationStatus - customHeaders - developerName - id - masterLabel - parameters - principals - relatedNamedCredentials - url type: object properties: authenticationProtocol: type: string example: example_value authenticationProtocolVariant: type: string example: example_value authenticationStatus: type: string example: example_value customHeaders: type: array items: type: string description: '' example: [] developerName: type: string example: example_value id: type: string example: abc123 masterLabel: type: string example: example_value parameters: type: array items: type: string description: '' example: [] principals: type: array items: type: string description: '' example: [] relatedNamedCredentials: type: array items: $ref: '#/components/schemas/RelatedNamedCredential' description: '' example: [] url: type: string example: https://www.example.com examples: - authenticationProtocol: Custom authenticationProtocolVariant: NoAuthentication authenticationStatus: NotConfigured customHeaders: [] developerName: Test id: 0pt... masterLabel: Test parameters: [] principals: [] relatedNamedCredentials: - developerName: Test id: 0XA... masterLabel: Test url: >- /services/data/v58.0/named-credentials/named-credential-setup/Test url: /services/data/v58.0/named-credentials/external-credentials/Test SuccessfulGetNamedCredentialbyDeveloperName: title: SuccessfulGetNamedCredentialbyDeveloperName required: - calloutOptions - calloutUrl - customHeaders - developerName - externalCredentials - id - masterLabel - parameters - type - url type: object properties: calloutOptions: $ref: '#/components/schemas/CalloutOptions' calloutUrl: type: string example: https://www.example.com customHeaders: type: array items: type: string description: '' example: [] developerName: type: string example: example_value externalCredentials: type: array items: $ref: '#/components/schemas/ExternalCredential1' description: '' example: [] id: type: string example: abc123 masterLabel: type: string example: example_value parameters: type: array items: type: string description: '' example: [] type: type: string example: example_value url: type: string example: https://www.example.com examples: - calloutOptions: allowMergeFieldsInBody: false allowMergeFieldsInHeader: false generateAuthorizationHeader: true calloutUrl: https://my.example.com customHeaders: [] developerName: Test externalCredentials: - developerName: Test id: 0pt... masterLabel: Test url: /services/data/v58.0/named-credentials/external-credentials/Test id: 0XA... masterLabel: Test parameters: [] type: SecuredEndpoint url: /services/data/v58.0/named-credentials/named-credential-setup/Test CalloutOptions: title: CalloutOptions required: - allowMergeFieldsInBody - allowMergeFieldsInHeader - generateAuthorizationHeader type: object properties: allowMergeFieldsInBody: type: boolean example: true allowMergeFieldsInHeader: type: boolean example: true generateAuthorizationHeader: type: boolean example: true examples: - allowMergeFieldsInBody: false allowMergeFieldsInHeader: false generateAuthorizationHeader: true ExternalCredential1: title: ExternalCredential1 required: - developerName - id - masterLabel - url type: object properties: developerName: type: string example: example_value id: type: string example: abc123 masterLabel: type: string example: example_value url: type: string example: https://www.example.com examples: - developerName: Test id: 0pt... masterLabel: Test url: /services/data/v58.0/named-credentials/external-credentials/Test CreateCredentialRequest: title: CreateCredentialRequest required: - authenticationProtocol - credentials - externalCredential - principalName - principalType type: object properties: authenticationProtocol: type: string example: example_value credentials: type: object example: example_value externalCredential: type: string example: example_value principalName: type: string example: example_value principalType: type: string example: example_value examples: - authenticationProtocol: Custom credentials: {} externalCredential: SampleExternalCredential principalName: SamplePrincipal principalType: NamedPrincipal successfulCreateCredential: title: successfulCreateCredential required: - authenticationProtocol - authenticationStatus - credentials - externalCredential - principalName - principalType type: object properties: authenticationProtocol: type: string example: example_value authenticationStatus: type: string example: example_value credentials: type: object example: example_value externalCredential: type: string example: example_value principalName: type: string example: example_value principalType: type: string example: example_value examples: - authenticationProtocol: Custom authenticationStatus: Unknown credentials: {} externalCredential: SampleExternalCredential principalName: SamplePrincipal principalType: NamedPrincipal CreateExternalCredentialRequest: title: CreateExternalCredentialRequest required: - developerName - masterLabel - authenticationProtocol - principals - customHeaders type: object properties: developerName: type: string example: example_value masterLabel: type: string example: example_value authenticationProtocol: type: string example: example_value principals: type: array items: $ref: '#/components/schemas/Principal' description: '' example: [] customHeaders: type: array items: $ref: '#/components/schemas/CustomHeader' description: '' example: [] examples: - developerName: SampleExternalCredential masterLabel: Sample External Credential authenticationProtocol: Custom principals: - principalName: SamplePrincipal principalType: NamedPrincipal sequenceNumber: 1 customHeaders: - headerName: SampleHeader headerValue: SampleHeaderValue sequenceNumber: 1 Principal: title: Principal required: - principalName - principalType - sequenceNumber type: object properties: principalName: type: string example: example_value principalType: type: string example: example_value sequenceNumber: type: integer contentEncoding: int32 example: 10 examples: - principalName: SamplePrincipal principalType: NamedPrincipal sequenceNumber: 1 CustomHeader: title: CustomHeader required: - headerName - headerValue - sequenceNumber type: object properties: headerName: type: string example: example_value headerValue: type: string example: example_value sequenceNumber: type: integer contentEncoding: int32 example: 10 examples: - headerName: SampleHeader headerValue: SampleHeaderValue sequenceNumber: 1 SuccessfulCreateExternalCredential: title: SuccessfulCreateExternalCredential required: - authenticationProtocol - authenticationStatus - customHeaders - developerName - id - masterLabel - parameters - principals - relatedNamedCredentials - url type: object properties: authenticationProtocol: type: string example: example_value authenticationStatus: type: string example: example_value customHeaders: type: array items: $ref: '#/components/schemas/CustomHeader1' description: '' example: [] developerName: type: string example: example_value id: type: string example: abc123 masterLabel: type: string example: example_value parameters: type: array items: type: string description: '' example: [] principals: type: array items: $ref: '#/components/schemas/Principal1' description: '' example: [] relatedNamedCredentials: type: array items: type: string description: '' example: [] url: type: string example: https://www.example.com examples: - authenticationProtocol: Custom authenticationStatus: Unknown customHeaders: - headerName: SampleHeader headerValue: SampleHeaderValue id: 0pu2o000000KymkAAC sequenceNumber: 1 developerName: SampleExternalCredential id: 0pt2o000000CaU0AAK masterLabel: Sample External Credential parameters: [] principals: - authenticationStatus: Unknown id: 0pu2o000000KymjAAC parameters: [] principalAccess: [] principalName: SamplePrincipal principalType: NamedPrincipal sequenceNumber: 1 relatedNamedCredentials: [] url: >- /services/data/v58.0/named-credentials/external-credentials/SampleExternalCredential CustomHeader1: title: CustomHeader1 required: - headerName - headerValue - id - sequenceNumber type: object properties: headerName: type: string example: example_value headerValue: type: string example: example_value id: type: string example: abc123 sequenceNumber: type: integer contentEncoding: int32 example: 10 examples: - headerName: SampleHeader headerValue: SampleHeaderValue id: 0pu2o000000KymkAAC sequenceNumber: 1 Principal1: title: Principal1 required: - authenticationStatus - id - parameters - principalAccess - principalName - principalType - sequenceNumber type: object properties: authenticationStatus: type: string example: example_value id: type: string example: abc123 parameters: type: array items: type: string description: '' example: [] principalAccess: type: array items: type: string description: '' example: [] principalName: type: string example: example_value principalType: type: string example: example_value sequenceNumber: type: integer contentEncoding: int32 example: 10 examples: - authenticationStatus: Unknown id: 0pu2o000000KymjAAC parameters: [] principalAccess: [] principalName: SamplePrincipal principalType: NamedPrincipal sequenceNumber: 1 CreateNamedCredentialRequest: title: CreateNamedCredentialRequest required: - developerName - masterLabel - type - calloutUrl - externalCredentials - customHeaders - calloutOptions type: object properties: developerName: type: string example: example_value masterLabel: type: string example: example_value type: type: string example: example_value calloutUrl: type: string example: https://www.example.com externalCredentials: type: array items: $ref: '#/components/schemas/ExternalCredential2' description: '' example: [] customHeaders: type: array items: $ref: '#/components/schemas/CustomHeader' description: '' example: [] calloutOptions: $ref: '#/components/schemas/CalloutOptions' examples: - developerName: SamplePrivate masterLabel: SamplePrivateLabel type: SecuredEndpoint calloutUrl: https://api.example.com externalCredentials: - developerName: SampleExternalCredential customHeaders: - headerName: SampleHeader headerValue: SampleValue sequenceNumber: 1 calloutOptions: allowMergeFieldsInBody: false allowMergeFieldsInHeader: true generateAuthorizationHeader: true ExternalCredential2: title: ExternalCredential2 required: - developerName type: object properties: developerName: type: string example: example_value examples: - developerName: SampleExternalCredential SuccessfulCreateNamedCredential: title: SuccessfulCreateNamedCredential required: - calloutOptions - calloutUrl - customHeaders - developerName - externalCredentials - id - masterLabel - parameters - type - url type: object properties: calloutOptions: $ref: '#/components/schemas/CalloutOptions' calloutUrl: type: string example: https://www.example.com customHeaders: type: array items: $ref: '#/components/schemas/CustomHeader1' description: '' example: [] developerName: type: string example: example_value externalCredentials: type: array items: $ref: '#/components/schemas/ExternalCredential1' description: '' example: [] id: type: string example: abc123 masterLabel: type: string example: example_value parameters: type: array items: type: string description: '' example: [] type: type: string example: example_value url: type: string example: https://www.example.com examples: - calloutOptions: allowMergeFieldsInBody: false allowMergeFieldsInHeader: true generateAuthorizationHeader: true calloutUrl: https://api.example.com customHeaders: - headerName: SampleHeader headerValue: SampleValue id: 0pv2o000000PAv6AAG sequenceNumber: 1 developerName: SamplePrivate externalCredentials: - developerName: SampleExternalCredential id: 0pt2o000000CaU0AAK masterLabel: Sample External Credential url: >- /services/data/v58.0/named-credentials/external-credentials/SampleExternalCredential id: 0XA2o000000XaAQGA0 masterLabel: SamplePrivateLabel parameters: [] type: SecuredEndpoint url: >- /services/data/v58.0/named-credentials/named-credential-setup/SamplePrivate UpdateCredentialRequest: title: UpdateCredentialRequest required: - externalCredential - authenticationProtocol - principalName - principalType - credentials type: object properties: externalCredential: type: string example: example_value authenticationProtocol: type: string example: example_value principalName: type: string example: example_value principalType: type: string example: example_value credentials: $ref: '#/components/schemas/Credentials' examples: - externalCredential: test authenticationProtocol: Custom principalName: test principalType: NamedPrincipal credentials: testCredential: value: '000000' encrypted: true Credentials: title: Credentials required: - testCredential type: object properties: testCredential: $ref: '#/components/schemas/TestCredential' examples: - testCredential: value: '000000' encrypted: true TestCredential: title: TestCredential required: - value - encrypted type: object properties: value: type: string example: example_value encrypted: type: boolean example: true examples: - value: '000000' encrypted: true UpdateExternalCredentialRequest: title: UpdateExternalCredentialRequest required: - masterLabel - authenticationProtocol - principals - customHeaders type: object properties: masterLabel: type: string example: example_value authenticationProtocol: type: string example: example_value principals: type: array items: $ref: '#/components/schemas/Principal' description: '' example: [] customHeaders: type: array items: $ref: '#/components/schemas/CustomHeader' description: '' example: [] examples: - masterLabel: Sample External Credential authenticationProtocol: Custom principals: - principalName: SamplePrincipal principalType: NamedPrincipal sequenceNumber: 1 customHeaders: - headerName: SampleHeader headerValue: SampleHeaderValue sequenceNumber: 1 SuccessfulUpdateExternalCredential: title: SuccessfulUpdateExternalCredential required: - authenticationProtocol - authenticationStatus - customHeaders - developerName - id - masterLabel - parameters - principals - relatedNamedCredentials - url type: object properties: authenticationProtocol: type: string example: example_value authenticationStatus: type: string example: example_value customHeaders: type: array items: $ref: '#/components/schemas/CustomHeader1' description: '' example: [] developerName: type: string example: example_value id: type: string example: abc123 masterLabel: type: string example: example_value parameters: type: array items: type: string description: '' example: [] principals: type: array items: $ref: '#/components/schemas/Principal1' description: '' example: [] relatedNamedCredentials: type: array items: $ref: '#/components/schemas/RelatedNamedCredential' description: '' example: [] url: type: string example: https://www.example.com examples: - authenticationProtocol: Custom authenticationStatus: Unknown customHeaders: - headerName: SampleHeader headerValue: SampleHeaderValue id: 0pu2o000000KymkAAC sequenceNumber: 1 developerName: SampleExternalCredential id: 0pt2o000000CaU0AAK masterLabel: Sample External Credential parameters: [] principals: - authenticationStatus: Unknown id: 0pu2o000000KymjAAC parameters: [] principalAccess: [] principalName: SamplePrincipal principalType: NamedPrincipal sequenceNumber: 1 relatedNamedCredentials: - developerName: SamplePrivate id: 0XA2o000000XaAQGA0 masterLabel: SamplePrivateLabel url: >- /services/data/v58.0/named-credentials/named-credential-setup/SamplePrivate url: >- /services/data/v58.0/named-credentials/external-credentials/SampleExternalCredential UpdateNamedCredentialRequest: title: UpdateNamedCredentialRequest required: - masterLabel - type - calloutUrl - externalCredentials - customHeaders - calloutOptions type: object properties: masterLabel: type: string example: example_value type: type: string example: example_value calloutUrl: type: string example: https://www.example.com externalCredentials: type: array items: $ref: '#/components/schemas/ExternalCredential2' description: '' example: [] customHeaders: type: array items: $ref: '#/components/schemas/CustomHeader' description: '' example: [] calloutOptions: $ref: '#/components/schemas/CalloutOptions' examples: - masterLabel: SamplePrivateLabel type: SecuredEndpoint calloutUrl: https://api.example.com externalCredentials: - developerName: SampleExternalCredential customHeaders: - headerName: SampleHeader headerValue: SampleValue sequenceNumber: 1 calloutOptions: allowMergeFieldsInBody: false allowMergeFieldsInHeader: true generateAuthorizationHeader: true SuccessfulUpdateNamedCredential: title: SuccessfulUpdateNamedCredential required: - calloutOptions - calloutUrl - customHeaders - developerName - externalCredentials - id - masterLabel - parameters - type - url type: object properties: calloutOptions: $ref: '#/components/schemas/CalloutOptions' calloutUrl: type: string example: https://www.example.com customHeaders: type: array items: $ref: '#/components/schemas/CustomHeader1' description: '' example: [] developerName: type: string example: example_value externalCredentials: type: array items: $ref: '#/components/schemas/ExternalCredential1' description: '' example: [] id: type: string example: abc123 masterLabel: type: string example: example_value parameters: type: array items: type: string description: '' example: [] type: type: string example: example_value url: type: string example: https://www.example.com examples: - calloutOptions: allowMergeFieldsInBody: false allowMergeFieldsInHeader: true generateAuthorizationHeader: true calloutUrl: https://api.example.com customHeaders: - headerName: SampleHeader headerValue: SampleValue id: 0pv2o000000PAv6AAG sequenceNumber: 1 developerName: SamplePrivate externalCredentials: - developerName: SampleExternalCredential id: 0pt2o000000CaU0AAK masterLabel: Sample External Credential url: >- /services/data/v58.0/named-credentials/external-credentials/SampleExternalCredential id: 0XA2o000000XaAQGA0 masterLabel: SamplePrivateLabel parameters: [] type: SecuredEndpoint url: >- /services/data/v58.0/named-credentials/named-credential-setup/SamplePrivate DeleteCredentialRequest: title: DeleteCredentialRequest required: - externalCredential - principalType - principalName type: object properties: externalCredential: type: string example: example_value principalType: type: string example: example_value principalName: type: string example: example_value examples: - externalCredential: SampleExternalCredential principalType: NamedPrincipal principalName: SamplePrincipal SuccessfulNewsFeedElements: title: SuccessfulNewsFeedElements required: - currentPageToken - currentPageUrl - elements - isModifiedToken - isModifiedUrl - nextPageToken - nextPageUrl - updatesToken - updatesUrl type: object properties: currentPageToken: type: - string - 'null' example: CAUQAA currentPageUrl: type: string example: https://www.example.com elements: type: array items: type: string description: '' example: [] isModifiedToken: type: - string - 'null' example: CAUQAA isModifiedUrl: type: - string - 'null' example: https://www.example.com nextPageToken: type: - string - 'null' example: CAUQAA nextPageUrl: type: - string - 'null' example: https://www.example.com updatesToken: type: string example: CAUQAA updatesUrl: type: string example: https://www.example.com examples: - currentPageToken: currentPageUrl: /services/data/v58.0/chatter/feeds/news/005.../feed-elements elements: [] isModifiedToken: isModifiedUrl: nextPageToken: nextPageUrl: updatesToken: '2:1700651042000' updatesUrl: >- /services/data/v58.0/chatter/feeds/news/005.../feed-elements?updatedSince=2%3A1700651042000 SuccessfulUserProfileFeedElements: title: SuccessfulUserProfileFeedElements required: - currentPageToken - currentPageUrl - elements - isModifiedToken - isModifiedUrl - nextPageToken - nextPageUrl - updatesToken - updatesUrl type: object properties: currentPageToken: type: - string - 'null' example: CAUQAA currentPageUrl: type: string example: https://www.example.com elements: type: array items: type: string description: '' example: [] isModifiedToken: type: - string - 'null' example: CAUQAA isModifiedUrl: type: - string - 'null' example: https://www.example.com nextPageToken: type: - string - 'null' example: CAUQAA nextPageUrl: type: - string - 'null' example: https://www.example.com updatesToken: type: - string - 'null' example: CAUQAA updatesUrl: type: - string - 'null' example: https://www.example.com examples: - currentPageToken: currentPageUrl: /services/data/v58.0/chatter/feeds/user-profile/005.../feed-elements elements: [] isModifiedToken: isModifiedUrl: nextPageToken: nextPageUrl: updatesToken: updatesUrl: SuccessfulRecordFeedElements: title: SuccessfulRecordFeedElements required: - currentPageToken - currentPageUrl - elements - isModifiedToken - isModifiedUrl - nextPageToken - nextPageUrl - updatesToken - updatesUrl type: object properties: currentPageToken: type: - string - 'null' example: CAUQAA currentPageUrl: type: string example: https://www.example.com elements: type: array items: type: string description: '' example: [] isModifiedToken: type: - string - 'null' example: CAUQAA isModifiedUrl: type: - string - 'null' example: https://www.example.com nextPageToken: type: - string - 'null' example: CAUQAA nextPageUrl: type: - string - 'null' example: https://www.example.com updatesToken: type: string example: CAUQAA updatesUrl: type: string example: https://www.example.com examples: - currentPageToken: currentPageUrl: /services/data/v58.0/chatter/feeds/record/001.../feed-elements elements: [] isModifiedToken: isModifiedUrl: nextPageToken: nextPageUrl: updatesToken: '2:1700651144000' updatesUrl: >- /services/data/v58.0/chatter/feeds/record/001.../feed-elements?updatedSince=2%3A1700651144000 SuccessfulFeedElementsPostandSearch: title: SuccessfulFeedElementsPostandSearch required: - actor - body - capabilities - clientInfo - createdDate - event - feedElementType - hasVerifiedComment - header - id - isDeleteRestricted - isSharable - modifiedDate - originalFeedItem - originalFeedItemActor - parent - photoUrl - relativeCreatedDate - type - url - visibility type: object properties: actor: $ref: '#/components/schemas/Actor' body: $ref: '#/components/schemas/Body4' capabilities: $ref: '#/components/schemas/Capabilities' clientInfo: $ref: '#/components/schemas/ClientInfo' createdDate: type: string example: example_value event: type: boolean example: true feedElementType: type: string example: example_value hasVerifiedComment: type: boolean example: true header: $ref: '#/components/schemas/Header' id: type: string example: abc123 isDeleteRestricted: type: boolean example: true isSharable: type: boolean example: true modifiedDate: type: string example: example_value originalFeedItem: type: - string - 'null' example: example_value originalFeedItemActor: type: - string - 'null' example: example_value parent: $ref: '#/components/schemas/Parent' photoUrl: type: string example: https://www.example.com relativeCreatedDate: type: string example: example_value type: type: string example: example_value url: type: string example: https://www.example.com visibility: type: string example: example_value examples: - actor: additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: Firstname id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/729.../F mediumPhotoUrl: https:///profilephoto/729.../M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/729.../T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal body: isRichText: false messageSegments: - text: New Feed Item type: Text text: New Feed Item capabilities: associatedActions: platformActionGroups: [] bookmarks: isBookmarkedByCurrentUser: false chatterLikes: isLikedByCurrentUser: false likesMessage: myLike: page: currentPageToken: 0 currentPageUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/chatter-likes/items items: [] nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: total: 0 close: canContextUserUpdateIsClosed: true isClosed: false comments: page: currentPageToken: currentPageUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/comments/items items: [] nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: total: 0 edit: isEditRestricted: false isEditableByMeUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/edit/is-editable-by-me lastEditedBy: lastEditedDate: latestRevision: 1 relativeLastEditedDate: interactions: count: 0 mute: isMutedByMe: false readBy: isReadByMe: true lastReadDateByMe: '2023-11-22T11:06:07.000Z' page: currentPageToken: currentPageUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/read-by/items?pageSize=3 items: [] nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: total: 0 status: feedEntityStatus: Published isApprovableByMe: true topics: canAssignTopics: true items: [] upDownVote: downVoteCount: 0 myVote: None upVoteCount: 0 clientInfo: applicationName: Postman Playground applicationUrl: createdDate: '2023-11-22T11:06:07.000Z' event: false feedElementType: FeedItem hasVerifiedComment: false header: isRichText: messageSegments: - motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: reference: id: 005... url: /services/data/v58.0/chatter/users/005... text: Name type: EntityLink text: Name id: 0D5... isDeleteRestricted: false isSharable: false modifiedDate: '2023-11-22T11:06:07.000Z' originalFeedItem: originalFeedItemActor: parent: entityLabel: label: Account labelPlural: Accounts id: 001... motif: color: '5867E8' largeIconUrl: /img/icon/accounts64.png mediumIconUrl: /img/icon/accounts32.png smallIconUrl: /img/icon/accounts16.png svgIconUrl: mySubscription: name: Burlington Textiles Corp of America type: Account url: /services/data/v58.0/chatter/records/001... photoUrl: https:///profilephoto/729.../T relativeCreatedDate: Just now type: TextPost url: /services/data/v58.0/chatter/feed-elements/0D5... visibility: InternalUsers Actor: title: Actor required: - additionalLabel - communityNickname - companyName - displayName - firstName - id - isActive - isInThisCommunity - lastName - motif - mySubscription - name - outOfOffice - photo - reputation - title - type - url - userType type: object properties: additionalLabel: type: - string - 'null' example: example_value communityNickname: type: string example: example_value companyName: type: string example: example_value displayName: type: string example: example_value firstName: type: string example: example_value id: type: string example: abc123 isActive: type: boolean example: true isInThisCommunity: type: boolean example: true lastName: type: string example: example_value motif: $ref: '#/components/schemas/Motif' mySubscription: type: - string - 'null' example: example_value name: type: string example: Example Title outOfOffice: $ref: '#/components/schemas/OutOfOffice' photo: $ref: '#/components/schemas/Photo' reputation: type: - string - 'null' example: example_value title: type: - string - 'null' example: Example Title type: type: string example: example_value url: type: string example: https://www.example.com userType: type: string example: example_value examples: - additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: Firstname id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/729.../F mediumPhotoUrl: https:///profilephoto/729.../M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/729.../T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal Body4: title: Body4 required: - isRichText - messageSegments - text type: object properties: isRichText: type: boolean example: true messageSegments: type: array items: $ref: '#/components/schemas/MessageSegment' description: '' example: [] text: type: string example: example_value examples: - isRichText: false messageSegments: - text: New Feed Item type: Text text: New Feed Item MessageSegment: title: MessageSegment required: - text - type type: object properties: text: type: string example: example_value type: type: string example: example_value examples: - text: New Feed Item type: Text Capabilities: title: Capabilities required: - associatedActions - bookmarks - chatterLikes - close - comments - edit - interactions - mute - readBy - status - topics - upDownVote type: object properties: associatedActions: $ref: '#/components/schemas/AssociatedActions' bookmarks: $ref: '#/components/schemas/Bookmarks' chatterLikes: $ref: '#/components/schemas/ChatterLikes' close: $ref: '#/components/schemas/Close' comments: $ref: '#/components/schemas/Comments' edit: $ref: '#/components/schemas/Edit' interactions: $ref: '#/components/schemas/Interactions' mute: $ref: '#/components/schemas/Mute' readBy: $ref: '#/components/schemas/ReadBy' status: $ref: '#/components/schemas/Status1' topics: $ref: '#/components/schemas/Topics2' upDownVote: $ref: '#/components/schemas/UpDownVote' examples: - associatedActions: platformActionGroups: [] bookmarks: isBookmarkedByCurrentUser: false chatterLikes: isLikedByCurrentUser: false likesMessage: myLike: page: currentPageToken: 0 currentPageUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/chatter-likes/items items: [] nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: total: 0 close: canContextUserUpdateIsClosed: true isClosed: false comments: page: currentPageToken: currentPageUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/comments/items items: [] nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: total: 0 edit: isEditRestricted: false isEditableByMeUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/edit/is-editable-by-me lastEditedBy: lastEditedDate: latestRevision: 1 relativeLastEditedDate: interactions: count: 0 mute: isMutedByMe: false readBy: isReadByMe: true lastReadDateByMe: '2023-11-22T11:06:07.000Z' page: currentPageToken: currentPageUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/read-by/items?pageSize=3 items: [] nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: total: 0 status: feedEntityStatus: Published isApprovableByMe: true topics: canAssignTopics: true items: [] upDownVote: downVoteCount: 0 myVote: None upVoteCount: 0 AssociatedActions: title: AssociatedActions required: - platformActionGroups type: object properties: platformActionGroups: type: array items: type: string description: '' example: [] examples: - platformActionGroups: [] Bookmarks: title: Bookmarks required: - isBookmarkedByCurrentUser type: object properties: isBookmarkedByCurrentUser: type: boolean example: true examples: - isBookmarkedByCurrentUser: false ChatterLikes: title: ChatterLikes required: - isLikedByCurrentUser - likesMessage - myLike - page type: object properties: isLikedByCurrentUser: type: boolean example: true likesMessage: type: - string - 'null' example: example_value myLike: type: - string - 'null' example: example_value page: $ref: '#/components/schemas/Page' examples: - isLikedByCurrentUser: false likesMessage: myLike: page: currentPageToken: 0 currentPageUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/chatter-likes/items items: [] nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: total: 0 Page: title: Page required: - currentPageToken - currentPageUrl - items - nextPageToken - nextPageUrl - previousPageToken - previousPageUrl - total type: object properties: currentPageToken: type: integer contentEncoding: int32 example: CAUQAA currentPageUrl: type: string example: https://www.example.com items: type: array items: type: string description: '' example: [] nextPageToken: type: - string - 'null' example: CAUQAA nextPageUrl: type: - string - 'null' example: https://www.example.com previousPageToken: type: - string - 'null' example: CAUQAA previousPageUrl: type: - string - 'null' example: https://www.example.com total: type: integer contentEncoding: int32 example: 42 examples: - currentPageToken: 0 currentPageUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/chatter-likes/items items: [] nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: total: 0 Close: title: Close required: - canContextUserUpdateIsClosed - isClosed type: object properties: canContextUserUpdateIsClosed: type: boolean example: true isClosed: type: boolean example: true examples: - canContextUserUpdateIsClosed: true isClosed: false Comments: title: Comments required: - page type: object properties: page: $ref: '#/components/schemas/Page1' examples: - page: currentPageToken: currentPageUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/comments/items items: [] nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: total: 0 Page1: title: Page1 required: - currentPageToken - currentPageUrl - items - nextPageToken - nextPageUrl - previousPageToken - previousPageUrl - total type: object properties: currentPageToken: type: - string - 'null' example: CAUQAA currentPageUrl: type: string example: https://www.example.com items: type: array items: type: string description: '' example: [] nextPageToken: type: - string - 'null' example: CAUQAA nextPageUrl: type: - string - 'null' example: https://www.example.com previousPageToken: type: - string - 'null' example: CAUQAA previousPageUrl: type: - string - 'null' example: https://www.example.com total: type: integer contentEncoding: int32 example: 42 examples: - currentPageToken: currentPageUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/comments/items items: [] nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: total: 0 Edit: title: Edit required: - isEditRestricted - isEditableByMeUrl - lastEditedBy - lastEditedDate - latestRevision - relativeLastEditedDate type: object properties: isEditRestricted: type: boolean example: true isEditableByMeUrl: type: string example: https://www.example.com lastEditedBy: type: - string - 'null' example: example_value lastEditedDate: type: - string - 'null' example: example_value latestRevision: type: integer contentEncoding: int32 example: 10 relativeLastEditedDate: type: - string - 'null' example: example_value examples: - isEditRestricted: false isEditableByMeUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/edit/is-editable-by-me lastEditedBy: lastEditedDate: latestRevision: 1 relativeLastEditedDate: Interactions: title: Interactions required: - count type: object properties: count: type: integer contentEncoding: int32 example: 42 examples: - count: 0 Mute: title: Mute required: - isMutedByMe type: object properties: isMutedByMe: type: boolean example: true examples: - isMutedByMe: false ReadBy: title: ReadBy required: - isReadByMe - lastReadDateByMe - page type: object properties: isReadByMe: type: boolean example: true lastReadDateByMe: type: string example: example_value page: $ref: '#/components/schemas/Page1' examples: - isReadByMe: true lastReadDateByMe: '2023-11-22T11:06:07.000Z' page: currentPageToken: currentPageUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/read-by/items?pageSize=3 items: [] nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: total: 0 Status1: title: Status1 required: - feedEntityStatus - isApprovableByMe type: object properties: feedEntityStatus: type: string example: example_value isApprovableByMe: type: boolean example: true examples: - feedEntityStatus: Published isApprovableByMe: true Topics2: title: Topics2 required: - canAssignTopics - items type: object properties: canAssignTopics: type: boolean example: true items: type: array items: type: string description: '' example: [] examples: - canAssignTopics: true items: [] UpDownVote: title: UpDownVote required: - downVoteCount - myVote - upVoteCount type: object properties: downVoteCount: type: integer contentEncoding: int32 example: 42 myVote: type: string example: example_value upVoteCount: type: integer contentEncoding: int32 example: 42 examples: - downVoteCount: 0 myVote: None upVoteCount: 0 ClientInfo: title: ClientInfo required: - applicationName - applicationUrl type: object properties: applicationName: type: string example: example_value applicationUrl: type: - string - 'null' example: https://www.example.com examples: - applicationName: Postman Playground applicationUrl: Header: title: Header required: - isRichText - messageSegments - text type: object properties: isRichText: type: - string - 'null' example: example_value messageSegments: type: array items: $ref: '#/components/schemas/MessageSegment1' description: '' example: [] text: type: string example: example_value examples: - isRichText: messageSegments: - motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: reference: id: 005... url: /services/data/v58.0/chatter/users/005... text: Name type: EntityLink text: Name MessageSegment1: title: MessageSegment1 required: - motif - reference - text - type type: object properties: motif: $ref: '#/components/schemas/Motif' reference: $ref: '#/components/schemas/Reference' text: type: string example: example_value type: type: string example: example_value examples: - motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: reference: id: 005... url: /services/data/v58.0/chatter/users/005... text: Name type: EntityLink Reference: title: Reference required: - id - url type: object properties: id: type: string example: abc123 url: type: string example: https://www.example.com examples: - id: 005... url: /services/data/v58.0/chatter/users/005... Parent: title: Parent required: - entityLabel - id - motif - mySubscription - name - type - url type: object properties: entityLabel: $ref: '#/components/schemas/EntityLabel' id: type: string example: abc123 motif: $ref: '#/components/schemas/Motif' mySubscription: type: - string - 'null' example: example_value name: type: string example: Example Title type: type: string example: example_value url: type: string example: https://www.example.com examples: - entityLabel: label: Account labelPlural: Accounts id: 001... motif: color: '5867E8' largeIconUrl: /img/icon/accounts64.png mediumIconUrl: /img/icon/accounts32.png smallIconUrl: /img/icon/accounts16.png svgIconUrl: mySubscription: name: Burlington Textiles Corp of America type: Account url: /services/data/v58.0/chatter/records/001... EntityLabel: title: EntityLabel required: - label - labelPlural type: object properties: label: type: string example: Example Title labelPlural: type: string example: example_value examples: - label: Account labelPlural: Accounts FeedElementsPostandSearchRequest: title: FeedElementsPostandSearchRequest required: - body - capabilities - subjectId - feedElementType type: object properties: body: $ref: '#/components/schemas/Body5' capabilities: $ref: '#/components/schemas/Capabilities1' subjectId: type: string example: '500123' feedElementType: type: string example: example_value examples: - body: messageSegments: - type: Text text: 'Chatter Feed Item Created via API: ' - markupType: Paragraph type: MarkupBegin - markupType: Bold type: MarkupBegin - text: First line of text. type: Text - markupType: Bold type: MarkupEnd - markupType: Paragraph type: MarkupEnd - markupType: Paragraph type: MarkupBegin - text: ' ' type: Text - markupType: Paragraph type: MarkupEnd - markupType: Paragraph type: MarkupBegin - text: Second line of text. type: Text - markupType: Paragraph type: MarkupEnd - markupType: Code type: MarkupBegin - text: |- type: Text - markupType: Code type: MarkupEnd - type: Mention id: capabilities: files: items: - id: subjectId: feedElementType: FeedItem Body5: title: Body5 required: - messageSegments type: object properties: messageSegments: type: array items: $ref: '#/components/schemas/MessageSegment2' description: '' example: [] examples: - messageSegments: - type: Text text: 'Chatter Feed Item Created via API: ' - markupType: Paragraph type: MarkupBegin - markupType: Bold type: MarkupBegin - text: First line of text. type: Text - markupType: Bold type: MarkupEnd - markupType: Paragraph type: MarkupEnd - markupType: Paragraph type: MarkupBegin - text: ' ' type: Text - markupType: Paragraph type: MarkupEnd - markupType: Paragraph type: MarkupBegin - text: Second line of text. type: Text - markupType: Paragraph type: MarkupEnd - markupType: Code type: MarkupBegin - text: |- type: Text - markupType: Code type: MarkupEnd - type: Mention id: MessageSegment2: title: MessageSegment2 required: - type type: object properties: type: type: string example: example_value text: type: string example: example_value markupType: type: string example: example_value id: type: string example: abc123 examples: - type: Text text: 'Chatter Feed Item Created via API: ' Capabilities1: title: Capabilities1 required: - files type: object properties: files: $ref: '#/components/schemas/Files' examples: - files: items: - id: Files: title: Files required: - items type: object properties: items: type: array items: $ref: '#/components/schemas/Item' description: '' example: [] examples: - items: - id: Item: title: Item required: - id type: object properties: id: type: string example: abc123 examples: - id: SuccessfulFeedElementsPostandSearch1: title: SuccessfulFeedElementsPostandSearch1 required: - actor - body - capabilities - clientInfo - createdDate - event - feedElementType - hasVerifiedComment - header - id - isDeleteRestricted - isSharable - modifiedDate - originalFeedItem - originalFeedItemActor - parent - photoUrl - relativeCreatedDate - type - url - visibility type: object properties: actor: $ref: '#/components/schemas/Actor' body: $ref: '#/components/schemas/Body6' capabilities: $ref: '#/components/schemas/Capabilities' clientInfo: $ref: '#/components/schemas/ClientInfo' createdDate: type: string example: example_value event: type: boolean example: true feedElementType: type: string example: example_value hasVerifiedComment: type: boolean example: true header: $ref: '#/components/schemas/Header' id: type: string example: abc123 isDeleteRestricted: type: boolean example: true isSharable: type: boolean example: true modifiedDate: type: string example: example_value originalFeedItem: type: - string - 'null' example: example_value originalFeedItemActor: type: - string - 'null' example: example_value parent: $ref: '#/components/schemas/Parent' photoUrl: type: string example: https://www.example.com relativeCreatedDate: type: string example: example_value type: type: string example: example_value url: type: string example: https://www.example.com visibility: type: string example: example_value examples: - actor: additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: Firstname id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/729.../F mediumPhotoUrl: https:///profilephoto/729.../M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/729.../T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal body: isRichText: true messageSegments: - text: 'Chatter Feed Item Created via API: ' type: Text - altText: htmlTag: p markupType: Paragraph text: '' type: MarkupBegin url: - altText: htmlTag: b markupType: Bold text: '' type: MarkupBegin url: - text: First line of text. type: Text - htmlTag: b markupType: Bold text: '' type: MarkupEnd - htmlTag: p markupType: Paragraph text: '' type: MarkupEnd - altText: htmlTag: p markupType: Paragraph text: '' type: MarkupBegin url: - text: " " type: Text - htmlTag: p markupType: Paragraph text: '' type: MarkupEnd - altText: htmlTag: p markupType: Paragraph text: '' type: MarkupBegin url: - text: Second line of text. type: Text - htmlTag: p markupType: Paragraph text: '' type: MarkupEnd - altText: htmlTag: code markupType: Code text: | [Start code block] type: MarkupBegin url: - text: |- <script> var i, t = 0; for (i = 0; i < 5; i++) { t += i; } </script> type: Text - htmlTag: code markupType: Code text: |2- [End code block] type: MarkupEnd - accessible: true name: Name record: additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: Firstname id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/729.../F mediumPhotoUrl: https:///profilephoto/729.../M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/729.../T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal text: '@Name' type: Mention text: "Chatter Feed Item Created via API: First line of text.\n \nSecond line of text.\n[Start code block]\n<script>\nvar i, t = 0;\nfor (i = 0; i < 5; i++) {\n t += i;\n}\n</script>\n\ [End code block]@Name" capabilities: associatedActions: platformActionGroups: [] bookmarks: isBookmarkedByCurrentUser: false chatterLikes: isLikedByCurrentUser: false likesMessage: myLike: page: currentPageToken: 0 currentPageUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/chatter-likes/items items: [] nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: total: 0 close: canContextUserUpdateIsClosed: true isClosed: false comments: page: currentPageToken: currentPageUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/comments/items items: [] nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: total: 0 edit: isEditRestricted: false isEditableByMeUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/edit/is-editable-by-me lastEditedBy: lastEditedDate: latestRevision: 1 relativeLastEditedDate: interactions: count: 0 mute: isMutedByMe: false readBy: isReadByMe: true lastReadDateByMe: '2023-11-22T11:08:37.000Z' page: currentPageToken: currentPageUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/read-by/items?pageSize=3 items: [] nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: total: 0 status: feedEntityStatus: Published isApprovableByMe: true topics: canAssignTopics: true items: [] upDownVote: downVoteCount: 0 myVote: None upVoteCount: 0 clientInfo: applicationName: Postman Playground applicationUrl: createdDate: '2023-11-22T11:08:37.000Z' event: false feedElementType: FeedItem hasVerifiedComment: false header: isRichText: messageSegments: - motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: reference: id: 005... url: /services/data/v58.0/chatter/users/005... text: Name type: EntityLink text: Name id: 0D5... isDeleteRestricted: false isSharable: false modifiedDate: '2023-11-22T11:08:37.000Z' originalFeedItem: originalFeedItemActor: parent: entityLabel: label: Account labelPlural: Accounts id: 001... motif: color: '5867E8' largeIconUrl: /img/icon/accounts64.png mediumIconUrl: /img/icon/accounts32.png smallIconUrl: /img/icon/accounts16.png svgIconUrl: mySubscription: name: Burlington Textiles Corp of America type: Account url: /services/data/v58.0/chatter/records/001... photoUrl: https:///profilephoto/729.../T relativeCreatedDate: Just now type: TextPost url: /services/data/v58.0/chatter/feed-elements/0D5... visibility: InternalUsers Body6: title: Body6 required: - isRichText - messageSegments - text type: object properties: isRichText: type: boolean example: true messageSegments: type: array items: $ref: '#/components/schemas/MessageSegment3' description: '' example: [] text: type: string example: example_value examples: - isRichText: true messageSegments: - text: 'Chatter Feed Item Created via API: ' type: Text - altText: htmlTag: p markupType: Paragraph text: '' type: MarkupBegin url: - altText: htmlTag: b markupType: Bold text: '' type: MarkupBegin url: - text: First line of text. type: Text - htmlTag: b markupType: Bold text: '' type: MarkupEnd - htmlTag: p markupType: Paragraph text: '' type: MarkupEnd - altText: htmlTag: p markupType: Paragraph text: '' type: MarkupBegin url: - text: " " type: Text - htmlTag: p markupType: Paragraph text: '' type: MarkupEnd - altText: htmlTag: p markupType: Paragraph text: '' type: MarkupBegin url: - text: Second line of text. type: Text - htmlTag: p markupType: Paragraph text: '' type: MarkupEnd - altText: htmlTag: code markupType: Code text: | [Start code block] type: MarkupBegin url: - text: |- <script> var i, t = 0; for (i = 0; i < 5; i++) { t += i; } </script> type: Text - htmlTag: code markupType: Code text: |2- [End code block] type: MarkupEnd - accessible: true name: Name record: additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: Firstname id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/729.../F mediumPhotoUrl: https:///profilephoto/729.../M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/729.../T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal text: '@Name' type: Mention text: "Chatter Feed Item Created via API: First line of text.\n \nSecond line of text.\n[Start code block]\n<script>\nvar i, t = 0;\nfor (i = 0; i < 5; i++) {\n t += i;\n}\n</script>\n\ [End code block]@Name" MessageSegment3: title: MessageSegment3 required: - text - type type: object properties: text: type: string example: example_value type: type: string example: example_value altText: type: - string - 'null' example: example_value htmlTag: type: string example: example_value markupType: type: string example: example_value url: type: - string - 'null' example: https://www.example.com accessible: type: boolean example: true name: type: string example: Example Title record: $ref: '#/components/schemas/Record8' examples: - text: 'Chatter Feed Item Created via API: ' type: Text Record8: title: Record8 required: - additionalLabel - communityNickname - companyName - displayName - firstName - id - isActive - isInThisCommunity - lastName - motif - mySubscription - name - outOfOffice - photo - reputation - title - type - url - userType type: object properties: additionalLabel: type: - string - 'null' example: example_value communityNickname: type: string example: example_value companyName: type: string example: example_value displayName: type: string example: example_value firstName: type: string example: example_value id: type: string example: abc123 isActive: type: boolean example: true isInThisCommunity: type: boolean example: true lastName: type: string example: example_value motif: $ref: '#/components/schemas/Motif' mySubscription: type: - string - 'null' example: example_value name: type: string example: Example Title outOfOffice: $ref: '#/components/schemas/OutOfOffice' photo: $ref: '#/components/schemas/Photo' reputation: type: - string - 'null' example: example_value title: type: - string - 'null' example: Example Title type: type: string example: example_value url: type: string example: https://www.example.com userType: type: string example: example_value examples: - additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: Firstname id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/729.../F mediumPhotoUrl: https:///profilephoto/729.../M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/729.../T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal FeedElementsBatchPostRequest: title: FeedElementsBatchPostRequest required: - inputs type: object properties: inputs: type: array items: $ref: '#/components/schemas/Input' description: '' example: [] Input: title: Input required: - richInput type: object properties: richInput: $ref: '#/components/schemas/RichInput' examples: - richInput: subjectId: body: messageSegments: - type: Text text: Post Number 1 capabilities: files: items: - id: feedElementType: FeedItem RichInput: title: RichInput required: - subjectId - body - feedElementType type: object properties: subjectId: type: string example: '500123' body: $ref: '#/components/schemas/Body7' capabilities: $ref: '#/components/schemas/Capabilities1' feedElementType: type: string example: example_value examples: - subjectId: body: messageSegments: - type: Text text: Post Number 1 capabilities: files: items: - id: feedElementType: FeedItem Body7: title: Body7 required: - messageSegments type: object properties: messageSegments: type: array items: $ref: '#/components/schemas/MessageSegment5' description: '' example: [] examples: - messageSegments: - type: Text text: Post Number 1 MessageSegment5: title: MessageSegment5 required: - type - text type: object properties: type: type: string example: example_value text: type: string example: example_value fileId: type: string example: '500123' altText: type: string example: example_value examples: - type: Text text: Post Number 1 SuccessfulFeedElementsBatchPost: title: SuccessfulFeedElementsBatchPost required: - hasErrors - results type: object properties: hasErrors: type: boolean example: true results: type: array items: $ref: '#/components/schemas/Result1' description: '' example: [] examples: - hasErrors: true results: - result: actor: additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: Firstname id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/729.../F mediumPhotoUrl: https:///profilephoto/729.../M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/729.../T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal body: isRichText: false messageSegments: - text: Post Number 1 type: Text text: Post Number 1 capabilities: associatedActions: platformActionGroups: [] bookmarks: isBookmarkedByCurrentUser: false chatterLikes: isLikedByCurrentUser: false likesMessage: myLike: page: currentPageToken: 0 currentPageUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/chatter-likes/items items: [] nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: total: 0 close: canContextUserUpdateIsClosed: true isClosed: false comments: page: currentPageToken: currentPageUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/comments/items items: [] nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: total: 0 edit: isEditRestricted: false isEditableByMeUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/edit/is-editable-by-me lastEditedBy: lastEditedDate: latestRevision: 1 relativeLastEditedDate: interactions: count: 0 mute: isMutedByMe: false readBy: isReadByMe: true lastReadDateByMe: '2023-11-22T11:11:25.000Z' page: currentPageToken: currentPageUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/read-by/items?pageSize=3 items: [] nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: total: 0 status: feedEntityStatus: Published isApprovableByMe: true topics: canAssignTopics: true items: [] upDownVote: downVoteCount: 0 myVote: None upVoteCount: 0 clientInfo: applicationName: Postman Playground applicationUrl: createdDate: '2023-11-22T11:11:25.000Z' event: false feedElementType: FeedItem hasVerifiedComment: false header: isRichText: messageSegments: - motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: reference: id: 005... url: /services/data/v58.0/chatter/users/005... text: Name type: EntityLink text: Name id: 0D5... isDeleteRestricted: false isSharable: false modifiedDate: '2023-11-22T11:11:25.000Z' originalFeedItem: originalFeedItemActor: parent: entityLabel: label: Account labelPlural: Accounts id: 001... motif: color: '5867E8' largeIconUrl: /img/icon/accounts64.png mediumIconUrl: /img/icon/accounts32.png smallIconUrl: /img/icon/accounts16.png svgIconUrl: mySubscription: name: Burlington Textiles Corp of America type: Account url: /services/data/v58.0/chatter/records/001... photoUrl: https:///profilephoto/729.../T relativeCreatedDate: Just now type: TextPost url: /services/data/v58.0/chatter/feed-elements/0D5... visibility: InternalUsers statusCode: 201 - result: actor: additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: Firstname id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/729.../F mediumPhotoUrl: https:///profilephoto/729.../M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/729.../T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal body: isRichText: false messageSegments: - text: Post Number 2 type: Text text: Post Number 2 capabilities: associatedActions: platformActionGroups: [] bookmarks: isBookmarkedByCurrentUser: false chatterLikes: isLikedByCurrentUser: false likesMessage: myLike: page: currentPageToken: 0 currentPageUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/chatter-likes/items items: [] nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: total: 0 close: canContextUserUpdateIsClosed: true isClosed: false comments: page: currentPageToken: currentPageUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/comments/items items: [] nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: total: 0 edit: isEditRestricted: false isEditableByMeUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/edit/is-editable-by-me lastEditedBy: lastEditedDate: latestRevision: 1 relativeLastEditedDate: interactions: count: 0 mute: isMutedByMe: false readBy: isReadByMe: true lastReadDateByMe: '2023-11-22T11:11:25.000Z' page: currentPageToken: currentPageUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/read-by/items?pageSize=3 items: [] nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: total: 0 status: feedEntityStatus: Published isApprovableByMe: true topics: canAssignTopics: true items: [] upDownVote: downVoteCount: 0 myVote: None upVoteCount: 0 clientInfo: applicationName: Postman Playground applicationUrl: createdDate: '2023-11-22T11:11:25.000Z' event: false feedElementType: FeedItem hasVerifiedComment: false header: isRichText: messageSegments: - motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: reference: id: 005... url: /services/data/v58.0/chatter/users/005... text: Name type: EntityLink text: Name id: 0D5... isDeleteRestricted: false isSharable: true modifiedDate: '2023-11-22T11:11:25.000Z' originalFeedItem: originalFeedItemActor: parent: additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: Firstname id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/729.../F mediumPhotoUrl: https:///profilephoto/729.../M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/729.../T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal photoUrl: https:///profilephoto/729.../T relativeCreatedDate: Just now type: TextPost url: /services/data/v58.0/chatter/feed-elements/0D5... visibility: AllUsers statusCode: 201 - result: - errorCode: INVALID_MARKUP message: >- Error while parsing Rich Text Content: The value of attribute "src" associated with an element type "img" must not contain the '<' character. statusCode: 400 Result1: title: Result1 required: - result - statusCode type: object properties: result: oneOf: - allOf: - $ref: '#/components/schemas/Result2' - examples: - actor: additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: Firstname id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/729.../F mediumPhotoUrl: https:///profilephoto/729.../M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/729.../T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: >- /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal body: isRichText: false messageSegments: - text: Post Number 1 type: Text text: Post Number 1 capabilities: associatedActions: platformActionGroups: [] bookmarks: isBookmarkedByCurrentUser: false chatterLikes: isLikedByCurrentUser: false likesMessage: myLike: page: currentPageToken: 0 currentPageUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/chatter-likes/items items: [] nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: total: 0 close: canContextUserUpdateIsClosed: true isClosed: false comments: page: currentPageToken: currentPageUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/comments/items items: [] nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: total: 0 edit: isEditRestricted: false isEditableByMeUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/edit/is-editable-by-me lastEditedBy: lastEditedDate: latestRevision: 1 relativeLastEditedDate: interactions: count: 0 mute: isMutedByMe: false readBy: isReadByMe: true lastReadDateByMe: '2023-11-22T11:11:25.000Z' page: currentPageToken: currentPageUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/read-by/items?pageSize=3 items: [] nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: total: 0 status: feedEntityStatus: Published isApprovableByMe: true topics: canAssignTopics: true items: [] upDownVote: downVoteCount: 0 myVote: None upVoteCount: 0 clientInfo: applicationName: Postman Playground applicationUrl: createdDate: '2023-11-22T11:11:25.000Z' event: false feedElementType: FeedItem hasVerifiedComment: false header: isRichText: messageSegments: - motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: reference: id: 005... url: /services/data/v58.0/chatter/users/005... text: Name type: EntityLink text: Name id: 0D5... isDeleteRestricted: false isSharable: false modifiedDate: '2023-11-22T11:11:25.000Z' originalFeedItem: originalFeedItemActor: parent: entityLabel: label: Account labelPlural: Accounts id: 001... motif: color: '5867E8' largeIconUrl: /img/icon/accounts64.png mediumIconUrl: /img/icon/accounts32.png smallIconUrl: /img/icon/accounts16.png svgIconUrl: mySubscription: name: Burlington Textiles Corp of America type: Account url: /services/data/v58.0/chatter/records/001... photoUrl: https:///profilephoto/729.../T relativeCreatedDate: Just now type: TextPost url: /services/data/v58.0/chatter/feed-elements/0D5... visibility: InternalUsers - type: array items: $ref: '#/components/schemas/Result21' example: example_value statusCode: type: integer contentEncoding: int32 example: 10 examples: - result: actor: additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: Firstname id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/729.../F mediumPhotoUrl: https:///profilephoto/729.../M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/729.../T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal body: isRichText: false messageSegments: - text: Post Number 1 type: Text text: Post Number 1 capabilities: associatedActions: platformActionGroups: [] bookmarks: isBookmarkedByCurrentUser: false chatterLikes: isLikedByCurrentUser: false likesMessage: myLike: page: currentPageToken: 0 currentPageUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/chatter-likes/items items: [] nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: total: 0 close: canContextUserUpdateIsClosed: true isClosed: false comments: page: currentPageToken: currentPageUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/comments/items items: [] nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: total: 0 edit: isEditRestricted: false isEditableByMeUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/edit/is-editable-by-me lastEditedBy: lastEditedDate: latestRevision: 1 relativeLastEditedDate: interactions: count: 0 mute: isMutedByMe: false readBy: isReadByMe: true lastReadDateByMe: '2023-11-22T11:11:25.000Z' page: currentPageToken: currentPageUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/read-by/items?pageSize=3 items: [] nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: total: 0 status: feedEntityStatus: Published isApprovableByMe: true topics: canAssignTopics: true items: [] upDownVote: downVoteCount: 0 myVote: None upVoteCount: 0 clientInfo: applicationName: Postman Playground applicationUrl: createdDate: '2023-11-22T11:11:25.000Z' event: false feedElementType: FeedItem hasVerifiedComment: false header: isRichText: messageSegments: - motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: reference: id: 005... url: /services/data/v58.0/chatter/users/005... text: Name type: EntityLink text: Name id: 0D5... isDeleteRestricted: false isSharable: false modifiedDate: '2023-11-22T11:11:25.000Z' originalFeedItem: originalFeedItemActor: parent: entityLabel: label: Account labelPlural: Accounts id: 001... motif: color: '5867E8' largeIconUrl: /img/icon/accounts64.png mediumIconUrl: /img/icon/accounts32.png smallIconUrl: /img/icon/accounts16.png svgIconUrl: mySubscription: name: Burlington Textiles Corp of America type: Account url: /services/data/v58.0/chatter/records/001... photoUrl: https:///profilephoto/729.../T relativeCreatedDate: Just now type: TextPost url: /services/data/v58.0/chatter/feed-elements/0D5... visibility: InternalUsers statusCode: 201 Result2: title: Result2 type: object properties: actor: $ref: '#/components/schemas/Actor' body: $ref: '#/components/schemas/Body4' capabilities: $ref: '#/components/schemas/Capabilities' clientInfo: $ref: '#/components/schemas/ClientInfo' createdDate: type: string example: example_value event: type: boolean example: true feedElementType: type: string example: example_value hasVerifiedComment: type: boolean example: true header: $ref: '#/components/schemas/Header' id: type: string example: abc123 isDeleteRestricted: type: boolean example: true isSharable: type: boolean example: true modifiedDate: type: string example: example_value originalFeedItem: type: - string - 'null' example: example_value originalFeedItemActor: type: - string - 'null' example: example_value parent: $ref: '#/components/schemas/Parent2' photoUrl: type: string example: https://www.example.com relativeCreatedDate: type: string example: example_value type: type: string example: example_value url: type: string example: https://www.example.com visibility: type: string example: example_value examples: - actor: additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: Firstname id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/729.../F mediumPhotoUrl: https:///profilephoto/729.../M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/729.../T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal body: isRichText: false messageSegments: - text: Post Number 1 type: Text text: Post Number 1 capabilities: associatedActions: platformActionGroups: [] bookmarks: isBookmarkedByCurrentUser: false chatterLikes: isLikedByCurrentUser: false likesMessage: myLike: page: currentPageToken: 0 currentPageUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/chatter-likes/items items: [] nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: total: 0 close: canContextUserUpdateIsClosed: true isClosed: false comments: page: currentPageToken: currentPageUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/comments/items items: [] nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: total: 0 edit: isEditRestricted: false isEditableByMeUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/edit/is-editable-by-me lastEditedBy: lastEditedDate: latestRevision: 1 relativeLastEditedDate: interactions: count: 0 mute: isMutedByMe: false readBy: isReadByMe: true lastReadDateByMe: '2023-11-22T11:11:25.000Z' page: currentPageToken: currentPageUrl: >- /services/data/v58.0/chatter/feed-elements/0D5.../capabilities/read-by/items?pageSize=3 items: [] nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: total: 0 status: feedEntityStatus: Published isApprovableByMe: true topics: canAssignTopics: true items: [] upDownVote: downVoteCount: 0 myVote: None upVoteCount: 0 clientInfo: applicationName: Postman Playground applicationUrl: createdDate: '2023-11-22T11:11:25.000Z' event: false feedElementType: FeedItem hasVerifiedComment: false header: isRichText: messageSegments: - motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: reference: id: 005... url: /services/data/v58.0/chatter/users/005... text: Name type: EntityLink text: Name id: 0D5... isDeleteRestricted: false isSharable: false modifiedDate: '2023-11-22T11:11:25.000Z' originalFeedItem: originalFeedItemActor: parent: entityLabel: label: Account labelPlural: Accounts id: 001... motif: color: '5867E8' largeIconUrl: /img/icon/accounts64.png mediumIconUrl: /img/icon/accounts32.png smallIconUrl: /img/icon/accounts16.png svgIconUrl: mySubscription: name: Burlington Textiles Corp of America type: Account url: /services/data/v58.0/chatter/records/001... photoUrl: https:///profilephoto/729.../T relativeCreatedDate: Just now type: TextPost url: /services/data/v58.0/chatter/feed-elements/0D5... visibility: InternalUsers Parent2: title: Parent2 required: - id - motif - mySubscription - name - type - url type: object properties: entityLabel: $ref: '#/components/schemas/EntityLabel' id: type: string example: abc123 motif: $ref: '#/components/schemas/Motif' mySubscription: type: - string - 'null' example: example_value name: type: string example: Example Title type: type: string example: example_value url: type: string example: https://www.example.com additionalLabel: type: - string - 'null' example: example_value communityNickname: type: string example: example_value companyName: type: string example: example_value displayName: type: string example: example_value firstName: type: string example: example_value isActive: type: boolean example: true isInThisCommunity: type: boolean example: true lastName: type: string example: example_value outOfOffice: $ref: '#/components/schemas/OutOfOffice' photo: $ref: '#/components/schemas/Photo' reputation: type: - string - 'null' example: example_value title: type: - string - 'null' example: Example Title userType: type: string example: example_value examples: - entityLabel: label: Account labelPlural: Accounts id: 001... motif: color: '5867E8' largeIconUrl: /img/icon/accounts64.png mediumIconUrl: /img/icon/accounts32.png smallIconUrl: /img/icon/accounts16.png svgIconUrl: mySubscription: name: Burlington Textiles Corp of America type: Account url: /services/data/v58.0/chatter/records/001... Result21: title: Result21 required: - errorCode - message type: object properties: errorCode: type: string example: example_value message: type: string example: example_value examples: - errorCode: INVALID_MARKUP message: >- Error while parsing Rich Text Content: The value of attribute "src" associated with an element type "img" must not contain the '<' character. FeedElementsCapabilityCommentsItems: title: FeedElementsCapabilityCommentsItems required: - body - capabilities - clientInfo - createdDate - feedElement - id - isDeleteRestricted - likes - likesMessage - moderationFlags - myLike - parent - relativeCreatedDate - threadLevel - threadParentId - type - url - user type: object properties: body: $ref: '#/components/schemas/Body4' capabilities: $ref: '#/components/schemas/Capabilities6' clientInfo: $ref: '#/components/schemas/ClientInfo' createdDate: type: string example: example_value feedElement: $ref: '#/components/schemas/FeedElement' id: type: string example: abc123 isDeleteRestricted: type: boolean example: true likes: $ref: '#/components/schemas/Likes' likesMessage: type: - string - 'null' example: example_value moderationFlags: type: - string - 'null' example: example_value myLike: type: - string - 'null' example: example_value parent: $ref: '#/components/schemas/Parent4' relativeCreatedDate: type: string example: example_value threadLevel: type: integer contentEncoding: int32 example: 10 threadParentId: type: - string - 'null' example: '500123' type: type: string example: example_value url: type: string example: https://www.example.com user: $ref: '#/components/schemas/User' examples: - body: isRichText: false messageSegments: - text: New Comment type: Text text: New Comment capabilities: edit: isEditRestricted: false isEditableByMeUrl: >- /services/data/v58.0/chatter/comments/0D7.../capabilities/edit/is-editable-by-me lastEditedBy: lastEditedDate: latestRevision: 1 relativeLastEditedDate: status: feedEntityStatus: Published isApprovableByMe: true upDownVote: downVoteCount: 0 myVote: None upVoteCount: 0 verified: isVerifiableByMe: false isVerified: false isVerifiedByAnonymized: lastVerifiedByUser: lastVerifiedDate: clientInfo: applicationName: Postman Playground applicationUrl: createdDate: '2023-11-22T11:14:33.000Z' feedElement: id: 0D5... url: /services/data/v58.0/chatter/feed-elements/0D5... id: 0D7... isDeleteRestricted: false likes: currentPageToken: currentPageUrl: /services/data/v58.0/chatter/comments/0D7.../likes items: [] nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: total: 0 likesMessage: moderationFlags: myLike: parent: id: 001... url: /services/data/v58.0/chatter/records/001... relativeCreatedDate: Just now threadLevel: 0 threadParentId: type: TextComment url: /services/data/v58.0/chatter/comments/0D7... user: additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: Firstname id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/729.../F mediumPhotoUrl: https:///profilephoto/729.../M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/729.../T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal Capabilities6: title: Capabilities6 required: - edit - status - upDownVote - verified type: object properties: edit: $ref: '#/components/schemas/Edit' status: $ref: '#/components/schemas/Status1' upDownVote: $ref: '#/components/schemas/UpDownVote' verified: $ref: '#/components/schemas/Verified' examples: - edit: isEditRestricted: false isEditableByMeUrl: >- /services/data/v58.0/chatter/comments/0D7.../capabilities/edit/is-editable-by-me lastEditedBy: lastEditedDate: latestRevision: 1 relativeLastEditedDate: status: feedEntityStatus: Published isApprovableByMe: true upDownVote: downVoteCount: 0 myVote: None upVoteCount: 0 verified: isVerifiableByMe: false isVerified: false isVerifiedByAnonymized: lastVerifiedByUser: lastVerifiedDate: Verified: title: Verified required: - isVerifiableByMe - isVerified - isVerifiedByAnonymized - lastVerifiedByUser - lastVerifiedDate type: object properties: isVerifiableByMe: type: boolean example: true isVerified: type: boolean example: true isVerifiedByAnonymized: type: - string - 'null' example: example_value lastVerifiedByUser: type: - string - 'null' example: example_value lastVerifiedDate: type: - string - 'null' example: example_value examples: - isVerifiableByMe: false isVerified: false isVerifiedByAnonymized: lastVerifiedByUser: lastVerifiedDate: FeedElement: title: FeedElement required: - id - url type: object properties: id: type: string example: abc123 url: type: string example: https://www.example.com examples: - id: 0D5... url: /services/data/v58.0/chatter/feed-elements/0D5... Likes: title: Likes required: - currentPageToken - currentPageUrl - items - nextPageToken - nextPageUrl - previousPageToken - previousPageUrl - total type: object properties: currentPageToken: type: - string - 'null' example: CAUQAA currentPageUrl: type: string example: https://www.example.com items: type: array items: type: string description: '' example: [] nextPageToken: type: - string - 'null' example: CAUQAA nextPageUrl: type: - string - 'null' example: https://www.example.com previousPageToken: type: - string - 'null' example: CAUQAA previousPageUrl: type: - string - 'null' example: https://www.example.com total: type: integer contentEncoding: int32 example: 42 examples: - currentPageToken: currentPageUrl: /services/data/v58.0/chatter/comments/0D7.../likes items: [] nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: total: 0 Parent4: title: Parent4 required: - id - url type: object properties: id: type: string example: abc123 url: type: string example: https://www.example.com examples: - id: 001... url: /services/data/v58.0/chatter/records/001... User: title: User required: - additionalLabel - communityNickname - companyName - displayName - firstName - id - isActive - isInThisCommunity - lastName - motif - mySubscription - name - outOfOffice - photo - reputation - title - type - url - userType type: object properties: additionalLabel: type: - string - 'null' example: example_value communityNickname: type: string example: example_value companyName: type: string example: example_value displayName: type: string example: example_value firstName: type: string example: example_value id: type: string example: abc123 isActive: type: boolean example: true isInThisCommunity: type: boolean example: true lastName: type: string example: example_value motif: $ref: '#/components/schemas/Motif' mySubscription: type: - string - 'null' example: example_value name: type: string example: Example Title outOfOffice: $ref: '#/components/schemas/OutOfOffice' photo: $ref: '#/components/schemas/Photo' reputation: type: - string - 'null' example: example_value title: type: - string - 'null' example: Example Title type: type: string example: example_value url: type: string example: https://www.example.com userType: type: string example: example_value examples: - additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: Firstname id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/729.../F mediumPhotoUrl: https:///profilephoto/729.../M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/729.../T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal SuccessfulComment: title: SuccessfulComment required: - body - capabilities - clientInfo - createdDate - feedElement - id - isDeleteRestricted - likes - likesMessage - moderationFlags - myLike - parent - relativeCreatedDate - threadLevel - threadParentId - type - url - user type: object properties: body: $ref: '#/components/schemas/Body11' capabilities: $ref: '#/components/schemas/Capabilities6' clientInfo: type: - string - 'null' example: example_value createdDate: type: string example: example_value feedElement: $ref: '#/components/schemas/FeedElement' id: type: string example: abc123 isDeleteRestricted: type: boolean example: true likes: $ref: '#/components/schemas/Likes' likesMessage: type: - string - 'null' example: example_value moderationFlags: type: - string - 'null' example: example_value myLike: type: - string - 'null' example: example_value parent: $ref: '#/components/schemas/Parent4' relativeCreatedDate: type: string example: example_value threadLevel: type: integer contentEncoding: int32 example: 10 threadParentId: type: - string - 'null' example: '500123' type: type: string example: example_value url: type: string example: https://www.example.com user: $ref: '#/components/schemas/User' examples: - body: isRichText: true messageSegments: - altText: htmlTag: p markupType: Paragraph text: '' type: MarkupBegin url: - text: Comment type: Text - htmlTag: p markupType: Paragraph text: '' type: MarkupEnd text: | Comment capabilities: edit: isEditRestricted: false isEditableByMeUrl: >- /services/data/v58.0/chatter/comments/0D7.../capabilities/edit/is-editable-by-me lastEditedBy: lastEditedDate: latestRevision: 1 relativeLastEditedDate: status: feedEntityStatus: Published isApprovableByMe: true upDownVote: downVoteCount: 0 myVote: None upVoteCount: 0 verified: isVerifiableByMe: false isVerified: false isVerifiedByAnonymized: lastVerifiedByUser: lastVerifiedDate: clientInfo: createdDate: '2023-11-22T11:19:50.000Z' feedElement: id: 0D5... url: /services/data/v58.0/chatter/feed-elements/0D5... id: 0D7... isDeleteRestricted: false likes: currentPageToken: currentPageUrl: /services/data/v58.0/chatter/comments/0D7.../likes items: [] nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: total: 0 likesMessage: moderationFlags: myLike: parent: id: 005... url: /services/data/v58.0/chatter/users/005... relativeCreatedDate: Just now threadLevel: 0 threadParentId: type: TextComment url: /services/data/v58.0/chatter/comments/0D7... user: additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: Firstname id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/729.../F mediumPhotoUrl: https:///profilephoto/729.../M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/729.../T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal Body11: title: Body11 required: - isRichText - messageSegments - text type: object properties: isRichText: type: boolean example: true messageSegments: type: array items: $ref: '#/components/schemas/MessageSegment11' description: '' example: [] text: type: string example: example_value examples: - isRichText: true messageSegments: - altText: htmlTag: p markupType: Paragraph text: '' type: MarkupBegin url: - text: Comment type: Text - htmlTag: p markupType: Paragraph text: '' type: MarkupEnd text: | Comment MessageSegment11: title: MessageSegment11 required: - text - type type: object properties: altText: type: - string - 'null' example: example_value htmlTag: type: string example: example_value markupType: type: string example: example_value text: type: string example: example_value type: type: string example: example_value url: type: - string - 'null' example: https://www.example.com examples: - altText: htmlTag: p markupType: Paragraph text: '' type: MarkupBegin url: Comment-EditRequest: title: Comment-EditRequest required: - body type: object properties: body: $ref: '#/components/schemas/Body12' examples: - body: messageSegments: - type: Text text: Editing a comment Body12: title: Body12 required: - messageSegments type: object properties: messageSegments: type: array items: $ref: '#/components/schemas/MessageSegment' description: '' example: [] examples: - messageSegments: - type: Text text: Editing a comment SuccessfulComment-Edit: title: SuccessfulComment-Edit required: - body - capabilities - clientInfo - createdDate - feedElement - id - isDeleteRestricted - likes - likesMessage - moderationFlags - myLike - parent - relativeCreatedDate - threadLevel - threadParentId - type - url - user type: object properties: body: $ref: '#/components/schemas/Body4' capabilities: $ref: '#/components/schemas/Capabilities8' clientInfo: type: - string - 'null' example: example_value createdDate: type: string example: example_value feedElement: $ref: '#/components/schemas/FeedElement' id: type: string example: abc123 isDeleteRestricted: type: boolean example: true likes: $ref: '#/components/schemas/Likes' likesMessage: type: - string - 'null' example: example_value moderationFlags: type: - string - 'null' example: example_value myLike: type: - string - 'null' example: example_value parent: $ref: '#/components/schemas/Parent4' relativeCreatedDate: type: string example: example_value threadLevel: type: integer contentEncoding: int32 example: 10 threadParentId: type: - string - 'null' example: '500123' type: type: string example: example_value url: type: string example: https://www.example.com user: $ref: '#/components/schemas/User' examples: - body: isRichText: false messageSegments: - text: Editing a comment type: Text text: Editing a comment capabilities: edit: isEditRestricted: false isEditableByMeUrl: >- /services/data/v58.0/chatter/comments/0D7.../capabilities/edit/is-editable-by-me lastEditedBy: additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: Firstname id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/7292o000000oAgZ/F mediumPhotoUrl: https:///profilephoto/7292o000000oAgZ/M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/7292o000000oAgZ/T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal lastEditedDate: '2023-11-22T11:22:36.000Z' latestRevision: 2 relativeLastEditedDate: Just now status: feedEntityStatus: Published isApprovableByMe: true upDownVote: downVoteCount: 0 myVote: None upVoteCount: 0 verified: isVerifiableByMe: false isVerified: false isVerifiedByAnonymized: lastVerifiedByUser: lastVerifiedDate: clientInfo: createdDate: '2023-11-22T11:19:50.000Z' feedElement: id: 0D5... url: /services/data/v58.0/chatter/feed-elements/0D5... id: 0D7... isDeleteRestricted: false likes: currentPageToken: currentPageUrl: /services/data/v58.0/chatter/comments/0D7.../likes items: [] nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: total: 0 likesMessage: moderationFlags: myLike: parent: id: 005... url: /services/data/v58.0/chatter/users/005... relativeCreatedDate: 2m ago threadLevel: 0 threadParentId: type: TextComment url: /services/data/v58.0/chatter/comments/0D7... user: additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: Firstname id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/7292o000000oAgZ/F mediumPhotoUrl: https:///profilephoto/7292o000000oAgZ/M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/7292o000000oAgZ/T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal Capabilities8: title: Capabilities8 required: - edit - status - upDownVote - verified type: object properties: edit: $ref: '#/components/schemas/Edit6' status: $ref: '#/components/schemas/Status1' upDownVote: $ref: '#/components/schemas/UpDownVote' verified: $ref: '#/components/schemas/Verified' examples: - edit: isEditRestricted: false isEditableByMeUrl: >- /services/data/v58.0/chatter/comments/0D7.../capabilities/edit/is-editable-by-me lastEditedBy: additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: Firstname id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/7292o000000oAgZ/F mediumPhotoUrl: https:///profilephoto/7292o000000oAgZ/M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/7292o000000oAgZ/T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal lastEditedDate: '2023-11-22T11:22:36.000Z' latestRevision: 2 relativeLastEditedDate: Just now status: feedEntityStatus: Published isApprovableByMe: true upDownVote: downVoteCount: 0 myVote: None upVoteCount: 0 verified: isVerifiableByMe: false isVerified: false isVerifiedByAnonymized: lastVerifiedByUser: lastVerifiedDate: Edit6: title: Edit6 required: - isEditRestricted - isEditableByMeUrl - lastEditedBy - lastEditedDate - latestRevision - relativeLastEditedDate type: object properties: isEditRestricted: type: boolean example: true isEditableByMeUrl: type: string example: https://www.example.com lastEditedBy: $ref: '#/components/schemas/LastEditedBy' lastEditedDate: type: string example: example_value latestRevision: type: integer contentEncoding: int32 example: 10 relativeLastEditedDate: type: string example: example_value examples: - isEditRestricted: false isEditableByMeUrl: >- /services/data/v58.0/chatter/comments/0D7.../capabilities/edit/is-editable-by-me lastEditedBy: additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: Firstname id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/7292o000000oAgZ/F mediumPhotoUrl: https:///profilephoto/7292o000000oAgZ/M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/7292o000000oAgZ/T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal lastEditedDate: '2023-11-22T11:22:36.000Z' latestRevision: 2 relativeLastEditedDate: Just now LastEditedBy: title: LastEditedBy required: - additionalLabel - communityNickname - companyName - displayName - firstName - id - isActive - isInThisCommunity - lastName - motif - mySubscription - name - outOfOffice - photo - reputation - title - type - url - userType type: object properties: additionalLabel: type: - string - 'null' example: example_value communityNickname: type: string example: example_value companyName: type: string example: example_value displayName: type: string example: example_value firstName: type: string example: example_value id: type: string example: abc123 isActive: type: boolean example: true isInThisCommunity: type: boolean example: true lastName: type: string example: example_value motif: $ref: '#/components/schemas/Motif' mySubscription: type: - string - 'null' example: example_value name: type: string example: Example Title outOfOffice: $ref: '#/components/schemas/OutOfOffice' photo: $ref: '#/components/schemas/Photo' reputation: type: - string - 'null' example: example_value title: type: - string - 'null' example: Example Title type: type: string example: example_value url: type: string example: https://www.example.com userType: type: string example: example_value examples: - additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: Firstname id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/7292o000000oAgZ/F mediumPhotoUrl: https:///profilephoto/7292o000000oAgZ/M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/7292o000000oAgZ/T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal SuccessfulListofGroups: title: SuccessfulListofGroups required: - currentPageUrl - groups - nextPageUrl - previousPageUrl type: object properties: currentPageUrl: type: string example: https://www.example.com groups: type: array items: $ref: '#/components/schemas/Group' description: '' example: [] nextPageUrl: type: - string - 'null' example: https://www.example.com previousPageUrl: type: - string - 'null' example: https://www.example.com examples: - currentPageUrl: /services/data/v58.0/chatter/groups groups: - additionalLabel: announcement: bannerPhoto: bannerPhotoUrl: https:///profilephoto/0F9/B bannerPhotoVersionId: url: /services/data/v58.0/chatter/groups/0F9.../banner-photo canHaveChatterGuests: false community: description: Test group emailToChatterAddress: 0F9...@post.2o-i6mbeaq.eu25.chatter.salesforce.com fileCount: 0 id: 0F9... information: text: title: isArchived: false isAutoArchiveDisabled: false isBroadcast: false lastFeedElementPostDate: '2023-11-22T11:25:37.000Z' memberCount: 1 motif: color: 1B96FF largeIconUrl: /img/icon/groups64.png mediumIconUrl: /img/icon/groups32.png smallIconUrl: /img/icon/groups16.png svgIconUrl: myRole: GroupOwner mySubscription: id: 0FB... url: /services/data/v58.0/chatter/group-memberships/0FB... name: Test owner: additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Firstname firstName: Firstname id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Firstname outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/7292o000000oAgZ/F mediumPhotoUrl: https:///profilephoto/7292o000000oAgZ/M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/7292o000000oAgZ/T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal pendingRequests: photo: fullEmailPhotoUrl: >- https:///img/userprofile/default_group_profile_200_v2.png?fromEmail=1 largePhotoUrl: https:///profilephoto/0F9/F mediumPhotoUrl: https:///profilephoto/0F9/M photoVersionId: smallPhotoUrl: https:///profilephoto/0F9/T standardEmailPhotoUrl: >- https:///img/userprofile/default_group_profile_45_v2.png?fromEmail=1 url: /services/data/v58.0/chatter/groups/0F9.../photo type: CollaborationGroup url: /services/data/v58.0/chatter/groups/0F9... visibility: PublicAccess nextPageUrl: previousPageUrl: Group: title: Group required: - additionalLabel - announcement - bannerPhoto - canHaveChatterGuests - community - description - emailToChatterAddress - fileCount - id - information - isArchived - isAutoArchiveDisabled - isBroadcast - lastFeedElementPostDate - memberCount - motif - myRole - mySubscription - name - owner - pendingRequests - photo - type - url - visibility type: object properties: additionalLabel: type: - string - 'null' example: example_value announcement: type: - string - 'null' example: example_value bannerPhoto: $ref: '#/components/schemas/BannerPhoto' canHaveChatterGuests: type: boolean example: true community: type: - string - 'null' example: example_value description: type: string example: A sample description. emailToChatterAddress: type: string example: user@example.com fileCount: type: integer contentEncoding: int32 example: 42 id: type: string example: abc123 information: $ref: '#/components/schemas/Information' isArchived: type: boolean example: true isAutoArchiveDisabled: type: boolean example: true isBroadcast: type: boolean example: true lastFeedElementPostDate: type: string example: example_value memberCount: type: integer contentEncoding: int32 example: 42 motif: $ref: '#/components/schemas/Motif' myRole: type: string example: example_value mySubscription: $ref: '#/components/schemas/MySubscription' name: type: string example: Example Title owner: $ref: '#/components/schemas/Owner' pendingRequests: type: - string - 'null' example: example_value photo: $ref: '#/components/schemas/Photo15' type: type: string example: example_value url: type: string example: https://www.example.com visibility: type: string example: example_value examples: - additionalLabel: announcement: bannerPhoto: bannerPhotoUrl: https:///profilephoto/0F9/B bannerPhotoVersionId: url: /services/data/v58.0/chatter/groups/0F9.../banner-photo canHaveChatterGuests: false community: description: Test group emailToChatterAddress: 0F9...@post.2o-i6mbeaq.eu25.chatter.salesforce.com fileCount: 0 id: 0F9... information: text: title: isArchived: false isAutoArchiveDisabled: false isBroadcast: false lastFeedElementPostDate: '2023-11-22T11:25:37.000Z' memberCount: 1 motif: color: 1B96FF largeIconUrl: /img/icon/groups64.png mediumIconUrl: /img/icon/groups32.png smallIconUrl: /img/icon/groups16.png svgIconUrl: myRole: GroupOwner mySubscription: id: 0FB... url: /services/data/v58.0/chatter/group-memberships/0FB... name: Test owner: additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Firstname firstName: Firstname id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Firstname outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/7292o000000oAgZ/F mediumPhotoUrl: https:///profilephoto/7292o000000oAgZ/M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/7292o000000oAgZ/T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal pendingRequests: photo: fullEmailPhotoUrl: >- https:///img/userprofile/default_group_profile_200_v2.png?fromEmail=1 largePhotoUrl: https:///profilephoto/0F9/F mediumPhotoUrl: https:///profilephoto/0F9/M photoVersionId: smallPhotoUrl: https:///profilephoto/0F9/T standardEmailPhotoUrl: >- https:///img/userprofile/default_group_profile_45_v2.png?fromEmail=1 url: /services/data/v58.0/chatter/groups/0F9.../photo type: CollaborationGroup url: /services/data/v58.0/chatter/groups/0F9... visibility: PublicAccess BannerPhoto: title: BannerPhoto required: - bannerPhotoUrl - bannerPhotoVersionId - url type: object properties: bannerPhotoUrl: type: string example: https://www.example.com bannerPhotoVersionId: type: - string - 'null' example: '500123' url: type: string example: https://www.example.com examples: - bannerPhotoUrl: https:///profilephoto/0F9/B bannerPhotoVersionId: url: /services/data/v58.0/chatter/groups/0F9.../banner-photo Information: title: Information required: - text - title type: object properties: text: type: - string - 'null' example: example_value title: type: - string - 'null' example: Example Title examples: - text: title: MySubscription: title: MySubscription required: - id - url type: object properties: id: type: string example: abc123 url: type: string example: https://www.example.com examples: - id: 0FB... url: /services/data/v58.0/chatter/group-memberships/0FB... Photo15: title: Photo15 required: - fullEmailPhotoUrl - largePhotoUrl - mediumPhotoUrl - photoVersionId - smallPhotoUrl - standardEmailPhotoUrl - url type: object properties: fullEmailPhotoUrl: type: string example: user@example.com largePhotoUrl: type: string example: https://www.example.com mediumPhotoUrl: type: string example: https://www.example.com photoVersionId: type: - string - 'null' example: '500123' smallPhotoUrl: type: string example: https://www.example.com standardEmailPhotoUrl: type: string example: user@example.com url: type: string example: https://www.example.com examples: - fullEmailPhotoUrl: >- https:///img/userprofile/default_group_profile_200_v2.png?fromEmail=1 largePhotoUrl: https:///profilephoto/0F9/F mediumPhotoUrl: https:///profilephoto/0F9/M photoVersionId: smallPhotoUrl: https:///profilephoto/0F9/T standardEmailPhotoUrl: >- https:///img/userprofile/default_group_profile_45_v2.png?fromEmail=1 url: /services/data/v58.0/chatter/groups/0F9.../photo SuccessfulGroupMembersPrivate: title: SuccessfulGroupMembersPrivate required: - requests - total type: object properties: requests: type: array items: $ref: '#/components/schemas/Request' description: '' example: [] total: type: - string - 'null' example: 42 examples: - requests: - createdDate: '2023-11-22T11:46:32.000Z' id: 0I5... lastUpdateDate: '2023-11-22T11:46:32.000Z' requestedGroup: id: 0F9... url: /services/data/v58.0/chatter/groups/0F9... responseMessage: status: Pending url: /services/data/v58.0/chatter/group-membership-requests/0I5... user: additionalLabel: communityNickname: User1700653511864742682 companyName: displayName: User Sample firstName: User id: 005... isActive: true isInThisCommunity: true lastName: Sample motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: User Sample outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///img/userprofile/default_profile_200_v2.png?fromEmail=1 largePhotoUrl: https:///profilephoto/005/F mediumPhotoUrl: https:///profilephoto/005/M photoVersionId: smallPhotoUrl: https:///profilephoto/005/T standardEmailPhotoUrl: >- https:///img/userprofile/default_profile_45_v2.png?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal total: Request: title: Request required: - createdDate - id - lastUpdateDate - requestedGroup - responseMessage - status - url - user type: object properties: createdDate: type: string example: example_value id: type: string example: abc123 lastUpdateDate: type: string example: example_value requestedGroup: $ref: '#/components/schemas/RequestedGroup' responseMessage: type: - string - 'null' example: example_value status: type: string example: example_value url: type: string example: https://www.example.com user: $ref: '#/components/schemas/User3' examples: - createdDate: '2023-11-22T11:46:32.000Z' id: 0I5... lastUpdateDate: '2023-11-22T11:46:32.000Z' requestedGroup: id: 0F9... url: /services/data/v58.0/chatter/groups/0F9... responseMessage: status: Pending url: /services/data/v58.0/chatter/group-membership-requests/0I5... user: additionalLabel: communityNickname: User1700653511864742682 companyName: displayName: User Sample firstName: User id: 005... isActive: true isInThisCommunity: true lastName: Sample motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: User Sample outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///img/userprofile/default_profile_200_v2.png?fromEmail=1 largePhotoUrl: https:///profilephoto/005/F mediumPhotoUrl: https:///profilephoto/005/M photoVersionId: smallPhotoUrl: https:///profilephoto/005/T standardEmailPhotoUrl: >- https:///img/userprofile/default_profile_45_v2.png?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal RequestedGroup: title: RequestedGroup required: - id - url type: object properties: id: type: string example: abc123 url: type: string example: https://www.example.com examples: - id: 0F9... url: /services/data/v58.0/chatter/groups/0F9... User3: title: User3 required: - additionalLabel - communityNickname - companyName - displayName - firstName - id - isActive - isInThisCommunity - lastName - motif - mySubscription - name - outOfOffice - photo - reputation - title - type - url - userType type: object properties: additionalLabel: type: - string - 'null' example: example_value communityNickname: type: string example: example_value companyName: type: - string - 'null' example: example_value displayName: type: string example: example_value firstName: type: string example: example_value id: type: string example: abc123 isActive: type: boolean example: true isInThisCommunity: type: boolean example: true lastName: type: string example: example_value motif: $ref: '#/components/schemas/Motif' mySubscription: type: - string - 'null' example: example_value name: type: string example: Example Title outOfOffice: $ref: '#/components/schemas/OutOfOffice' photo: $ref: '#/components/schemas/Photo15' reputation: type: - string - 'null' example: example_value title: type: - string - 'null' example: Example Title type: type: string example: example_value url: type: string example: https://www.example.com userType: type: string example: example_value examples: - additionalLabel: communityNickname: User1700653511864742682 companyName: displayName: User Sample firstName: User id: 005... isActive: true isInThisCommunity: true lastName: Sample motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: User Sample outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///img/userprofile/default_profile_200_v2.png?fromEmail=1 largePhotoUrl: https:///profilephoto/005/F mediumPhotoUrl: https:///profilephoto/005/M photoVersionId: smallPhotoUrl: https:///profilephoto/005/T standardEmailPhotoUrl: >- https:///img/userprofile/default_profile_45_v2.png?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal SuccessfulListofGroups-POST: title: SuccessfulListofGroups-POST required: - additionalLabel - announcement - bannerPhoto - canHaveChatterGuests - community - description - emailToChatterAddress - fileCount - id - information - isArchived - isAutoArchiveDisabled - isBroadcast - lastFeedElementPostDate - memberCount - motif - myRole - mySubscription - name - owner - pendingRequests - photo - type - url - visibility type: object properties: additionalLabel: type: string example: example_value announcement: type: - string - 'null' example: example_value bannerPhoto: $ref: '#/components/schemas/BannerPhoto' canHaveChatterGuests: type: boolean example: true community: type: - string - 'null' example: example_value description: type: string example: A sample description. emailToChatterAddress: type: string example: user@example.com fileCount: type: integer contentEncoding: int32 example: 42 id: type: string example: abc123 information: $ref: '#/components/schemas/Information' isArchived: type: boolean example: true isAutoArchiveDisabled: type: boolean example: true isBroadcast: type: boolean example: true lastFeedElementPostDate: type: string example: example_value memberCount: type: integer contentEncoding: int32 example: 42 motif: $ref: '#/components/schemas/Motif' myRole: type: string example: example_value mySubscription: $ref: '#/components/schemas/MySubscription' name: type: string example: Example Title owner: $ref: '#/components/schemas/Owner' pendingRequests: type: integer contentEncoding: int32 example: 10 photo: $ref: '#/components/schemas/Photo15' type: type: string example: example_value url: type: string example: https://www.example.com visibility: type: string example: example_value examples: - additionalLabel: Private With Customers announcement: bannerPhoto: bannerPhotoUrl: https:///profilephoto/0F9/B bannerPhotoVersionId: url: /services/data/v58.0/chatter/groups/0F9.../banner-photo canHaveChatterGuests: true community: description: Created via API emailToChatterAddress: 0F9...@post.2o-i6mbeaq.eu25.chatter.salesforce.com fileCount: 0 id: 0F9... information: text: title: isArchived: false isAutoArchiveDisabled: false isBroadcast: false lastFeedElementPostDate: '2023-11-22T11:29:05.000Z' memberCount: 1 motif: color: 1B96FF largeIconUrl: /img/icon/groups64.png mediumIconUrl: /img/icon/groups32.png smallIconUrl: /img/icon/groups16.png svgIconUrl: myRole: GroupOwner mySubscription: id: 0FB... url: /services/data/v58.0/chatter/group-memberships/0FB... name: New Chatter Group (Private Access) owner: additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: Firstname id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/729.../F mediumPhotoUrl: https:///profilephoto/729.../M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/729.../T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal pendingRequests: 0 photo: fullEmailPhotoUrl: >- https:///img/userprofile/default_group_profile_200_v2.png?fromEmail=1 largePhotoUrl: https:///profilephoto/0F9/F mediumPhotoUrl: https:///profilephoto/0F9/M photoVersionId: smallPhotoUrl: https:///profilephoto/0F9/T standardEmailPhotoUrl: >- https:///img/userprofile/default_group_profile_45_v2.png?fromEmail=1 url: /services/data/v58.0/chatter/groups/0F9.../photo type: CollaborationGroup url: /services/data/v58.0/chatter/groups/0F9... visibility: PrivateAccess GroupInvitesRequest: title: GroupInvitesRequest required: - invitees - message type: object properties: invitees: $ref: '#/components/schemas/Invitees' message: type: string example: example_value examples: - invitees: emails: - testemail1@sfdcpostman.com - testemail2@sfdcpostman.com message: >- Join this group to participate in the discussion about your favorite feature. Invitees: title: Invitees required: - emails type: object properties: emails: type: array items: type: string description: '' example: user@example.com examples: - emails: - testemail1@sfdcpostman.com - testemail2@sfdcpostman.com SuccessfulGroupMembers: title: SuccessfulGroupMembers required: - id - lastFeedAccessDate - role - url - user type: object properties: id: type: string example: abc123 lastFeedAccessDate: type: - string - 'null' example: example_value role: type: string example: example_value url: type: string example: https://www.example.com user: $ref: '#/components/schemas/User4' examples: - id: 0FB... lastFeedAccessDate: role: StandardMember url: /services/data/v58.0/chatter/group-memberships/0FB... user: additionalLabel: communityNickname: integration1.4407085834085586E12 companyName: Salesforce displayName: Integration User firstName: Integration id: 005... isActive: true isInThisCommunity: true lastName: User motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Integration User outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///img/userprofile/default_profile_200_v2.png?fromEmail=1 largePhotoUrl: https:///profilephoto/005/F mediumPhotoUrl: https:///profilephoto/005/M photoVersionId: smallPhotoUrl: https:///profilephoto/005/T standardEmailPhotoUrl: >- https:///img/userprofile/default_profile_45_v2.png?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal User4: title: User4 required: - additionalLabel - communityNickname - companyName - displayName - firstName - id - isActive - isInThisCommunity - lastName - motif - mySubscription - name - outOfOffice - photo - reputation - title - type - url - userType type: object properties: additionalLabel: type: - string - 'null' example: example_value communityNickname: type: string example: example_value companyName: type: string example: example_value displayName: type: string example: example_value firstName: type: string example: example_value id: type: string example: abc123 isActive: type: boolean example: true isInThisCommunity: type: boolean example: true lastName: type: string example: example_value motif: $ref: '#/components/schemas/Motif' mySubscription: type: - string - 'null' example: example_value name: type: string example: Example Title outOfOffice: $ref: '#/components/schemas/OutOfOffice' photo: $ref: '#/components/schemas/Photo15' reputation: type: - string - 'null' example: example_value title: type: - string - 'null' example: Example Title type: type: string example: example_value url: type: string example: https://www.example.com userType: type: string example: example_value examples: - additionalLabel: communityNickname: integration1.4407085834085586E12 companyName: Salesforce displayName: Integration User firstName: Integration id: 005... isActive: true isInThisCommunity: true lastName: User motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Integration User outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///img/userprofile/default_profile_200_v2.png?fromEmail=1 largePhotoUrl: https:///profilephoto/005/F mediumPhotoUrl: https:///profilephoto/005/M photoVersionId: smallPhotoUrl: https:///profilephoto/005/T standardEmailPhotoUrl: >- https:///img/userprofile/default_profile_45_v2.png?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal GroupMembersPrivate-POST: title: GroupMembersPrivate-POST required: - createdDate - id - lastUpdateDate - requestedGroup - responseMessage - status - url - user type: object properties: createdDate: type: string example: example_value id: type: string example: abc123 lastUpdateDate: type: string example: example_value requestedGroup: $ref: '#/components/schemas/RequestedGroup' responseMessage: type: - string - 'null' example: example_value status: type: string example: example_value url: type: string example: https://www.example.com user: $ref: '#/components/schemas/User3' examples: - createdDate: '2023-11-22T11:52:41.000Z' id: 0I5... lastUpdateDate: '2023-11-22T11:52:41.000Z' requestedGroup: id: 0F9... url: /services/data/v58.0/chatter/groups/0F9... responseMessage: status: Pending url: /services/data/v58.0/chatter/group-membership-requests/0I5... user: additionalLabel: communityNickname: User1700653511864742682 companyName: displayName: User Sample firstName: User id: 005... isActive: true isInThisCommunity: true lastName: Sample motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: User Sample outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///img/userprofile/default_profile_200_v2.png?fromEmail=1 largePhotoUrl: https:///profilephoto/005/F mediumPhotoUrl: https:///profilephoto/005/M photoVersionId: smallPhotoUrl: https:///profilephoto/005/T standardEmailPhotoUrl: >- https:///img/userprofile/default_profile_45_v2.png?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal SuccessfulGroupMembershipRequestsPrivate: title: SuccessfulGroupMembershipRequestsPrivate required: - createdDate - id - lastUpdateDate - requestedGroup - responseMessage - status - url - user type: object properties: createdDate: type: string example: example_value id: type: string example: abc123 lastUpdateDate: type: string example: example_value requestedGroup: $ref: '#/components/schemas/RequestedGroup' responseMessage: type: - string - 'null' example: example_value status: type: string example: example_value url: type: string example: https://www.example.com user: $ref: '#/components/schemas/User3' examples: - createdDate: '2023-11-22T11:46:32.000Z' id: 0I5... lastUpdateDate: '2023-11-22T11:50:19.000Z' requestedGroup: id: 0F9... url: /services/data/v58.0/chatter/groups/0F9... responseMessage: status: Accepted url: /services/data/v58.0/chatter/group-membership-requests/0I5... user: additionalLabel: communityNickname: User1700653511864742682 companyName: displayName: User Sample firstName: User id: 005... isActive: true isInThisCommunity: true lastName: Sample motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: User Sample outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///img/userprofile/default_profile_200_v2.png?fromEmail=1 largePhotoUrl: https:///profilephoto/005/F mediumPhotoUrl: https:///profilephoto/005/M photoVersionId: smallPhotoUrl: https:///profilephoto/005/T standardEmailPhotoUrl: >- https:///img/userprofile/default_profile_45_v2.png?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal json: title: json required: - cropY - cropX - cropSize type: object properties: cropY: type: string example: example_value cropX: type: string example: example_value cropSize: type: string example: example_value examples: - cropY: '0' cropX: '0' cropSize: '200' SuccesfulUserPhoto: title: SuccesfulUserPhoto required: - fullEmailPhotoUrl - largePhotoUrl - mediumPhotoUrl - photoVersionId - smallPhotoUrl - standardEmailPhotoUrl - url type: object properties: fullEmailPhotoUrl: type: string example: user@example.com largePhotoUrl: type: string example: https://www.example.com mediumPhotoUrl: type: string example: https://www.example.com photoVersionId: type: string example: '500123' smallPhotoUrl: type: string example: https://www.example.com standardEmailPhotoUrl: type: string example: user@example.com url: type: string example: https://www.example.com examples: - fullEmailPhotoUrl: >- https:///img/userprofile/default_profile_200_v2.png?fromEmail=1 largePhotoUrl: https:///profilephoto/729.../F mediumPhotoUrl: https:///profilephoto/729.../M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/729.../T standardEmailPhotoUrl: >- https:///img/userprofile/default_profile_45_v2.png?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo SuccessfulUserMessagesGeneral: title: SuccessfulUserMessagesGeneral required: - body - conversationId - conversationUrl - id - recipients - sender - sendingCommunity - sentDate - url type: object properties: body: $ref: '#/components/schemas/Body14' conversationId: type: string example: '500123' conversationUrl: type: string example: https://www.example.com id: type: string example: abc123 recipients: type: array items: $ref: '#/components/schemas/Recipient' description: '' example: [] sender: $ref: '#/components/schemas/Sender' sendingCommunity: type: - string - 'null' example: example_value sentDate: type: string example: example_value url: type: string example: https://www.example.com examples: - body: isRichText: messageSegments: [] text: This is a private message conversationId: 03M... conversationUrl: /services/data/v58.0/chatter/users/me/conversations/03M... id: 03J... recipients: - additionalLabel: communityNickname: automatedprocess companyName: Salesforce displayName: Automated Process firstName: Automated id: 005... isActive: true isInThisCommunity: true lastName: Process motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Automated Process outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///img/userprofile/default_profile_200_v2.png?fromEmail=1 largePhotoUrl: https:///profilephoto/005/F mediumPhotoUrl: https:///profilephoto/005/M photoVersionId: smallPhotoUrl: https:///profilephoto/005/T standardEmailPhotoUrl: >- https:///img/userprofile/default_profile_45_v2.png?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: System - additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: FirstName id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/729.../F mediumPhotoUrl: https:///profilephoto/729.../M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/729.../T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal sender: additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: Firstname id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/729.../F mediumPhotoUrl: https:///profilephoto/729.../M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/729.../T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal sendingCommunity: sentDate: url: /services/data/v58.0/chatter/users/me/messages/03J... Body14: title: Body14 required: - isRichText - messageSegments - text type: object properties: isRichText: type: - string - 'null' example: example_value messageSegments: type: array items: type: string description: '' example: [] text: type: string example: example_value examples: - isRichText: messageSegments: [] text: This is a private message Recipient: title: Recipient required: - additionalLabel - communityNickname - companyName - displayName - firstName - id - isActive - isInThisCommunity - lastName - motif - mySubscription - name - outOfOffice - photo - reputation - title - type - url - userType type: object properties: additionalLabel: type: - string - 'null' example: example_value communityNickname: type: string example: example_value companyName: type: string example: example_value displayName: type: string example: example_value firstName: type: string example: example_value id: type: string example: abc123 isActive: type: boolean example: true isInThisCommunity: type: boolean example: true lastName: type: string example: example_value motif: $ref: '#/components/schemas/Motif' mySubscription: type: - string - 'null' example: example_value name: type: string example: Example Title outOfOffice: $ref: '#/components/schemas/OutOfOffice' photo: $ref: '#/components/schemas/Photo15' reputation: type: - string - 'null' example: example_value title: type: - string - 'null' example: Example Title type: type: string example: example_value url: type: string example: https://www.example.com userType: type: string example: example_value examples: - additionalLabel: communityNickname: automatedprocess companyName: Salesforce displayName: Automated Process firstName: Automated id: 005... isActive: true isInThisCommunity: true lastName: Process motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Automated Process outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///img/userprofile/default_profile_200_v2.png?fromEmail=1 largePhotoUrl: https:///profilephoto/005/F mediumPhotoUrl: https:///profilephoto/005/M photoVersionId: smallPhotoUrl: https:///profilephoto/005/T standardEmailPhotoUrl: >- https:///img/userprofile/default_profile_45_v2.png?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: System Sender: title: Sender required: - additionalLabel - communityNickname - companyName - displayName - firstName - id - isActive - isInThisCommunity - lastName - motif - mySubscription - name - outOfOffice - photo - reputation - title - type - url - userType type: object properties: additionalLabel: type: - string - 'null' example: example_value communityNickname: type: string example: example_value companyName: type: string example: example_value displayName: type: string example: example_value firstName: type: string example: example_value id: type: string example: abc123 isActive: type: boolean example: true isInThisCommunity: type: boolean example: true lastName: type: string example: example_value motif: $ref: '#/components/schemas/Motif' mySubscription: type: - string - 'null' example: example_value name: type: string example: Example Title outOfOffice: $ref: '#/components/schemas/OutOfOffice' photo: $ref: '#/components/schemas/Photo' reputation: type: - string - 'null' example: example_value title: type: - string - 'null' example: Example Title type: type: string example: example_value url: type: string example: https://www.example.com userType: type: string example: example_value examples: - additionalLabel: communityNickname: User1696423780773910041 companyName: Salesforce displayName: Name firstName: Firstname id: 005... isActive: true isInThisCommunity: true lastName: Name motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Name outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1 largePhotoUrl: https:///profilephoto/729.../F mediumPhotoUrl: https:///profilephoto/729.../M photoVersionId: 729... smallPhotoUrl: https:///profilephoto/729.../T standardEmailPhotoUrl: >- https:///ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal SuccessfulFollowing: title: SuccessfulFollowing required: - currentPageUrl - following - nextPageUrl - previousPageUrl - total type: object properties: currentPageUrl: type: string example: https://www.example.com following: type: array items: type: string description: '' example: [] nextPageUrl: type: - string - 'null' example: https://www.example.com previousPageUrl: type: - string - 'null' example: https://www.example.com total: type: integer contentEncoding: int32 example: 42 examples: - currentPageUrl: /services/data/v58.0/chatter/users/0052o00000DKQasAAH/following following: [] nextPageUrl: previousPageUrl: total: 0 SuccessfulFollowing-POST: title: SuccessfulFollowing-POST required: - community - id - subject - subscriber - url type: object properties: community: type: - string - 'null' example: example_value id: type: string example: abc123 subject: $ref: '#/components/schemas/Subject' subscriber: $ref: '#/components/schemas/Subscriber' url: type: string example: https://www.example.com examples: - community: id: 0E8... subject: entityLabel: label: Account labelPlural: Accounts id: 001... motif: color: '5867E8' largeIconUrl: /img/icon/accounts64.png mediumIconUrl: /img/icon/accounts32.png smallIconUrl: /img/icon/accounts16.png svgIconUrl: mySubscription: name: Exemple de comptes pour les autorisations type: Account url: /services/data/v58.0/chatter/records/001... subscriber: additionalLabel: communityNickname: integration1.4407085834085586E12 companyName: Salesforce displayName: Integration User firstName: Integration id: 005... isActive: true isInThisCommunity: true lastName: User motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Integration User outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///img/userprofile/default_profile_200_v2.png?fromEmail=1 largePhotoUrl: https:///profilephoto/005/F mediumPhotoUrl: https:///profilephoto/005/M photoVersionId: smallPhotoUrl: https:///profilephoto/005/T standardEmailPhotoUrl: >- https:///img/userprofile/default_profile_45_v2.png?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal url: /services/data/v58.0/chatter/subscriptions/0E8... Subject: title: Subject required: - entityLabel - id - motif - mySubscription - name - type - url type: object properties: entityLabel: $ref: '#/components/schemas/EntityLabel' id: type: string example: abc123 motif: $ref: '#/components/schemas/Motif' mySubscription: type: - string - 'null' example: example_value name: type: string example: Example Title type: type: string example: example_value url: type: string example: https://www.example.com examples: - entityLabel: label: Account labelPlural: Accounts id: 001... motif: color: '5867E8' largeIconUrl: /img/icon/accounts64.png mediumIconUrl: /img/icon/accounts32.png smallIconUrl: /img/icon/accounts16.png svgIconUrl: mySubscription: name: Exemple de comptes pour les autorisations type: Account url: /services/data/v58.0/chatter/records/001... Subscriber: title: Subscriber required: - additionalLabel - communityNickname - companyName - displayName - firstName - id - isActive - isInThisCommunity - lastName - motif - mySubscription - name - outOfOffice - photo - reputation - title - type - url - userType type: object properties: additionalLabel: type: - string - 'null' example: example_value communityNickname: type: string example: example_value companyName: type: string example: example_value displayName: type: string example: example_value firstName: type: string example: example_value id: type: string example: abc123 isActive: type: boolean example: true isInThisCommunity: type: boolean example: true lastName: type: string example: example_value motif: $ref: '#/components/schemas/Motif' mySubscription: type: - string - 'null' example: example_value name: type: string example: Example Title outOfOffice: $ref: '#/components/schemas/OutOfOffice' photo: $ref: '#/components/schemas/Photo15' reputation: type: - string - 'null' example: example_value title: type: - string - 'null' example: Example Title type: type: string example: example_value url: type: string example: https://www.example.com userType: type: string example: example_value examples: - additionalLabel: communityNickname: integration1.4407085834085586E12 companyName: Salesforce displayName: Integration User firstName: Integration id: 005... isActive: true isInThisCommunity: true lastName: User motif: color: 1B96FF largeIconUrl: /img/icon/profile64.png mediumIconUrl: /img/icon/profile32.png smallIconUrl: /img/icon/profile16.png svgIconUrl: mySubscription: name: Integration User outOfOffice: message: '' photo: fullEmailPhotoUrl: >- https:///img/userprofile/default_profile_200_v2.png?fromEmail=1 largePhotoUrl: https:///profilephoto/005/F mediumPhotoUrl: https:///profilephoto/005/M photoVersionId: smallPhotoUrl: https:///profilephoto/005/T standardEmailPhotoUrl: >- https:///img/userprofile/default_profile_45_v2.png?fromEmail=1 url: /services/data/v58.0/connect/user-profiles/005.../photo reputation: title: type: User url: /services/data/v58.0/chatter/users/005... userType: Internal Status500-UnexpectedError1: title: Status500-UnexpectedError1 required: - errorCode - message type: object properties: errorCode: type: string example: example_value message: type: string example: example_value examples: - errorCode: INTERNAL_ERROR message: Unexpected Error Status400-BadRequest1: title: Status400-BadRequest1 required: - errorCode - message type: object properties: errorCode: type: string example: example_value message: type: string example: example_value examples: - errorCode: INVALID_ID_FIELD message: 'Invalid identifier: 9QLHo000000LBjJOAW' Status404-RecordNotFound1: title: Status404-RecordNotFound1 required: - errorCode - message type: object properties: errorCode: type: string example: example_value message: type: string example: example_value examples: - errorCode: NOT_FOUND message: The requested resource does not exist ExpressionSetCreationRequest: title: ExpressionSetCreationRequest required: - apiName - contextDefinitions - name - usageType - versions type: object properties: apiName: type: string example: example_value contextDefinitions: type: array items: type: string description: '' example: [] name: type: string example: Example Title usageType: type: string example: example_value versions: type: array items: $ref: '#/components/schemas/Version' description: '' example: [] examples: - apiName: myExpressionSet2 contextDefinitions: [] name: myExpressionSet3 usageType: Bre versions: - apiName: myExpressionSet_V1 enabled: false id: 9QMHo000000LBjOOAW name: myExpressionSet V1 showExplExternally: false startDate: '2023-09-06T10:35:11.000Z' steps: [] variables: [] versionNumber: 1 Version: title: Version required: - apiName - enabled - id - name - showExplExternally - startDate - steps - variables - versionNumber type: object properties: apiName: type: string example: example_value enabled: type: boolean example: true id: type: string example: abc123 name: type: string example: Example Title showExplExternally: type: boolean example: true startDate: type: string example: example_value steps: type: array items: type: string description: '' example: [] variables: type: array items: type: string description: '' example: [] versionNumber: type: integer contentEncoding: int32 example: 10 examples: - apiName: myExpressionSet_V1 enabled: false id: 9QMHo000000LBjOOAW name: myExpressionSet V1 showExplExternally: false startDate: '2023-09-06T10:35:11.000Z' steps: [] variables: [] versionNumber: 1 Status500-ErrorNoBody1: title: Status500-ErrorNoBody1 required: - message - errorCode type: object properties: message: type: string example: example_value errorCode: type: string example: example_value examples: - message: >- An unexpected error occurred. Please include this ErrorId if you contact support: 675649159-184801 (-177293139) errorCode: UNKNOWN_EXCEPTION Status400-MissingMandatoryBodyField1: title: Status400-MissingMandatoryBodyField1 required: - errorCode - message type: object properties: errorCode: type: string example: example_value message: type: string example: example_value examples: - errorCode: INVALID_INPUT message: Specify a value for name parameter and try again. Status400-InvalidEnum1: title: Status400-InvalidEnum1 required: - errorCode - message type: object properties: errorCode: type: string example: example_value message: type: string example: example_value examples: - errorCode: POST_BODY_PARSE_ERROR message: >- Invalid value for Expression Set Usage Type enum values: myExpressionSet Status201-SuccessCreatedOnlyMandatoryFields: title: Status201-SuccessCreatedOnlyMandatoryFields required: - apiName - contextDefinitions - id - name - usageType - versions type: object properties: apiName: type: string example: example_value contextDefinitions: type: array items: type: string description: '' example: [] id: type: string example: abc123 name: type: string example: Example Title usageType: type: string example: example_value versions: type: array items: $ref: '#/components/schemas/Version' description: '' example: [] examples: - apiName: myExpressionSet contextDefinitions: [] id: 9QLHo000000LBjJOAW name: myExpressionSet usageType: Bre versions: - apiName: myExpressionSet_V1 enabled: false id: 9QMHo000000LBjOOAW name: myExpressionSet V1 showExplExternally: false startDate: '2023-09-06T10:35:11.000Z' steps: [] variables: [] versionNumber: 1 Status400-Duplicate1: title: Status400-Duplicate1 required: - errorCode - message type: object properties: errorCode: type: string example: example_value message: type: string example: example_value examples: - errorCode: INVALID_INPUT message: >- An expression set with the API name myExpressionSet exists. Specify a unique apiName for the expression set and try again. Status200-RecordFound: title: Status200-RecordFound required: - apiName - contextDefinitions - id - name - usageType - versions type: object properties: apiName: type: string example: example_value contextDefinitions: type: array items: type: string description: '' example: [] id: type: string example: abc123 name: type: string example: Example Title usageType: type: string example: example_value versions: type: array items: $ref: '#/components/schemas/Version2' description: '' example: [] examples: - apiName: myExpressionSet contextDefinitions: [] id: 9QLHo000000LBjEOAW name: myExpressionSet usageType: Bre versions: - apiName: myExpressionSet_V1 description: myExpressionSet V1 Description enabled: true id: 9QMHo000000LBjJOAW name: myExpressionSet V1 rank: 1 showExplExternally: true startDate: '2023-09-06T09:27:06.000Z' steps: - actionType: AssignParameterValues assignment: assignedParameter: condition_output__1 expression: 'true' description: my Description name: myCalculation resultIncluded: true sequenceNumber: 1 shouldExposeConditionDetails: false shouldExposeExecPathMsgOnly: true shouldShowExplExternally: false stepType: BusinessKnowledgeModel variables: - collection: false dataType: Boolean description: condition_output__1 input: false name: condition_output__1 output: true type: Variable value: 'False' - collection: false dataType: Boolean description: condition_output__2 input: false name: condition_output__2 output: false type: Variable value: 'False' versionNumber: 1 Version2: title: Version2 required: - apiName - description - enabled - id - name - rank - showExplExternally - startDate - steps - variables - versionNumber type: object properties: apiName: type: string example: example_value description: type: string example: A sample description. enabled: type: boolean example: true id: type: string example: abc123 name: type: string example: Example Title rank: type: integer contentEncoding: int32 example: 10 showExplExternally: type: boolean example: true startDate: type: string example: example_value steps: type: array items: $ref: '#/components/schemas/Step' description: '' example: [] variables: type: array items: $ref: '#/components/schemas/Variable' description: '' example: [] versionNumber: type: integer contentEncoding: int32 example: 10 examples: - apiName: myExpressionSet_V1 description: myExpressionSet V1 Description enabled: true id: 9QMHo000000LBjJOAW name: myExpressionSet V1 rank: 1 showExplExternally: true startDate: '2023-09-06T09:27:06.000Z' steps: - actionType: AssignParameterValues assignment: assignedParameter: condition_output__1 expression: 'true' description: my Description name: myCalculation resultIncluded: true sequenceNumber: 1 shouldExposeConditionDetails: false shouldExposeExecPathMsgOnly: true shouldShowExplExternally: false stepType: BusinessKnowledgeModel variables: - collection: false dataType: Boolean description: condition_output__1 input: false name: condition_output__1 output: true type: Variable value: 'False' - collection: false dataType: Boolean description: condition_output__2 input: false name: condition_output__2 output: false type: Variable value: 'False' versionNumber: 1 Step: title: Step required: - actionType - assignment - description - name - resultIncluded - sequenceNumber - shouldExposeConditionDetails - shouldExposeExecPathMsgOnly - shouldShowExplExternally - stepType type: object properties: actionType: type: string example: example_value assignment: $ref: '#/components/schemas/Assignment' description: type: string example: A sample description. name: type: string example: Example Title resultIncluded: type: boolean example: true sequenceNumber: type: integer contentEncoding: int32 example: 10 shouldExposeConditionDetails: type: boolean example: true shouldExposeExecPathMsgOnly: type: boolean example: true shouldShowExplExternally: type: boolean example: true stepType: type: string example: example_value examples: - actionType: AssignParameterValues assignment: assignedParameter: condition_output__1 expression: 'true' description: my Description name: myCalculation resultIncluded: true sequenceNumber: 1 shouldExposeConditionDetails: false shouldExposeExecPathMsgOnly: true shouldShowExplExternally: false stepType: BusinessKnowledgeModel Assignment: title: Assignment required: - assignedParameter - expression type: object properties: assignedParameter: type: string example: example_value expression: type: string example: example_value examples: - assignedParameter: condition_output__1 expression: 'true' Variable: title: Variable required: - collection - dataType - description - input - name - output - type - value type: object properties: collection: type: boolean example: true dataType: type: string example: example_value description: type: string example: A sample description. input: type: boolean example: true name: type: string example: Example Title output: type: boolean example: true type: type: string example: example_value value: type: string example: example_value examples: - collection: false dataType: Boolean description: condition_output__1 input: false name: condition_output__1 output: true type: Variable value: 'False' Status400-PreviouslyDeletedRecord1: title: Status400-PreviouslyDeletedRecord1 required: - errorCode - message type: object properties: errorCode: type: string example: example_value message: type: string example: example_value examples: - errorCode: INVALID_INPUT message: The expression set id is not available. Status400-InvalidIdentifierOfVersion1: title: Status400-InvalidIdentifierOfVersion1 required: - errorCode - message type: object properties: errorCode: type: string example: example_value message: type: string example: example_value examples: - errorCode: INVALID_ID_FIELD message: 'Invalid identifier: 9QMHo000000LBjOOAW' ExpressionSetUpdateRequest: title: ExpressionSetUpdateRequest required: - apiName - contextDefinitions - name - usageType - versions type: object properties: apiName: type: string example: example_value contextDefinitions: type: array items: type: string description: '' example: [] name: type: string example: Example Title usageType: type: string example: example_value versions: type: array items: $ref: '#/components/schemas/Version' description: '' example: [] examples: - apiName: myExpressionSet contextDefinitions: [] name: myExpressionSet2 usageType: Bre versions: - apiName: myExpressionSet_V1 enabled: false id: 9QMHo000000LBjOOAW name: myExpressionSet V1 showExplExternally: false startDate: '2023-09-06T10:35:11.000Z' steps: [] variables: [] versionNumber: 1 Status400-UnrecognizedBodyField1: title: Status400-UnrecognizedBodyField1 required: - errorCode - message type: object properties: errorCode: type: string example: example_value message: type: string example: example_value examples: - errorCode: JSON_PARSER_ERROR message: Unrecognized field "id" at [line:4, column:12] Status400-ErrorInvalidInput1: title: Status400-ErrorInvalidInput1 required: - errorCode - message type: object properties: errorCode: type: string example: example_value message: type: string example: example_value examples: - errorCode: INVALID_INPUT message: You can’t modify the apiName of an expression set. Status200-SuccessfullyUpdated: title: Status200-SuccessfullyUpdated required: - apiName - contextDefinitions - id - name - usageType - versions type: object properties: apiName: type: string example: example_value contextDefinitions: type: array items: type: string description: '' example: [] id: type: string example: abc123 name: type: string example: Example Title usageType: type: string example: example_value versions: type: array items: $ref: '#/components/schemas/Version' description: '' example: [] examples: - apiName: myExpressionSet contextDefinitions: [] id: 9QLHo000000LBjJOAW name: myExpressionSet2 usageType: Bre versions: - apiName: myExpressionSet_V1 enabled: false id: 9QMHo000000LBjOOAW name: myExpressionSet V1 showExplExternally: false startDate: '2023-09-06T10:35:11.000Z' steps: [] variables: [] versionNumber: 1 Status400-ActiveExpressionCanNotBeDeleted1: title: Status400-ActiveExpressionCanNotBeDeleted1 required: - errorCode - message type: object properties: errorCode: type: string example: example_value message: type: string example: example_value examples: - errorCode: INVALID_INPUT message: An enabled Expression Set Version cannot be updated/deleted. Status400-TryToDeletePreviouslyDeleted1: title: Status400-TryToDeletePreviouslyDeleted1 required: - errorCode - message type: object properties: errorCode: type: string example: example_value message: type: string example: example_value examples: - errorCode: INVALID_INPUT message: The expression set id is not available. ExpressionSetInvocationRequest: title: ExpressionSetInvocationRequest required: - inputs - options type: object properties: inputs: type: array items: type: object description: '' example: [] options: type: object example: example_value examples: - inputs: - {} options: {} Status500-EmptyBodyButRecordExist1: title: Status500-EmptyBodyButRecordExist1 required: - message - errorCode type: object properties: message: type: string example: example_value errorCode: type: string example: example_value examples: - message: >- An unexpected error occurred. Please include this ErrorId if you contact support: 597330588-4312 (-1669188241) errorCode: UNKNOWN_EXCEPTION Status400-InvalidExpressionSetName1: title: Status400-InvalidExpressionSetName1 required: - errorCode - message type: object properties: errorCode: type: string example: example_value message: type: string example: example_value examples: - errorCode: INVALID_INPUT message: Specify a valid expressionSetName and try again. Status201-Success: title: Status201-Success required: - aggregationResults - executionId - outputs type: object properties: aggregationResults: $ref: '#/components/schemas/AggregationResults' executionId: type: string example: '500123' outputs: type: array items: $ref: '#/components/schemas/Output' description: '' example: [] examples: - aggregationResults: results: {} executionId: 33045b23-8970-4fbe-a80c-8f4302592566 outputs: - results: output: 1 AggregationResults: title: AggregationResults required: - results type: object properties: results: type: object example: example_value examples: - results: {} Output: title: Output required: - results type: object properties: results: $ref: '#/components/schemas/Results' examples: - results: output: 1 Results: title: Results required: - output type: object properties: output: type: integer contentEncoding: int32 example: 10 examples: - output: 1 LookupTableRequest: title: LookupTableRequest required: - inputs - options type: object properties: inputs: type: array items: $ref: '#/components/schemas/Input1' description: '' example: [] options: type: object example: example_value examples: - inputs: - input: - name: myColumnInput value: One options: {} Input1: title: Input1 required: - input type: object properties: input: type: array items: $ref: '#/components/schemas/Input2' description: '' example: [] examples: - input: - name: myColumnInput value: One Input2: title: Input2 required: - name - value type: object properties: name: type: string example: Example Title value: type: string example: example_value examples: - name: myColumnInput value: One Status401-Unauthorized1: title: Status401-Unauthorized1 required: - message - errorCode type: object properties: message: type: string example: example_value errorCode: type: string example: example_value examples: - message: Session expired or invalid errorCode: INVALID_SESSION_ID Status400-MatrixNotFound1: title: Status400-MatrixNotFound1 required: - errorCode - message type: object properties: errorCode: type: string example: example_value message: type: string example: example_value examples: - errorCode: INVALID_INPUT message: Specify a valid matrixName and try again. Status400-UnknownException1: title: Status400-UnknownException1 required: - errorCode - message type: object properties: errorCode: type: string example: example_value message: type: string example: example_value examples: - errorCode: UNKNOWN_EXCEPTION message: >- Something went wrong. Try again or ask your Salesforce admin for help. Status201-AcceptedButWarning: title: Status201-AcceptedButWarning required: - outputs type: object properties: outputs: type: array items: $ref: '#/components/schemas/Output1' description: '' example: [] examples: - outputs: - error: >- Looks like there isn’t any output for the specified input parameters in the lookup table. results: [] Output1: title: Output1 required: - error - results type: object properties: error: type: string example: example_value results: type: array items: type: string description: '' example: [] examples: - error: >- Looks like there isn’t any output for the specified input parameters in the lookup table. results: [] Status201-Success1: title: Status201-Success1 required: - outputs type: object properties: outputs: type: array items: $ref: '#/components/schemas/Output2' description: '' example: [] examples: - outputs: - results: - name: myColumnOutput value: '1' Output2: title: Output2 required: - results type: object properties: results: type: array items: $ref: '#/components/schemas/Results1' description: '' example: [] examples: - results: - name: myColumnOutput value: '1' Results1: title: Results1 required: - name - value type: object properties: name: type: string example: Example Title value: type: string example: example_value examples: - name: myColumnOutput value: '1' Status201-Success2: title: Status201-Success2 required: - outputs type: object properties: outputs: type: array items: type: string description: '' example: [] examples: - outputs: [] Status201-KeyPairNotFound: title: Status201-KeyPairNotFound required: - outputs type: object properties: outputs: type: array items: $ref: '#/components/schemas/Output1' description: '' example: [] examples: - outputs: - error: >- Looks like there isn’t any output for the specified input parameters in the lookup table. results: [] DecisionModelNotationExportRequest: title: DecisionModelNotationExportRequest required: - decisionModelEntityIds type: object properties: decisionModelEntityIds: type: array items: type: string description: '' example: [] examples: - decisionModelEntityIds: - 0lNHo000000LEvfMAG Status201-BadRequest: title: Status201-BadRequest required: - errors - message - success type: object properties: errors: type: array items: $ref: '#/components/schemas/Error' description: '' example: [] message: type: string example: example_value success: type: boolean example: true examples: - errors: - errorCode: BAD_REQUEST errorMessage: >- We couldn’t find this record. Specify a valid ID for decisionModelEntityIds parameter. recordId: 0lNRO00000004f72AA - errorCode: BAD_REQUEST errorMessage: >- We couldn’t find this record. Specify a valid ID for decisionModelEntityIds parameter. recordId: 0lNRO000000rfn27AA message: OK success: true Error: title: Error required: - errorCode - errorMessage - recordId type: object properties: errorCode: type: string example: example_value errorMessage: type: string example: example_value recordId: type: string example: '500123' examples: - errorCode: BAD_REQUEST errorMessage: >- We couldn’t find this record. Specify a valid ID for decisionModelEntityIds parameter. recordId: 0lNRO00000004f72AA Status500-EmptyBody1: title: Status500-EmptyBody1 required: - message - errorCode type: object properties: message: type: string example: example_value errorCode: type: string example: example_value examples: - message: >- An unexpected error occurred. Please include this ErrorId if you contact support: 1291449758-100210 (-239130079) errorCode: UNKNOWN_EXCEPTION Status201-Success3: title: Status201-Success3 required: - errors - message - success type: object properties: errors: type: array items: type: string description: '' example: [] message: type: string example: example_value success: type: boolean example: true examples: - errors: [] message: OK success: true InvokeRequest: title: InvokeRequest required: - datasetLinkName - conditions type: object properties: datasetLinkName: type: string example: example_value conditions: type: array items: $ref: '#/components/schemas/Condition' description: '' example: [] examples: - datasetLinkName: transactionMapping conditions: - conditionsList: - fieldName: Product__c value: Nike operator: Matches - fieldName: Price__c value: 1000 operator: GreaterThan - conditionsList: - fieldName: Product__c value: Adidas operator: Matches - fieldName: Price__c value: 1500 operator: GreaterThan Condition: title: Condition required: - conditionsList type: object properties: conditionsList: type: array items: $ref: '#/components/schemas/ConditionsList' description: '' example: [] examples: - conditionsList: - fieldName: Product__c value: Nike operator: Matches - fieldName: Price__c value: 1000 operator: GreaterThan ConditionsList: title: ConditionsList required: - fieldName - value - operator type: object properties: fieldName: type: string example: example_value value: oneOf: - type: string - type: integer contentEncoding: int32 example: example_value operator: type: string example: example_value examples: - fieldName: Product__c value: Nike operator: Matches Status404-NotFound1: title: Status404-NotFound1 required: - errorCode - message type: object properties: errorCode: type: string example: example_value message: type: string example: example_value examples: - errorCode: NOT_FOUND message: The requested resource does not exist Status400-InvalidOperation1: title: Status400-InvalidOperation1 required: - errorCode - message type: object properties: errorCode: type: string example: example_value message: type: string example: example_value examples: - errorCode: INVALID_OPERATION message: Can't execute decision table which is not in Active state. Status201-Error: title: Status201-Error required: - outputs type: object properties: outputs: type: array items: $ref: '#/components/schemas/Output4' description: '' example: [] examples: - outputs: - errorCode: 400 errorMessage: Specify valid name for Data set Link outcomeList: [] outcomeType: successStatus: false - errorCode: 400 errorMessage: Specify valid name for Data set Link outcomeList: [] outcomeType: successStatus: false Output4: title: Output4 required: - errorCode - errorMessage - outcomeList - outcomeType - successStatus type: object properties: errorCode: type: integer contentEncoding: int32 example: 10 errorMessage: type: string example: example_value outcomeList: type: array items: type: string description: '' example: [] outcomeType: type: - string - 'null' example: example_value successStatus: type: boolean example: true examples: - errorCode: 400 errorMessage: Specify valid name for Data set Link outcomeList: [] outcomeType: successStatus: false CreateTableRequest: title: CreateTableRequest required: - setupName - fullName - description - sourceObject - status - conditionType - conditionCriteria - parameters type: object properties: setupName: type: string example: example_value fullName: type: string example: example_value description: type: string example: A sample description. sourceObject: type: string example: example_value status: type: string example: example_value conditionType: type: string example: example_value conditionCriteria: type: string example: example_value parameters: type: array items: $ref: '#/components/schemas/Parameter' description: '' example: [] examples: - setupName: Product Qualificiation eligibility fullName: ProductQualificationEligibility description: Eligiblity of Products using Qualification Rules sourceObject: AccountFeed status: Draft conditionType: Any conditionCriteria: 1 OR 2 OR 3 parameters: - fieldName: IsDeleted usage: INPUT operator: Equals sequence: '1' - fieldName: Id usage: INPUT operator: Equals sequence: '2' - fieldName: Title usage: INPUT operator: Equals sequence: '3' - fieldName: CreatedById usage: OUTPUT Parameter: title: Parameter required: - fieldName - usage type: object properties: fieldName: type: string example: example_value usage: type: string example: example_value operator: type: string example: example_value sequence: type: string example: example_value examples: - fieldName: IsDeleted usage: INPUT operator: Equals sequence: '1' Status201-Success4: title: Status201-Success4 required: - code - decisionTable - isSuccess - message type: object properties: code: type: string example: example_value decisionTable: $ref: '#/components/schemas/DecisionTable' isSuccess: type: boolean example: true message: type: string example: example_value examples: - code: '200' decisionTable: id: 0lDHo0000008Pnt parameters: [] sourceCriteria: [] isSuccess: true message: '' DecisionTable: title: DecisionTable required: - id - parameters - sourceCriteria type: object properties: id: type: string example: abc123 parameters: type: array items: type: string description: '' example: [] sourceCriteria: type: array items: type: string description: '' example: [] examples: - id: 0lDHo0000008Pnt parameters: [] sourceCriteria: [] Status200-Success: title: Status200-Success required: - code - decisionTable - isSuccess - message type: object properties: code: type: string example: example_value decisionTable: $ref: '#/components/schemas/DecisionTable1' isSuccess: type: boolean example: true message: type: string example: example_value examples: - code: '200' decisionTable: conditionCriteria: 1 OR 2 OR 3 conditionType: Any description: Eligiblity of Products using Qualification Rules id: 0lDHo0000008Pnt parameters: - fieldName: IsDeleted isGroupByField: false operator: Equals sequence: 1 usage: Input - fieldName: CreatedById isGroupByField: false usage: Output - fieldName: Title isGroupByField: false operator: Equals sequence: 3 usage: Input - fieldName: Id isGroupByField: false operator: Equals sequence: 2 usage: Input setupName: Product Qualificiation eligibility sourceCriteria: [] sourceObject: AccountFeed status: Active isSuccess: true message: '' DecisionTable1: title: DecisionTable1 required: - conditionCriteria - conditionType - description - id - parameters - setupName - sourceCriteria - sourceObject - status type: object properties: conditionCriteria: type: string example: example_value conditionType: type: string example: example_value description: type: string example: A sample description. id: type: string example: abc123 parameters: type: array items: $ref: '#/components/schemas/Parameter1' description: '' example: [] setupName: type: string example: example_value sourceCriteria: type: array items: type: string description: '' example: [] sourceObject: type: string example: example_value status: type: string example: example_value examples: - conditionCriteria: 1 OR 2 OR 3 conditionType: Any description: Eligiblity of Products using Qualification Rules id: 0lDHo0000008Pnt parameters: - fieldName: IsDeleted isGroupByField: false operator: Equals sequence: 1 usage: Input - fieldName: CreatedById isGroupByField: false usage: Output - fieldName: Title isGroupByField: false operator: Equals sequence: 3 usage: Input - fieldName: Id isGroupByField: false operator: Equals sequence: 2 usage: Input setupName: Product Qualificiation eligibility sourceCriteria: [] sourceObject: AccountFeed status: Active Parameter1: title: Parameter1 required: - fieldName - isGroupByField - usage type: object properties: fieldName: type: string example: example_value isGroupByField: type: boolean example: true operator: type: string example: example_value sequence: type: integer contentEncoding: int32 example: 10 usage: type: string example: example_value examples: - fieldName: IsDeleted isGroupByField: false operator: Equals sequence: 1 usage: Input Status400-InstanceNotFound1: title: Status400-InstanceNotFound1 required: - errorCode - message type: object properties: errorCode: type: string example: example_value message: type: string example: example_value examples: - errorCode: INVALID_ID_FIELD message: >- We couldn’t find a record with that ID. Specify a valid decisionTableId and try again. UpdateTableRequest: title: UpdateTableRequest required: - setupName - fullName - description - usageType - sourceType - sourceObject - status - decisionResultPolicy - collectOperator - conditionType - conditionCriteria - parameters type: object properties: setupName: type: string example: example_value fullName: type: string example: example_value description: type: string example: A sample description. usageType: type: string example: example_value sourceType: type: string example: example_value sourceObject: type: string example: example_value status: type: string example: example_value decisionResultPolicy: type: string example: example_value collectOperator: type: string example: example_value conditionType: type: string example: example_value conditionCriteria: type: string example: example_value parameters: type: array items: $ref: '#/components/schemas/Parameter' description: '' example: [] examples: - setupName: Product Qualificiation eligibility fullName: ProductQualificationEligibility description: Eligiblity of Products using Qualification Rules usageType: ProductEligibility sourceType: SingleSobject sourceObject: AccountFeed status: Draft decisionResultPolicy: UniqueValues collectOperator: Count conditionType: Any conditionCriteria: 1 OR 2 OR 3 parameters: - fieldName: IsDeleted usage: INPUT operator: Equals sequence: '1' - fieldName: Id usage: INPUT operator: Equals sequence: '2' - fieldName: Title usage: INPUT operator: Equals sequence: '3' - fieldName: CreatedById usage: OUTPUT Status200-Success2: title: Status200-Success2 required: - code - isSuccess - message type: object properties: code: type: string example: example_value isSuccess: type: boolean example: true message: type: string example: example_value examples: - code: '200' isSuccess: true message: '' LookupTableRequest1: title: LookupTableRequest1 required: - conditions type: object properties: conditions: $ref: '#/components/schemas/Conditions' examples: - conditions: conditionsList: - fieldName: IsDeleted value: true Conditions: title: Conditions required: - conditionsList type: object properties: conditionsList: type: array items: $ref: '#/components/schemas/ConditionsList1' description: '' example: [] examples: - conditionsList: - fieldName: IsDeleted value: true ConditionsList1: title: ConditionsList1 required: - fieldName - value type: object properties: fieldName: type: string example: example_value value: type: boolean example: true examples: - fieldName: IsDeleted value: true Status500-UnknownException1: title: Status500-UnknownException1 required: - message - errorCode type: object properties: message: type: string example: example_value errorCode: type: string example: example_value examples: - message: >- An unexpected error occurred. Please include this ErrorId if you contact support: 1716762391-743375 (1633993601) errorCode: UNKNOWN_EXCEPTION Status201-Success5: title: Status201-Success5 required: - errorCode - errorMessage - outcomeList - outcomeType - successStatus type: object properties: errorCode: type: - string - 'null' example: example_value errorMessage: type: - string - 'null' example: example_value outcomeList: type: array items: type: string description: '' example: [] outcomeType: type: string example: example_value successStatus: type: boolean example: true examples: - errorCode: errorMessage: outcomeList: [] outcomeType: No Match successStatus: true 404-BecauseVersion59.0NotPresentInTargetOrg1: title: 404-BecauseVersion59.0NotPresentInTargetOrg1 required: - errorCode - message type: object properties: errorCode: type: string example: example_value message: type: string example: example_value examples: - errorCode: NOT_FOUND message: The requested resource does not exist AddanitemtoacartRequest: title: AddanitemtoacartRequest required: - productId - quantity - type type: object properties: productId: type: string example: '500123' quantity: type: integer contentEncoding: int32 example: 10 type: type: string example: example_value examples: - productId: quantity: 3 type: Product CreateGiftsRequest: title: CreateGiftsRequest required: - processingOptions - gifts type: object properties: processingOptions: $ref: '#/components/schemas/ProcessingOptions' gifts: type: array items: $ref: '#/components/schemas/Gift' description: '' example: [] examples: - processingOptions: donorOptions: defaultUpdateLogic: update_all gifts: - amount: 150.25 currencyIsoCode: USD receivedDate: '2024-07-06T00:00:00.000Z' donorCoverAmount: 0.25 transactionStatus: Unpaid commitmentId: paymentIdentifier: '1234' gatewayTransactionFee: 0.75 processorTransactionFee: 0.45 processorReference: cls-1247586928747 gatewayReference: 102656693ac3ca6e0cdafbfe89ab99 lastGatewayResponseCode: invalid_cvc lastGatewayErrorMessage: >- The card’s security code is invalid. Check the card’s security code or use a different card. lastGatewayProcessedDateTime: '2023-07-06T21:57:51.000Z' campaign: id: outreachSourceCode: id: sourceCode: AnimalEmailCampaign2023 donor: donorType: individual id: organizationName: firstName: Test lastName: Donor phone: 510-434-8920 email: test.user@example.com address: - addressType: mailing street: 123 Main Street city: Oakland state: CA postalCode: '94610' country: US accountCustomFields: - fieldName: string fieldValue: string paymentInstrument: type: credit card accountHolderName: test donor expiryMonth: '10' expiryYear: '2027' last4: '4585' cardBrand: visa bankName: chase digitalWalletProvider: apple pay bankAccountHolderType: primary bankAccountType: checking bankAccountNumber: '123456' bankCode: HBUK gatewayName: stripe processorName: test processor processorPaymentReference: string gatewayReference: string designations: - designationId: percent: 10 amount: 150.25 giftTransactionCustomFields: - fieldName: string fieldValue: string - amount: 250 currencyIsoCode: USD receivedDate: '2024-07-06T00:00:00.000Z' donorCoverAmount: 0.25 transactionStatus: Unpaid commitmentId: paymentIdentifier: '1234' gatewayTransactionFee: 0.75 processorTransactionFee: 0.45 processorReference: cls-1247586928747 gatewayReference: 102656693ac3ca6e0cdafbfe89ab99 lastGatewayResponseCode: invalid_cvc lastGatewayErrorMessage: >- The card’s security code is invalid. Check the card’s security code or use a different card. lastGatewayProcessedDateTime: '2023-07-06T21:57:51.000Z' campaign: id: outreachSourceCode: id: sourceCode: AnimalEmailCampaign2023 donor: donorType: individual id: organizationName: firstName: Test lastName: Donor phone: 510-434-8920 email: test.user@example.com address: - addressType: mailing street: 123 Main Street city: Oakland state: CA postalCode: '94610' country: US accountCustomFields: - fieldName: string fieldValue: string paymentInstrument: type: credit card accountHolderName: test donor expiryMonth: '10' expiryYear: '2027' last4: '4585' cardBrand: visa bankName: chase digitalWalletProvider: apple pay bankAccountHolderType: primary bankAccountType: checking bankAccountNumber: '123456' bankCode: HBUK gatewayName: stripe processorName: test processor processorPaymentReference: string gatewayReference: string designations: - designationId: percent: 10 amount: 150.25 giftTransactionCustomFields: - fieldName: string fieldValue: string ProcessingOptions: title: ProcessingOptions required: - donorOptions type: object properties: donorOptions: $ref: '#/components/schemas/DonorOptions' examples: - donorOptions: defaultUpdateLogic: update_all DonorOptions: title: DonorOptions required: - defaultUpdateLogic type: object properties: defaultUpdateLogic: type: string example: example_value examples: - defaultUpdateLogic: update_all Gift: title: Gift required: - amount - currencyIsoCode - receivedDate - donorCoverAmount - transactionStatus - commitmentId - paymentIdentifier - gatewayTransactionFee - processorTransactionFee - processorReference - gatewayReference - lastGatewayResponseCode - lastGatewayErrorMessage - lastGatewayProcessedDateTime - campaign - outreachSourceCode - donor - paymentInstrument - designations - giftTransactionCustomFields type: object properties: amount: type: number example: 42.5 currencyIsoCode: type: string example: example_value receivedDate: type: string example: example_value donorCoverAmount: type: number example: 42.5 transactionStatus: type: string example: example_value commitmentId: type: string example: '500123' paymentIdentifier: type: string example: example_value gatewayTransactionFee: type: number example: 42.5 processorTransactionFee: type: number example: 42.5 processorReference: type: string example: example_value gatewayReference: type: string example: example_value lastGatewayResponseCode: type: string example: example_value lastGatewayErrorMessage: type: string example: example_value lastGatewayProcessedDateTime: type: string example: '2026-01-15T10:30:00Z' campaign: $ref: '#/components/schemas/Campaign' outreachSourceCode: $ref: '#/components/schemas/OutreachSourceCode' donor: $ref: '#/components/schemas/Donor' paymentInstrument: $ref: '#/components/schemas/PaymentInstrument' designations: type: array items: $ref: '#/components/schemas/Designation' description: '' example: [] giftTransactionCustomFields: type: array items: $ref: '#/components/schemas/GiftTransactionCustomField' description: '' example: [] examples: - amount: 150.25 currencyIsoCode: USD receivedDate: '2024-07-06T00:00:00.000Z' donorCoverAmount: 0.25 transactionStatus: Unpaid commitmentId: paymentIdentifier: '1234' gatewayTransactionFee: 0.75 processorTransactionFee: 0.45 processorReference: cls-1247586928747 gatewayReference: 102656693ac3ca6e0cdafbfe89ab99 lastGatewayResponseCode: invalid_cvc lastGatewayErrorMessage: >- The card’s security code is invalid. Check the card’s security code or use a different card. lastGatewayProcessedDateTime: '2023-07-06T21:57:51.000Z' campaign: id: outreachSourceCode: id: sourceCode: AnimalEmailCampaign2023 donor: donorType: individual id: organizationName: firstName: Test lastName: Donor phone: 510-434-8920 email: test.user@example.com address: - addressType: mailing street: 123 Main Street city: Oakland state: CA postalCode: '94610' country: US accountCustomFields: - fieldName: string fieldValue: string paymentInstrument: type: credit card accountHolderName: test donor expiryMonth: '10' expiryYear: '2027' last4: '4585' cardBrand: visa bankName: chase digitalWalletProvider: apple pay bankAccountHolderType: primary bankAccountType: checking bankAccountNumber: '123456' bankCode: HBUK gatewayName: stripe processorName: test processor processorPaymentReference: string gatewayReference: string designations: - designationId: percent: 10 amount: 150.25 giftTransactionCustomFields: - fieldName: string fieldValue: string Campaign: title: Campaign required: - id type: object properties: id: type: string example: abc123 examples: - id: OutreachSourceCode: title: OutreachSourceCode required: - id - sourceCode type: object properties: id: type: string example: abc123 sourceCode: type: string example: example_value examples: - id: sourceCode: AnimalEmailCampaign2023 Donor: title: Donor required: - donorType - id - organizationName - firstName - lastName - phone - email - address - accountCustomFields type: object properties: donorType: type: string example: example_value id: type: string example: abc123 organizationName: type: string example: example_value firstName: type: string example: example_value lastName: type: string example: example_value phone: type: string example: example_value email: type: string example: user@example.com address: type: array items: $ref: '#/components/schemas/Address1' description: '' example: [] accountCustomFields: type: array items: $ref: '#/components/schemas/AccountCustomField' description: '' example: 42 examples: - donorType: individual id: organizationName: firstName: Test lastName: Donor phone: 510-434-8920 email: test.user@example.com address: - addressType: mailing street: 123 Main Street city: Oakland state: CA postalCode: '94610' country: US accountCustomFields: - fieldName: string fieldValue: string Address1: title: Address1 required: - addressType - street - city - state - postalCode - country type: object properties: addressType: type: string example: example_value street: type: string example: example_value city: type: string example: example_value state: type: string example: example_value postalCode: type: string example: example_value country: type: string example: 42 examples: - addressType: mailing street: 123 Main Street city: Oakland state: CA postalCode: '94610' country: US AccountCustomField: title: AccountCustomField required: - fieldName - fieldValue type: object properties: fieldName: type: string example: example_value fieldValue: type: string example: example_value examples: - fieldName: string fieldValue: string PaymentInstrument: title: PaymentInstrument required: - type - accountHolderName - expiryMonth - expiryYear - last4 - cardBrand - bankName - digitalWalletProvider - bankAccountHolderType - bankAccountType - bankAccountNumber - bankCode - gatewayName - processorName - processorPaymentReference - gatewayReference type: object properties: type: type: string example: example_value accountHolderName: type: string example: 42 expiryMonth: type: string example: example_value expiryYear: type: string example: example_value last4: type: string example: example_value cardBrand: type: string example: example_value bankName: type: string example: example_value digitalWalletProvider: type: string example: example_value bankAccountHolderType: type: string example: 42 bankAccountType: type: string example: 42 bankAccountNumber: type: string example: 42 bankCode: type: string example: example_value gatewayName: type: string example: example_value processorName: type: string example: example_value processorPaymentReference: type: string example: example_value gatewayReference: type: string example: example_value examples: - type: credit card accountHolderName: test donor expiryMonth: '10' expiryYear: '2027' last4: '4585' cardBrand: visa bankName: chase digitalWalletProvider: apple pay bankAccountHolderType: primary bankAccountType: checking bankAccountNumber: '123456' bankCode: HBUK gatewayName: stripe processorName: test processor processorPaymentReference: string gatewayReference: string Designation: title: Designation required: - designationId - percent - amount type: object properties: designationId: type: string example: '500123' percent: type: integer contentEncoding: int32 example: 10 amount: type: number example: 42.5 examples: - designationId: percent: 10 amount: 150.25 GiftTransactionCustomField: title: GiftTransactionCustomField required: - fieldName - fieldValue type: object properties: fieldName: type: string example: example_value fieldValue: type: string example: example_value examples: - fieldName: string fieldValue: string Status201-CreateGiftSuccess: title: Status201-CreateGiftSuccess required: - successes - failures - notProcessed - details type: object properties: successes: type: integer contentEncoding: int32 example: 10 failures: type: integer contentEncoding: int32 example: 10 notProcessed: type: integer contentEncoding: int32 example: 10 details: type: array items: $ref: '#/components/schemas/Detail' description: '' example: [] examples: - successes: 2 failures: 0 notProcessed: 0 details: - success: true links: account: href: /services/data/vXX.X/sobjects/sObject/ id: gifttransaction: href: >- /services/data/vXX.X/sobjects/sObject/ id: giftcommitment: href: >- /services/data/vXX.X/sobjects/sObject/ id: paymentinstrument: href: >- /services/data/vXX.X/sobjects/sObject/ id: gifttransactiondesignation: - href: >- /services/data/vXX.X/sobjects/sObject/ id: - success: true links: account: href: /services/data/vXX.X/sobjects/sObject/ id: gifttransaction: href: >- /services/data/vXX.X/sobjects/sObject/ id: giftcommitment: href: >- /services/data/vXX.X/sobjects/sObject/ id: paymentinstrument: href: >- /services/data/vXX.X/sobjects/sObject/ id: gifttransactiondesignation: - href: >- /services/data/vXX.X/sobjects/sObject/ id: Detail: title: Detail required: - success - links type: object properties: success: type: boolean example: true links: $ref: '#/components/schemas/Links' examples: - success: true links: account: href: /services/data/vXX.X/sobjects/sObject/ id: gifttransaction: href: /services/data/vXX.X/sobjects/sObject/ id: giftcommitment: href: /services/data/vXX.X/sobjects/sObject/ id: paymentinstrument: href: >- /services/data/vXX.X/sobjects/sObject/ id: gifttransactiondesignation: - href: >- /services/data/vXX.X/sobjects/sObject/ id: Links: title: Links required: - account - gifttransaction - giftcommitment - paymentinstrument - gifttransactiondesignation type: object properties: account: $ref: '#/components/schemas/Account' gifttransaction: $ref: '#/components/schemas/Gifttransaction' giftcommitment: $ref: '#/components/schemas/Giftcommitment' paymentinstrument: $ref: '#/components/schemas/Paymentinstrument1' gifttransactiondesignation: type: array items: $ref: '#/components/schemas/Gifttransactiondesignation' description: '' example: [] examples: - account: href: /services/data/vXX.X/sobjects/sObject/ id: gifttransaction: href: /services/data/vXX.X/sobjects/sObject/ id: giftcommitment: href: /services/data/vXX.X/sobjects/sObject/ id: paymentinstrument: href: /services/data/vXX.X/sobjects/sObject/ id: gifttransactiondesignation: - href: >- /services/data/vXX.X/sobjects/sObject/ id: Account: title: Account required: - href - id type: object properties: href: type: string example: example_value id: type: string example: abc123 examples: - href: /services/data/vXX.X/sobjects/sObject/ id: Gifttransaction: title: Gifttransaction required: - href - id type: object properties: href: type: string example: example_value id: type: string example: abc123 examples: - href: /services/data/vXX.X/sobjects/sObject/ id: Giftcommitment: title: Giftcommitment required: - href - id type: object properties: href: type: string example: example_value id: type: string example: abc123 examples: - href: /services/data/vXX.X/sobjects/sObject/ id: Paymentinstrument1: title: Paymentinstrument1 required: - href - id type: object properties: href: type: string example: example_value id: type: string example: abc123 examples: - href: /services/data/vXX.X/sobjects/sObject/ id: Gifttransactiondesignation: title: Gifttransactiondesignation required: - href - id type: object properties: href: type: string example: example_value id: type: string example: abc123 examples: - href: >- /services/data/vXX.X/sobjects/sObject/ id: Status201-CreateGiftRequestValidationFailure: title: Status201-CreateGiftRequestValidationFailure required: - successes - failures - notProcessed - details type: object properties: successes: type: integer contentEncoding: int32 example: 10 failures: type: integer contentEncoding: int32 example: 10 notProcessed: type: integer contentEncoding: int32 example: 10 details: type: array items: $ref: '#/components/schemas/Detail1' description: '' example: [] examples: - successes: 1 failures: 1 notProcessed: 0 details: - success: false errors: field: id message: - success: true links: account: href: /services/data/vXX.X/sobjects/sObject/ id: gifttransaction: href: >- /services/data/vXX.X/sobjects/sObject/ id: giftcommitment: href: >- /services/data/vXX.X/sobjects/sObject/ id: paymentinstrument: href: >- /services/data/vXX.X/sobjects/sObject/ id: gifttransactiondesignation: - href: >- /services/data/vXX.X/sobjects/sObject/ id: Detail1: title: Detail1 required: - success type: object properties: success: type: boolean example: true errors: $ref: '#/components/schemas/Errors' links: $ref: '#/components/schemas/Links' examples: - success: false errors: field: id message: Errors: title: Errors required: - field - message type: object properties: field: type: string example: example_value message: type: string example: example_value examples: - field: id message: Status201-CreateGiftSuccessWithExternalIds: title: Status201-CreateGiftSuccessWithExternalIds required: - successes - failures - notProcessed - details type: object properties: successes: type: integer contentEncoding: int32 example: 10 failures: type: integer contentEncoding: int32 example: 10 notProcessed: type: integer contentEncoding: int32 example: 10 details: type: array items: $ref: '#/components/schemas/Detail' description: '' example: [] examples: - successes: 2 failures: 0 notProcessed: 0 details: - success: true links: account: href: /services/data/vXX.X/sobjects/sObject/ id: gifttransaction: href: >- /services/data/vXX.X/sobjects/sObject/ id: giftcommitment: href: >- /services/data/vXX.X/sobjects/sObject/ id: paymentinstrument: href: >- /services/data/vXX.X/sobjects/sObject/ id: gifttransactiondesignation: - href: >- /services/data/vXX.X/sobjects/sObject/ id: - success: true links: account: href: /services/data/vXX.X/sobjects/sObject/ id: gifttransaction: href: >- /services/data/vXX.X/sobjects/sObject/ id: giftcommitment: href: >- /services/data/vXX.X/sobjects/sObject/ id: paymentinstrument: href: >- /services/data/vXX.X/sobjects/sObject/ id: gifttransactiondesignation: - href: >- /services/data/vXX.X/sobjects/sObject/ id: UpdateGiftTransactionPaymentsRequest: title: UpdateGiftTransactionPaymentsRequest required: - updates type: object properties: updates: type: array items: $ref: '#/components/schemas/Update' description: '' example: [] examples: - updates: - giftTransactionId: transactionStatus: Paid processorReference: string gatewayReference: string lastGatewayResponseCode: invalid_cvc lastGatewayErrorMessage: >- The card’s security code is invalid. Check the card’s security code or use a different card. lastGatewayProcessedDateTime: '2023-07-06T21:57:51.000Z' processorTransactionFee: 0.5 gatewayTransactionFee: 0.25 donorCoverAmount: 10.5 - giftTransactionId: transactionStatus: Paid processorReference: string gatewayReference: string lastGatewayResponseCode: invalid_cvc lastGatewayErrorMessage: >- The card’s security code is invalid. Check the card’s security code or use a different card. lastGatewayProcessedDateTime: '2023-07-06T21:57:51.000Z' processorTransactionFee: 1 gatewayTransactionFee: 0.45 donorCoverAmount: 20 Update: title: Update required: - giftTransactionId - transactionStatus - processorReference - gatewayReference - lastGatewayResponseCode - lastGatewayErrorMessage - lastGatewayProcessedDateTime - processorTransactionFee - gatewayTransactionFee - donorCoverAmount type: object properties: giftTransactionId: type: string example: '500123' transactionStatus: type: string example: example_value processorReference: type: string example: example_value gatewayReference: type: string example: example_value lastGatewayResponseCode: type: string example: example_value lastGatewayErrorMessage: type: string example: example_value lastGatewayProcessedDateTime: type: string example: '2026-01-15T10:30:00Z' processorTransactionFee: type: number example: 42.5 gatewayTransactionFee: type: number example: 42.5 donorCoverAmount: type: number example: 42.5 examples: - giftTransactionId: transactionStatus: Paid processorReference: string gatewayReference: string lastGatewayResponseCode: invalid_cvc lastGatewayErrorMessage: >- The card’s security code is invalid. Check the card’s security code or use a different card. lastGatewayProcessedDateTime: '2023-07-06T21:57:51.000Z' processorTransactionFee: 0.5 gatewayTransactionFee: 0.25 donorCoverAmount: 10.5 Status201-UpdateTransactionPaymentSuccess: title: Status201-UpdateTransactionPaymentSuccess required: - successes - failures - notProcessed - details type: object properties: successes: type: integer contentEncoding: int32 example: 10 failures: type: integer contentEncoding: int32 example: 10 notProcessed: type: integer contentEncoding: int32 example: 10 details: type: array items: $ref: '#/components/schemas/Detail3' description: '' example: [] examples: - successes: 2 failures: 0 notProcessed: 0 details: - success: true links: gifttransaction: href: >- /services/data/vXX.X/sobjects/sObject/ id: - success: true links: gifttransaction: href: >- /services/data/vXX.X/sobjects/sObject/ id: Detail3: title: Detail3 required: - success - links type: object properties: success: type: boolean example: true links: $ref: '#/components/schemas/Links3' examples: - success: true links: gifttransaction: href: /services/data/vXX.X/sobjects/sObject/ id: Links3: title: Links3 required: - gifttransaction type: object properties: gifttransaction: $ref: '#/components/schemas/Gifttransaction' examples: - gifttransaction: href: /services/data/vXX.X/sobjects/sObject/ id: Status201-UpdateTransactionPaymentRequestValidationFailed: title: Status201-UpdateTransactionPaymentRequestValidationFailed required: - successes - failures - notProcessed - details type: object properties: successes: type: integer contentEncoding: int32 example: 10 failures: type: integer contentEncoding: int32 example: 10 notProcessed: type: integer contentEncoding: int32 example: 10 details: type: array items: $ref: '#/components/schemas/Detail4' description: '' example: [] examples: - successes: 1 failures: 1 notProcessed: 0 details: - success: false errors: field: id message: - success: true links: gifttransaction: href: >- /services/data/vXX.X/sobjects/sObject/ id: Detail4: title: Detail4 required: - success type: object properties: success: type: boolean example: true errors: $ref: '#/components/schemas/Errors' links: $ref: '#/components/schemas/Links3' examples: - success: false errors: field: id message: Status201-UpdateTransactionPaymentWithExternalIds1: title: Status201-UpdateTransactionPaymentWithExternalIds1 required: - successes - failures - notProcessed - details type: object properties: successes: type: integer contentEncoding: int32 example: 10 failures: type: integer contentEncoding: int32 example: 10 notProcessed: type: integer contentEncoding: int32 example: 10 details: type: array items: $ref: '#/components/schemas/Detail3' description: '' example: [] examples: - successes: 1 failures: 0 notProcessed: 0 details: - success: true links: gifttransaction: href: >- /services/data/vXX.X/sobjects/sObject/ id: CreateCommitmentsRequest: title: CreateCommitmentsRequest required: - processingOptions - commitments type: object properties: processingOptions: $ref: '#/components/schemas/ProcessingOptions' commitments: type: array items: $ref: '#/components/schemas/Commitment' description: '' example: [] examples: - processingOptions: donorOptions: defaultUpdateLogic: update_all commitments: - amount: 150.25 currencyIsoCode: USD transactionPeriod: monthly transactionInterval: 3 transactionDay: '5' startDate: '2024-07-06T00:00:00.000Z' endDate: '2024-08-06T00:00:00.000Z' campaign: id: outreachSourceCode: id: sourceCode: AnimalEmailCampaign2023 donor: donorType: individual id: firstName: Test lastName: Donor phone: 510-434-8920 email: test.donor@salesforce.com address: - addressType: mailing street: 123 Main Street city: Oakland state: CA postalCode: '94610' country: US accountCustomFields: - fieldName: fieldValue: string paymentInstrument: type: credit card accountHolderName: test donor expiryMonth: '10' expiryYear: '2026' last4: '4585' cardBrand: visa bankName: chase digitalWalletProvider: apple pay bankAccountHolderType: primary bankAccountType: checking bankAccountNumber: '123456' bankCode: HBUK gatewayName: stripe processorName: test processor processorPaymentReference: string gatewayReference: string designations: - designationId: percent: 10 firstTransaction: amount: 150.25 receivedDate: '2024-07-06T00:00:00.000Z' donorCoverAmount: 0.25 transactionStatus: Unpaid gatewayTransactionFee: 0.75 processorTransactionFee: 0.45 processorReference: cls-1247586928747 gatewayReference: 102656693ac3ca6e0cdafbfe89ab99 lastGatewayResponseCode: invalid_cvc lastGatewayErrorMessage: >- The card’s security code is invalid. Check the card’s security code or use a different card. lastGatewayProcessedDateTime: '2023-07-06T21:57:51.000Z' giftCommitmentCustomFields: - fieldName: fieldValue: string giftCommitmentScheduleCustomFields: - fieldName: fieldValue: string Commitment: title: Commitment required: - amount - currencyIsoCode - transactionPeriod - transactionInterval - transactionDay - startDate - endDate - campaign - outreachSourceCode - donor - paymentInstrument - designations - firstTransaction - giftCommitmentCustomFields - giftCommitmentScheduleCustomFields type: object properties: amount: type: number example: 42.5 currencyIsoCode: type: string example: example_value transactionPeriod: type: string example: example_value transactionInterval: type: integer contentEncoding: int32 example: 10 transactionDay: type: string example: example_value startDate: type: string example: example_value endDate: type: string example: example_value campaign: $ref: '#/components/schemas/Campaign' outreachSourceCode: $ref: '#/components/schemas/OutreachSourceCode' donor: $ref: '#/components/schemas/Donor1' paymentInstrument: $ref: '#/components/schemas/PaymentInstrument' designations: type: array items: $ref: '#/components/schemas/Designation1' description: '' example: [] firstTransaction: $ref: '#/components/schemas/FirstTransaction' giftCommitmentCustomFields: type: array items: $ref: '#/components/schemas/GiftCommitmentCustomField' description: '' example: [] giftCommitmentScheduleCustomFields: type: array items: $ref: '#/components/schemas/GiftCommitmentScheduleCustomField' description: '' example: [] examples: - amount: 150.25 currencyIsoCode: USD transactionPeriod: monthly transactionInterval: 3 transactionDay: '5' startDate: '2024-07-06T00:00:00.000Z' endDate: '2024-08-06T00:00:00.000Z' campaign: id: outreachSourceCode: id: sourceCode: AnimalEmailCampaign2023 donor: donorType: individual id: firstName: Test lastName: Donor phone: 510-434-8920 email: test.donor@salesforce.com address: - addressType: mailing street: 123 Main Street city: Oakland state: CA postalCode: '94610' country: US accountCustomFields: - fieldName: fieldValue: string paymentInstrument: type: credit card accountHolderName: test donor expiryMonth: '10' expiryYear: '2026' last4: '4585' cardBrand: visa bankName: chase digitalWalletProvider: apple pay bankAccountHolderType: primary bankAccountType: checking bankAccountNumber: '123456' bankCode: HBUK gatewayName: stripe processorName: test processor processorPaymentReference: string gatewayReference: string designations: - designationId: percent: 10 firstTransaction: amount: 150.25 receivedDate: '2024-07-06T00:00:00.000Z' donorCoverAmount: 0.25 transactionStatus: Unpaid gatewayTransactionFee: 0.75 processorTransactionFee: 0.45 processorReference: cls-1247586928747 gatewayReference: 102656693ac3ca6e0cdafbfe89ab99 lastGatewayResponseCode: invalid_cvc lastGatewayErrorMessage: >- The card’s security code is invalid. Check the card’s security code or use a different card. lastGatewayProcessedDateTime: '2023-07-06T21:57:51.000Z' giftCommitmentCustomFields: - fieldName: fieldValue: string giftCommitmentScheduleCustomFields: - fieldName: fieldValue: string Donor1: title: Donor1 required: - donorType - id - firstName - lastName - phone - email - address - accountCustomFields type: object properties: donorType: type: string example: example_value id: type: string example: abc123 firstName: type: string example: example_value lastName: type: string example: example_value phone: type: string example: example_value email: type: string example: user@example.com address: type: array items: $ref: '#/components/schemas/Address1' description: '' example: [] accountCustomFields: type: array items: $ref: '#/components/schemas/AccountCustomField' description: '' example: 42 examples: - donorType: individual id: firstName: Test lastName: Donor phone: 510-434-8920 email: test.donor@salesforce.com address: - addressType: mailing street: 123 Main Street city: Oakland state: CA postalCode: '94610' country: US accountCustomFields: - fieldName: fieldValue: string Designation1: title: Designation1 required: - designationId - percent type: object properties: designationId: type: string example: '500123' percent: type: integer contentEncoding: int32 example: 10 examples: - designationId: percent: 10 FirstTransaction: title: FirstTransaction required: - amount - receivedDate - donorCoverAmount - transactionStatus - gatewayTransactionFee - processorTransactionFee - processorReference - gatewayReference - lastGatewayResponseCode - lastGatewayErrorMessage - lastGatewayProcessedDateTime type: object properties: amount: type: number example: 42.5 receivedDate: type: string example: example_value donorCoverAmount: type: number example: 42.5 transactionStatus: type: string example: example_value gatewayTransactionFee: type: number example: 42.5 processorTransactionFee: type: number example: 42.5 processorReference: type: string example: example_value gatewayReference: type: string example: example_value lastGatewayResponseCode: type: string example: example_value lastGatewayErrorMessage: type: string example: example_value lastGatewayProcessedDateTime: type: string example: '2026-01-15T10:30:00Z' examples: - amount: 150.25 receivedDate: '2024-07-06T00:00:00.000Z' donorCoverAmount: 0.25 transactionStatus: Unpaid gatewayTransactionFee: 0.75 processorTransactionFee: 0.45 processorReference: cls-1247586928747 gatewayReference: 102656693ac3ca6e0cdafbfe89ab99 lastGatewayResponseCode: invalid_cvc lastGatewayErrorMessage: >- The card’s security code is invalid. Check the card’s security code or use a different card. lastGatewayProcessedDateTime: '2023-07-06T21:57:51.000Z' GiftCommitmentCustomField: title: GiftCommitmentCustomField required: - fieldName - fieldValue type: object properties: fieldName: type: string example: example_value fieldValue: type: string example: example_value examples: - fieldName: fieldValue: string GiftCommitmentScheduleCustomField: title: GiftCommitmentScheduleCustomField required: - fieldName - fieldValue type: object properties: fieldName: type: string example: example_value fieldValue: type: string example: example_value examples: - fieldName: fieldValue: string Status201-CreateCommitmentSuccess: title: Status201-CreateCommitmentSuccess required: - successes - failures - notProcessed - details type: object properties: successes: type: integer contentEncoding: int32 example: 10 failures: type: integer contentEncoding: int32 example: 10 notProcessed: type: integer contentEncoding: int32 example: 10 details: type: array items: $ref: '#/components/schemas/Detail7' description: '' example: [] examples: - successes: 1 failures: 0 notProcessed: 0 details: - success: true links: giftcommitment: href: >- /services/data/vXX.X/sobjects/sObject/ id: giftcommitmentschedule: href: >- /services/data/vXX.X/sobjects/sObject/ id: giftdefaultdesignation: - href: >- /services/data/vXX.X/sobjects/sObject/ id: gifttransaction: href: >- /services/data/vXX.X/sobjects/sObject/ id: paymentinstrument: href: >- /services/data/vXX.X/sobjects/sObject/ id: account: href: /services/data/vXX.X/sobjects/sObject/ id: - success: true links: giftcommitment: href: >- /services/data/vXX.X/sobjects/sObject/ id: giftcommitmentschedule: href: >- /services/data/vXX.X/sobjects/sObject/ id: giftdefaultdesignation: - href: >- /services/data/vXX.X/sobjects/sObject/ id: gifttransaction: href: >- /services/data/vXX.X/sobjects/sObject/ id: paymentinstrument: href: >- /services/data/vXX.X/sobjects/sObject/ id: account: href: /services/data/vXX.X/sobjects/sObject/ id: Detail7: title: Detail7 required: - success - links type: object properties: success: type: boolean example: true links: $ref: '#/components/schemas/Links7' examples: - success: true links: giftcommitment: href: /services/data/vXX.X/sobjects/sObject/ id: giftcommitmentschedule: href: >- /services/data/vXX.X/sobjects/sObject/ id: giftdefaultdesignation: - href: >- /services/data/vXX.X/sobjects/sObject/ id: gifttransaction: href: /services/data/vXX.X/sobjects/sObject/ id: paymentinstrument: href: >- /services/data/vXX.X/sobjects/sObject/ id: account: href: /services/data/vXX.X/sobjects/sObject/ id: Links7: title: Links7 required: - giftcommitment - giftcommitmentschedule - giftdefaultdesignation - gifttransaction - paymentinstrument - account type: object properties: giftcommitment: $ref: '#/components/schemas/Giftcommitment' giftcommitmentschedule: $ref: '#/components/schemas/Giftcommitmentschedule' giftdefaultdesignation: type: array items: $ref: '#/components/schemas/Giftdefaultdesignation' description: '' example: [] gifttransaction: $ref: '#/components/schemas/Gifttransaction' paymentinstrument: $ref: '#/components/schemas/Paymentinstrument1' account: $ref: '#/components/schemas/Account' examples: - giftcommitment: href: /services/data/vXX.X/sobjects/sObject/ id: giftcommitmentschedule: href: >- /services/data/vXX.X/sobjects/sObject/ id: giftdefaultdesignation: - href: >- /services/data/vXX.X/sobjects/sObject/ id: gifttransaction: href: /services/data/vXX.X/sobjects/sObject/ id: paymentinstrument: href: /services/data/vXX.X/sobjects/sObject/ id: account: href: /services/data/vXX.X/sobjects/sObject/ id: Giftcommitmentschedule: title: Giftcommitmentschedule required: - href - id type: object properties: href: type: string example: example_value id: type: string example: abc123 examples: - href: >- /services/data/vXX.X/sobjects/sObject/ id: Giftdefaultdesignation: title: Giftdefaultdesignation required: - href - id type: object properties: href: type: string example: example_value id: type: string example: abc123 examples: - href: >- /services/data/vXX.X/sobjects/sObject/ id: Status201-CreateCommitmentRequestValidationFailure: title: Status201-CreateCommitmentRequestValidationFailure required: - successes - failures - notProcessed - details type: object properties: successes: type: integer contentEncoding: int32 example: 10 failures: type: integer contentEncoding: int32 example: 10 notProcessed: type: integer contentEncoding: int32 example: 10 details: type: array items: $ref: '#/components/schemas/Detail8' description: '' example: [] examples: - successes: 0 failures: 1 notProcessed: 0 details: - success: false errors: field: outreachSourceCode.id message: Detail8: title: Detail8 required: - success - errors type: object properties: success: type: boolean example: true errors: $ref: '#/components/schemas/Errors' examples: - success: false errors: field: outreachSourceCode.id message: Status201-CreateCommitmentSuccessWithExternalIds: title: Status201-CreateCommitmentSuccessWithExternalIds required: - successes - failures - notProcessed - details type: object properties: successes: type: integer contentEncoding: int32 example: 10 failures: type: integer contentEncoding: int32 example: 10 notProcessed: type: integer contentEncoding: int32 example: 10 details: type: array items: $ref: '#/components/schemas/Detail7' description: '' example: [] examples: - successes: 2 failures: 0 notProcessed: 0 details: - success: true links: giftcommitment: href: >- /services/data/vXX.X/sobjects/sObject/ id: giftcommitmentschedule: href: >- /services/data/vXX.X/sobjects/sObject/ id: giftdefaultdesignation: - href: >- /services/data/vXX.X/sobjects/sObject/ id: gifttransaction: href: >- /services/data/vXX.X/sobjects/sObject/ id: paymentinstrument: href: >- /services/data/vXX.X/sobjects/sObject/ id: account: href: /services/data/vXX.X/sobjects/sObject/ id: - success: true links: giftcommitment: href: >- /services/data/vXX.X/sobjects/sObject/ id: giftcommitmentschedule: href: >- /services/data/vXX.X/sobjects/sObject/ id: giftdefaultdesignation: - href: >- /services/data/vXX.X/sobjects/sObject/ id: gifttransaction: href: >- /services/data/vXX.X/sobjects/sObject/ id: paymentinstrument: href: >- /services/data/vXX.X/sobjects/sObject/ id: account: href: /services/data/vXX.X/sobjects/sObject/ id: CreatePledgeCommitmentsRequest: title: CreatePledgeCommitmentsRequest required: - processingOptions - commitments type: object properties: processingOptions: $ref: '#/components/schemas/ProcessingOptions' commitments: type: array items: $ref: '#/components/schemas/Commitment1' description: '' example: [] examples: - processingOptions: donorOptions: defaultUpdateLogic: update_all commitments: - amount: 150.25 type: pledge currencyIsoCode: USD startDate: '2024-07-06T00:00:00.000Z' endDate: '2024-08-06T00:00:00.000Z' campaign: id: outreachSourceCode: id: sourceCode: AnimalEmailCampaign2023 donor: donorType: individual id: firstName: Test lastName: Donor phone: 510-434-8920 email: test.donor@salesforce.com address: - addressType: mailing street: 123 Main Street city: Oakland state: CA postalCode: '94610' country: US accountCustomFields: - fieldName: fieldValue: string paymentInstrument: type: credit card accountHolderName: test donor expiryMonth: '10' expiryYear: '2026' last4: '4585' cardBrand: visa bankName: chase digitalWalletProvider: apple pay bankAccountHolderType: primary bankAccountType: checking bankAccountNumber: '123456' bankCode: HBUK gatewayName: stripe processorName: test processor processorPaymentReference: string gatewayReference: string designations: - designationId: percent: 10 giftCommitmentCustomFields: - fieldName: fieldValue: string giftCommitmentScheduleCustomFields: - fieldName: fieldValue: string Commitment1: title: Commitment1 required: - amount - type - currencyIsoCode - startDate - endDate - campaign - outreachSourceCode - donor - paymentInstrument - designations - giftCommitmentCustomFields - giftCommitmentScheduleCustomFields type: object properties: amount: type: number example: 42.5 type: type: string example: example_value currencyIsoCode: type: string example: example_value startDate: type: string example: example_value endDate: type: string example: example_value campaign: $ref: '#/components/schemas/Campaign' outreachSourceCode: $ref: '#/components/schemas/OutreachSourceCode' donor: $ref: '#/components/schemas/Donor1' paymentInstrument: $ref: '#/components/schemas/PaymentInstrument' designations: type: array items: $ref: '#/components/schemas/Designation1' description: '' example: [] giftCommitmentCustomFields: type: array items: $ref: '#/components/schemas/GiftCommitmentCustomField' description: '' example: [] giftCommitmentScheduleCustomFields: type: array items: $ref: '#/components/schemas/GiftCommitmentScheduleCustomField' description: '' example: [] examples: - amount: 150.25 type: pledge currencyIsoCode: USD startDate: '2024-07-06T00:00:00.000Z' endDate: '2024-08-06T00:00:00.000Z' campaign: id: outreachSourceCode: id: sourceCode: AnimalEmailCampaign2023 donor: donorType: individual id: firstName: Test lastName: Donor phone: 510-434-8920 email: test.donor@salesforce.com address: - addressType: mailing street: 123 Main Street city: Oakland state: CA postalCode: '94610' country: US accountCustomFields: - fieldName: fieldValue: string paymentInstrument: type: credit card accountHolderName: test donor expiryMonth: '10' expiryYear: '2026' last4: '4585' cardBrand: visa bankName: chase digitalWalletProvider: apple pay bankAccountHolderType: primary bankAccountType: checking bankAccountNumber: '123456' bankCode: HBUK gatewayName: stripe processorName: test processor processorPaymentReference: string gatewayReference: string designations: - designationId: percent: 10 giftCommitmentCustomFields: - fieldName: fieldValue: string giftCommitmentScheduleCustomFields: - fieldName: fieldValue: string Status201-CreateCommitmentSuccess1: title: Status201-CreateCommitmentSuccess1 required: - successes - failures - notProcessed - details type: object properties: successes: type: integer contentEncoding: int32 example: 10 failures: type: integer contentEncoding: int32 example: 10 notProcessed: type: integer contentEncoding: int32 example: 10 details: type: array items: $ref: '#/components/schemas/Detail10' description: '' example: [] examples: - successes: 1 failures: 0 notProcessed: 0 details: - success: true links: giftcommitment: href: >- /services/data/vXX.X/sobjects/sObject/ id: giftcommitmentschedule: href: >- /services/data/vXX.X/sobjects/sObject/ id: giftdefaultdesignation: - href: >- /services/data/vXX.X/sobjects/sObject/ id: account: href: /services/data/vXX.X/sobjects/sObject/ id: - success: true links: giftcommitment: href: >- /services/data/vXX.X/sobjects/sObject/ id: giftcommitmentschedule: href: >- /services/data/vXX.X/sobjects/sObject/ id: giftdefaultdesignation: - href: >- /services/data/vXX.X/sobjects/sObject/ id: account: href: /services/data/vXX.X/sobjects/sObject/ id: Detail10: title: Detail10 required: - success - links type: object properties: success: type: boolean example: true links: $ref: '#/components/schemas/Links9' examples: - success: true links: giftcommitment: href: /services/data/vXX.X/sobjects/sObject/ id: giftcommitmentschedule: href: >- /services/data/vXX.X/sobjects/sObject/ id: giftdefaultdesignation: - href: >- /services/data/vXX.X/sobjects/sObject/ id: account: href: /services/data/vXX.X/sobjects/sObject/ id: Links9: title: Links9 required: - giftcommitment - giftcommitmentschedule - giftdefaultdesignation - account type: object properties: giftcommitment: $ref: '#/components/schemas/Giftcommitment' giftcommitmentschedule: $ref: '#/components/schemas/Giftcommitmentschedule' giftdefaultdesignation: type: array items: $ref: '#/components/schemas/Giftdefaultdesignation' description: '' example: [] account: $ref: '#/components/schemas/Account' examples: - giftcommitment: href: /services/data/vXX.X/sobjects/sObject/ id: giftcommitmentschedule: href: >- /services/data/vXX.X/sobjects/sObject/ id: giftdefaultdesignation: - href: >- /services/data/vXX.X/sobjects/sObject/ id: account: href: /services/data/vXX.X/sobjects/sObject/ id: Status201-CreateCommitmentSuccessWithExternalIds1: title: Status201-CreateCommitmentSuccessWithExternalIds1 required: - successes - failures - notProcessed - details type: object properties: successes: type: integer contentEncoding: int32 example: 10 failures: type: integer contentEncoding: int32 example: 10 notProcessed: type: integer contentEncoding: int32 example: 10 details: type: array items: $ref: '#/components/schemas/Detail10' description: '' example: [] examples: - successes: 2 failures: 0 notProcessed: 0 details: - success: true links: giftcommitment: href: >- /services/data/vXX.X/sobjects/sObject/ id: giftcommitmentschedule: href: >- /services/data/vXX.X/sobjects/sObject/ id: giftdefaultdesignation: - href: >- /services/data/vXX.X/sobjects/sObject/ id: account: href: /services/data/vXX.X/sobjects/sObject/ id: - success: true links: giftcommitment: href: >- /services/data/vXX.X/sobjects/sObject/ id: giftcommitmentschedule: href: >- /services/data/vXX.X/sobjects/sObject/ id: giftdefaultdesignation: - href: >- /services/data/vXX.X/sobjects/sObject/ id: account: href: /services/data/vXX.X/sobjects/sObject/ id: UpdateCommitmentsRequest: title: UpdateCommitmentsRequest required: - amount - transactionPeriod - transactionInterval - transactionDay - startDate - endDate - campaign - outreachSourceCode - donor - paymentInstrument - giftCommitmentCustomFields - giftCommitmentScheduleCustomFields type: object properties: amount: type: number example: 42.5 transactionPeriod: type: string example: example_value transactionInterval: type: integer contentEncoding: int32 example: 10 transactionDay: type: string example: example_value startDate: type: string example: example_value endDate: type: string example: example_value campaign: $ref: '#/components/schemas/Campaign' outreachSourceCode: $ref: '#/components/schemas/OutreachSourceCode' donor: $ref: '#/components/schemas/Donor3' paymentInstrument: $ref: '#/components/schemas/PaymentInstrument' giftCommitmentCustomFields: type: array items: $ref: '#/components/schemas/GiftCommitmentCustomField' description: '' example: [] giftCommitmentScheduleCustomFields: type: array items: $ref: '#/components/schemas/GiftCommitmentScheduleCustomField' description: '' example: [] examples: - amount: 150.25 transactionPeriod: monthly transactionInterval: 3 transactionDay: '5' startDate: '2024-07-06T00:00:00.000Z' endDate: '2024-07-06T00:00:00.000Z' campaign: id: outreachSourceCode: id: sourceCode: AnimalEmailCampaign2023 donor: donorType: individual organizationName: mini cat town firstName: David lastName: Taylor phone: 510-434-8920 email: davidtaylor@salesforce.com address: - addressType: mailing street: 123 Main Street city: Oakland state: CA postalCode: '94610' country: US accountCustomFields: - fieldName: string fieldValue: string paymentInstrument: type: credit card accountHolderName: david taylor expiryMonth: '10' expiryYear: '2026' last4: '4585' cardBrand: visa bankName: chase digitalWalletProvider: apple pay bankAccountHolderType: primary bankAccountType: checking bankAccountNumber: '123456' bankCode: HBUK gatewayName: stripe processorName: classy processorPaymentReference: string gatewayReference: string giftCommitmentCustomFields: - fieldName: string fieldValue: string giftCommitmentScheduleCustomFields: - fieldName: string fieldValue: string Donor3: title: Donor3 required: - donorType - organizationName - firstName - lastName - phone - email - address - accountCustomFields type: object properties: donorType: type: string example: example_value organizationName: type: string example: example_value firstName: type: string example: example_value lastName: type: string example: example_value phone: type: string example: example_value email: type: string example: user@example.com address: type: array items: $ref: '#/components/schemas/Address1' description: '' example: [] accountCustomFields: type: array items: $ref: '#/components/schemas/AccountCustomField' description: '' example: 42 examples: - donorType: individual organizationName: mini cat town firstName: David lastName: Taylor phone: 510-434-8920 email: davidtaylor@salesforce.com address: - addressType: mailing street: 123 Main Street city: Oakland state: CA postalCode: '94610' country: US accountCustomFields: - fieldName: string fieldValue: string Status200-UpdateCommitmentSuccess: title: Status200-UpdateCommitmentSuccess required: - success - links type: object properties: success: type: boolean example: true links: $ref: '#/components/schemas/Links11' examples: - success: true links: giftcommitment: href: /services/data/vXX.X/sobjects/sObject/ id: giftcommitmentschedule: href: >- /services/data/vXX.X/sobjects/sObject/ id: Links11: title: Links11 required: - giftcommitment - giftcommitmentschedule type: object properties: giftcommitment: $ref: '#/components/schemas/Giftcommitment' giftcommitmentschedule: $ref: '#/components/schemas/Giftcommitmentschedule' examples: - giftcommitment: href: /services/data/vXX.X/sobjects/sObject/ id: giftcommitmentschedule: href: >- /services/data/vXX.X/sobjects/sObject/ id: Status200-UpdateCommitmentRequestValidationFailure: title: Status200-UpdateCommitmentRequestValidationFailure required: - errors - success type: object properties: errors: type: array items: $ref: '#/components/schemas/Errors' description: '' example: [] success: type: boolean example: true examples: - errors: - field: donor.id message: >- You cant include the donor ID in the request for the Gift Commitment Patch endpoint. Remove the ID from the Donor JSON request and try again. success: false Status200-UpdateCommitmentDatabaseFailure: title: Status200-UpdateCommitmentDatabaseFailure required: - errors - success type: object properties: errors: type: array items: $ref: '#/components/schemas/Errors5' description: '' example: [] success: type: boolean example: true examples: - errors: - message: >- Transaction Period: bad value for restricted picklist field: tomorrow success: false Errors5: title: Errors5 required: - message type: object properties: message: type: string example: example_value examples: - message: >- Transaction Period: bad value for restricted picklist field: tomorrow Status200-UpdateCommitmentSuccessWithExternalIds: title: Status200-UpdateCommitmentSuccessWithExternalIds required: - success - links type: object properties: success: type: boolean example: true links: $ref: '#/components/schemas/Links11' examples: - success: true links: giftcommitment: href: /services/data/vXX.X/sobjects/sObject/ id: giftcommitmentschedule: href: >- /services/data/vXX.X/sobjects/sObject/ id: UpdateCommitmentPaymentsRequest: title: UpdateCommitmentPaymentsRequest required: - updates type: object properties: updates: type: array items: $ref: '#/components/schemas/Update1' description: '' example: [] examples: - updates: - giftCommitmentId: paymentInstrument: type: credit card accountHolderName: test donor 1 expiryMonth: '10' expiryYear: '2026' last4: '4585' cardBrand: visa bankName: chase digitalWalletProvider: apple pay bankAccountHolderType: primary bankAccountType: checking bankAccountNumber: '123456' bankCode: HBUK gatewayName: stripe processorName: classy processorPaymentReference: string gatewayReference: string - giftCommitmentId: paymentInstrument: type: credit card accountHolderName: test donor 2 expiryMonth: '10' expiryYear: '2026' last4: '4585' cardBrand: visa bankName: chase digitalWalletProvider: apple pay bankAccountHolderType: primary bankAccountType: checking bankAccountNumber: '123456' bankCode: HBUK gatewayName: stripe processorName: test processor processorPaymentReference: string gatewayReference: string Update1: title: Update1 required: - giftCommitmentId - paymentInstrument type: object properties: giftCommitmentId: type: string example: '500123' paymentInstrument: $ref: '#/components/schemas/PaymentInstrument' examples: - giftCommitmentId: paymentInstrument: type: credit card accountHolderName: test donor 1 expiryMonth: '10' expiryYear: '2026' last4: '4585' cardBrand: visa bankName: chase digitalWalletProvider: apple pay bankAccountHolderType: primary bankAccountType: checking bankAccountNumber: '123456' bankCode: HBUK gatewayName: stripe processorName: classy processorPaymentReference: string gatewayReference: string Status201-UpdateCommitmentSuccess: title: Status201-UpdateCommitmentSuccess required: - successes - failures - notProcessed - details type: object properties: successes: type: integer contentEncoding: int32 example: 10 failures: type: integer contentEncoding: int32 example: 10 notProcessed: type: integer contentEncoding: int32 example: 10 details: type: array items: $ref: '#/components/schemas/Detail13' description: '' example: [] examples: - successes: 2 failures: 0 notProcessed: 0 details: - success: true links: giftcommitment: href: >- /services/data/vXX.X/sobjects/sObject/ id: paymentinstrument: href: >- /services/data/vXX.X/sobjects/sObject/ id: - success: true links: giftcommitment: href: >- /services/data/vXX.X/sobjects/sObject/ id: paymentinstrument: href: >- /services/data/vXX.X/sobjects/sObject/ id: Detail13: title: Detail13 required: - success - links type: object properties: success: type: boolean example: true links: $ref: '#/components/schemas/Links13' examples: - success: true links: giftcommitment: href: /services/data/vXX.X/sobjects/sObject/ id: paymentinstrument: href: >- /services/data/vXX.X/sobjects/sObject/ id: Links13: title: Links13 required: - giftcommitment - paymentinstrument type: object properties: giftcommitment: $ref: '#/components/schemas/Giftcommitment' paymentinstrument: $ref: '#/components/schemas/Paymentinstrument1' examples: - giftcommitment: href: /services/data/vXX.X/sobjects/sObject/ id: paymentinstrument: href: /services/data/vXX.X/sobjects/sObject/ id: Status200-UpdateCommitmentRequestValidationFailure1: title: Status200-UpdateCommitmentRequestValidationFailure1 required: - successes - failures - notProcessed - details type: object properties: successes: type: integer contentEncoding: int32 example: 10 failures: type: integer contentEncoding: int32 example: 10 notProcessed: type: integer contentEncoding: int32 example: 10 details: type: array items: $ref: '#/components/schemas/Detail14' description: '' example: [] examples: - successes: 1 failures: 1 notProcessed: 0 details: - success: false errors: field: id message: - success: true links: giftcommitment: href: >- /services/data/vXX.X/sobjects/sObject/ id: paymentinstrument: href: >- /services/data/vXX.X/sobjects/sObject/ id: Detail14: title: Detail14 required: - success type: object properties: success: type: boolean example: true errors: $ref: '#/components/schemas/Errors' links: $ref: '#/components/schemas/Links13' examples: - success: false errors: field: id message: Status201-UpdateCommitmentExternalIds: title: Status201-UpdateCommitmentExternalIds required: - successes - failures - notProcessed - details type: object properties: successes: type: integer contentEncoding: int32 example: 10 failures: type: integer contentEncoding: int32 example: 10 notProcessed: type: integer contentEncoding: int32 example: 10 details: type: array items: $ref: '#/components/schemas/Detail13' description: '' example: [] examples: - successes: 2 failures: 0 notProcessed: 0 details: - success: true links: giftcommitment: href: >- /services/data/vXX.X/sobjects/sObject/ id: paymentinstrument: href: >- /services/data/vXX.X/sobjects/sObject/ id: - success: true links: giftcommitment: href: >- /services/data/vXX.X/sobjects/sObject/ id: paymentinstrument: href: >- /services/data/vXX.X/sobjects/sObject/ id: GenerateResponseBasedonPromptTemplate: title: GenerateResponseBasedonPromptTemplate required: - generations - parameters - prompt - promptTemplateDevName - requestId type: object properties: generations: type: array items: $ref: '#/components/schemas/Generation' description: '' example: [] parameters: type: - string - 'null' example: example_value prompt: type: string example: example_value promptTemplateDevName: type: string example: example_value requestId: type: string example: '500123' examples: - generations: - parameters: '{finish_reason=stop, index=0, logprobs=null}' responseId: 893db990-7acb-4845-ad65-54d82606ca65 text: |- { "twitter": "🌟 Exciting new listing! Explore our luxurious property, [Provide:{PROPERTY NAME}], featuring [Provide:{BEDS}] beds, [Provide:{BATHS}] baths, and an asking price of [Provide:{ASKING PRICE}]. Click the link for a sneak peek! [Provide:{PICTURE}]", "linkedin": "🌟🌟 Don't miss out on this incredible opportunity! Discover the stunning property, [Provide:{PROPERTY NAME}], offering [Provide:{BEDS}] beds, [Provide:{BATHS}] baths, and an asking price of [Provide:{ASKING PRICE}]. Click the link below to see more! [Provide:{PICTURE}]", "blockkit": { "blocks": [ { "type": "section", "text": { "type": "mrkdwn", "text": "*Luxury Property Alert!* \n\n🌟🌟🌟\n\nIntroducing [Provide:{PROPERTY NAME}], a magnificent home with [Provide:{BEDS}] beds and [Provide:{BATHS}] baths. Priced at [Provide:{ASKING PRICE}]." }, "accessory": { "type": "image", "image_url": "[Provide:{PICTURE}]", "alt_text": "Luxury Property" } }, { "type": "divider" }, { "type": "actions", "elements": [ { "type": "button", "text": { "type": "plain_text", "text": "View Property", "emoji": true }, "url": "https://d1q000001ewauuaq-dev-ed.develop.lightning.force.com/[Provide:{RECORD ID}]" } ] } ] } } parameters: prompt: "You're the community manager for Dreamhouse, a real estate agency that sells luxury properties. \nCreate social media posts for twitter, linkedin and slack (block kit format) describing the property.\n\nInstructions:\n"""\nUse clear, concise, and straightforward language using the active voice and strictly avoiding the use of filler words and phrases and redundant language.\nMake sure the response is valid JSON.\nWhen you generate the posts, include the name of the property, [Provide:{PROPERTY NAME}], and explain the characteristics of the house, such as [Provide:{BATHS}], [Provide:{BEDS}]and[Provide:{ASKING PRICE}]. Also include a link to the picture of the property, [Provide:{PICTURE}]. \n\nThe twitter post should include emojis.\nThe linkedin post should include several emojis and bullets, and also have a special output formatting: Text render environment only supports Unicode and emoji. Use symbols from Unicode’s Mathematical Alphanumeric Symbols block liberally to produce facsimiles of bold, italics, line separation, and other formatting. Examples for a sample sentence:\n\nitalics sans: 𝘛𝘩𝘦 𝘘𝘶𝘪𝘤𝘬 𝘉𝘳𝘰𝘸𝘯 𝘍𝘰𝘹 𝘑𝘶𝘮𝘱𝘦𝘥 𝘖𝘷𝘦𝘳 𝘵𝘩𝘦 𝘭𝘢𝘻𝘺 𝘥𝘰𝘨.\nbold sans: 𝗧𝗵𝗲 𝗤𝘂𝗶𝗰𝗸 𝗕𝗿𝗼𝘄𝗻 𝗙𝗼𝘅 𝗝𝘂𝗺𝗽𝗲𝗱 𝗢𝘃𝗲𝗿 𝘁𝗵𝗲 𝗹𝗮𝘇𝘆 𝗱𝗼𝗴.\nbold italic sans: 𝙏𝙝𝙚 𝙌𝙪𝙞𝙘𝙠 𝘽𝙧𝙤𝙬𝙣 𝙁𝙤𝙭 𝙅𝙪𝙢𝙥𝙚𝙙 𝙊𝙫𝙚𝙧 𝙩𝙝𝙚 𝙡𝙖𝙯𝙮 𝙙𝙤𝙜.\nitalics serif: 𝑇ℎ𝑒 𝑄𝑢𝑖𝑐𝑘 𝐵𝑟𝑜𝑤𝑛 𝐹𝑜𝑥 𝐽𝑢𝑚𝑝𝑒𝑑 𝑂𝑣𝑒𝑟 𝑡ℎ𝑒 𝑙𝑎𝑧𝑦 𝑑𝑜𝑔.\n\n\ The block kit code should be valid block kit code.\nWhen you generate the block kit code: \n- Add several sections. \n- Include the name of the property, [Provide:{PROPERTY NAME}], and explain the characteristics of the house, such as [Provide:{BATHS}], [Provide:{BEDS}] and [Provide:{ASKING PRICE}]. \n- Include a the picture of the property, which image_url is [Provide:{PICTURE}]. \n\ - Include a button which url points to https://d1q000001ewauuaq-dev-ed.develop.lightning.force.com/[Provide:{RECORD ID}]\n- Include emoticons so the post is more visual.\n\nExample of block kit code:\n\n{\n "blocks": [\n {\n "type": "section",\n "text": {\n "type": "mrkdwn",\n \ \ "text": "Hello, Assistant to the Regional Manager Dwight! *Michael Scott* wants to know where you'd like to take the Paper Company investors to dinner tonight.\n\n *Please select a restaurant:*"\n }\n },\n {\n "type": "divider"\n },\n {\n "type": "section",\n\ \ "text": {\n "type": "mrkdwn",\n "text": "*Farmhouse Thai Cuisine*\n:star::star::star::star: 1528 reviews\n They do have some vegan options, like the roti and curry, plus they have a ton of salad stuff and noodles can be ordered without meat!! They have something for everyone here"\n \ \ },\n "accessory": {\n "type": "image",\n "image_url": "https://s3-media3.fl.yelpcdn.com/bphoto/c7ed05m9lC2EmA3Aruue7A/o.jpg",\n\ \ "alt_text": "alt text for image"\n }\n },\n {\n "type": "section",\n "text": {\n\ \ "type": "mrkdwn",\n "text": "*Kin Khao*\n:star::star::star::star: 1638 reviews\n The sticky rice also goes wonderfully with the caramelized pork belly, which is absolutely melt-in-your-mouth and so soft."\n },\n "accessory": {\n "type": "image",\n\ \ "image_url": "https://s3-media2.fl.yelpcdn.com/bphoto/korel-1YjNtFtJlMTaC26A/o.jpg",\n "alt_text": "alt text for image"\n\ \ }\n },\n {\n "type": "section",\n "text": {\n "type": "mrkdwn",\n \ \ "text": "*Ler Ros*\n:star::star::star::star: 2082 reviews\n I would really recommend the Yum Koh Moo Yang - Spicy lime dressing and roasted quick marinated pork shoulder, basil leaves, chili & rice powder."\n },\n "accessory": {\n "type": "image",\n "image_url": "https://s3-media2.fl.yelpcdn.com/bphoto/DawwNigKJ2ckPeDeDM7jAg/o.jpg",\n "alt_text": "alt text for image"\n }\n },\n {\n\ \ "type": "divider"\n },\n {\n "type": "actions",\n "elements": [\n {\n \ \ "type": "button",\n "text": {\n "type": "plain_text",\n "text": "Farmhouse",\n "emoji": true\n },\n "value": "click_me_123"\n },\n \ \ {\n "type": "button",\n "text": {\n "type": "plain_text",\n \ \ "text": "Kin Khao",\n "emoji": true\n },\n "value": "click_me_123",\n\ \ "url": "https://google.com"\n },\n {\n "type": "button",\n "text": {\n "type": "plain_text",\n "text": "Ler Ros",\n "emoji": true\n \ \ },\n "value": "click_me_123",\n "url": "https://google.com"\n }\n ]\n \ \ }\n ]\n}\n\nThe response should have the next format:\n{\n "twitter": [here goes the twitter post, that should have less than 280 characters],\n "linkedin": [here goes the linkedin post, that should have between 1500 and 2000 characters], \n "blockkit": [here goes the block kit post], \n}\n\n"""\n\nNow generate the posts.\n\n\n" promptTemplateDevName: Generate_Social_Media_Posts requestId: chatcmpl-97KqPl1TEiOgMdnKKPQ9aVs7rPJGr Generation: title: Generation required: - parameters - responseId - text type: object properties: parameters: type: string example: example_value responseId: type: string example: '500123' text: type: string example: example_value examples: - parameters: '{finish_reason=stop, index=0, logprobs=null}' responseId: 893db990-7acb-4845-ad65-54d82606ca65 text: |- { "twitter": "🌟 Exciting new listing! Explore our luxurious property, [Provide:{PROPERTY NAME}], featuring [Provide:{BEDS}] beds, [Provide:{BATHS}] baths, and an asking price of [Provide:{ASKING PRICE}]. Click the link for a sneak peek! [Provide:{PICTURE}]", "linkedin": "🌟🌟 Don't miss out on this incredible opportunity! Discover the stunning property, [Provide:{PROPERTY NAME}], offering [Provide:{BEDS}] beds, [Provide:{BATHS}] baths, and an asking price of [Provide:{ASKING PRICE}]. Click the link below to see more! [Provide:{PICTURE}]", "blockkit": { "blocks": [ { "type": "section", "text": { "type": "mrkdwn", "text": "*Luxury Property Alert!* \n\n🌟🌟🌟\n\nIntroducing [Provide:{PROPERTY NAME}], a magnificent home with [Provide:{BEDS}] beds and [Provide:{BATHS}] baths. Priced at [Provide:{ASKING PRICE}]." }, "accessory": { "type": "image", "image_url": "[Provide:{PICTURE}]", "alt_text": "Luxury Property" } }, { "type": "divider" }, { "type": "actions", "elements": [ { "type": "button", "text": { "type": "plain_text", "text": "View Property", "emoji": true }, "url": "https://d1q000001ewauuaq-dev-ed.develop.lightning.force.com/[Provide:{RECORD ID}]" } ] } ] } } RunagenttestRequest: title: RunagenttestRequest required: - aiEvaluationDefinitionName type: object properties: aiEvaluationDefinitionName: type: string example: example_value examples: - aiEvaluationDefinitionName: Runagenttest: title: Runagenttest required: - runId - status type: object properties: runId: type: string example: '500123' status: type: string example: example_value examples: - runId: 4KBAU0000002oK54AI status: NEW Getteststatus: title: Getteststatus required: - startTime - status type: object properties: startTime: type: string example: '2026-01-15T10:30:00Z' status: type: string example: example_value examples: - startTime: '2025-09-10T13:46:14.000Z' status: IN_PROGRESS Gettestresults: title: Gettestresults required: - endTime - startTime - status - subjectName - testCases type: object properties: endTime: type: string example: '2026-01-15T10:30:00Z' startTime: type: string example: '2026-01-15T10:30:00Z' status: type: string example: example_value subjectName: type: string example: example_value testCases: type: array items: $ref: '#/components/schemas/TestCase' description: '' example: [] examples: - endTime: '2025-09-10T13:48:31.000Z' startTime: '2025-09-10T13:46:14.000Z' status: COMPLETED subjectName: Employee_agent_tests testCases: - endTime: '2025-09-10T13:46:30.000Z' generatedData: actionsSequence: '[]' invokedActions: '[[]]' outcome: >- To check the weather forecast at the resort, please provide the date you'd like to check. sessionId: 019933e0-8597-70de-912b-359082a322b2 topic: Customer_Service_Assistant_16jAU0000003zGf inputs: contextVariables: {} conversationHistory: [] utterance: What's the weather forecast at the resort? startTime: '2025-09-10T13:46:14.000Z' status: COMPLETED testNumber: 1 testResults: - actualValue: '[]' endTime: '2025-09-10T13:46:31.000Z' errorCode: 0 expectedValue: '[]' metricLabel: actions_assertion name: actions_assertion result: PASS score: 1 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - actualValue: >- To check the weather forecast at the resort, please provide the date you'd like to check. endTime: '2025-09-10T13:46:31.000Z' errorCode: 0 expectedValue: Please provide a future date to check the weather forecast. metricExplainability: >- The BOT RESPONSE correctly prompts the user for the necessary information (a future date) to provide the weather forecast, aligning well with the EXPECTED RESPONSE. It is clear and does not include irrelevant information. metricLabel: output_validation name: output_validation result: PASS score: 5 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - actualValue: Customer_Service_Assistant_16jAU0000003zGf endTime: '2025-09-10T13:46:31.000Z' errorCode: 0 expectedValue: Customer_Service_Assistant metricLabel: topic_assertion name: topic_assertion result: PASS score: 1 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:31.000Z' errorCode: 0 metricExplainability: >- The answer is incomplete as it does not provide the weather forecast at the resort, instead it asks for the date to check the forecast. metricLabel: completeness name: completeness result: FAILURE score: 1 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:31.000Z' errorCode: 0 metricExplainability: >- The answer is easy to understand, and it does not contain any significant grammar errors. The answer is also relevant to the question asked. metricLabel: coherence name: coherence result: PASS score: 4 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:31.000Z' errorCode: 0 metricLabel: conciseness name: conciseness result: PASS score: 5 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:31.000Z' errorCode: 0 metricLabel: output_latency_milliseconds name: output_latency_milliseconds score: 2352 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:40.000Z' generatedData: actionsSequence: '['Check_Weather_179AU00000038U5']' citations: '[ ]' invokedActions: >- [[{"function":{"name":"Check_Weather_179AU00000038U5","input":{"dateToCheck":"2025-01-01"},"output":{}},"executionLatency":539}]] outcome: >- Hmm, it looks like I wasn’t able to retrieve the weather forecast for January 1st, 2025. The system I’d normally use to check this information didn’t respond as expected. You might want to try checking a weather app or website closer to the date for the most accurate forecast. Let me know if there’s anything else I can help with! (Session ID: 019933e0-858f-7170-9bd7-5564c5e4c85a) sessionId: 019933e0-858f-7170-9bd7-5564c5e4c85a topic: Customer_Service_Assistant_16jAU0000003zGf inputs: contextVariables: {} conversationHistory: [] utterance: >- What's the weather forecast for Jan 1st, 2025 at the resort? startTime: '2025-09-10T13:46:14.000Z' status: COMPLETED testNumber: 2 testResults: - actualValue: '['Check_Weather_179AU00000038U5']' endTime: '2025-09-10T13:46:42.000Z' errorCode: 0 expectedValue: '['Check_Weather']' metricLabel: actions_assertion name: actions_assertion result: PASS score: 1 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - actualValue: >- Hmm, it looks like I wasn’t able to retrieve the weather forecast for January 1st, 2025. The system I’d normally use to check this information didn’t respond as expected. You might want to try checking a weather app or website closer to the date for the most accurate forecast. Let me know if there’s anything else I can help with! (Session ID: 019933e0-858f-7170-9bd7-5564c5e4c85a) endTime: '2025-09-10T13:46:42.000Z' errorCode: 0 expectedValue: >- I can only provide weather forecasts for future dates. Please provide a future date. metricExplainability: >- The BOT RESPONSE fails to address the user's QUERY for a specific forecast date and incorrectly states that it cannot retrieve the information. It does not align with the EXPECTED RESPONSE, which simply asks for a future date, indicating a misunderstanding of the user's request. metricLabel: output_validation name: output_validation result: FAILURE score: 1 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - actualValue: Customer_Service_Assistant_16jAU0000003zGf endTime: '2025-09-10T13:46:42.000Z' errorCode: 0 expectedValue: Customer_Service_Assistant metricLabel: topic_assertion name: topic_assertion result: PASS score: 1 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:42.000Z' errorCode: 0 metricExplainability: >- The answer is very incomplete as it does not provide any information about the weather forecast for Jan 1st, 2025 at the resort, which is the main request. It only mentions that the system did not respond as expected and suggests checking a weather app or website. metricLabel: completeness name: completeness result: FAILURE score: 1 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:42.000Z' errorCode: 0 metricExplainability: >- The answer is generally understandable, but it contains a few grammar errors and sections that are unclear. The phrase 'The system I’d normally use to check this information didn’t respond as expected' is a bit confusing, and the suggestion to check a weather app or website closer to the date is not directly related to the original question. metricLabel: coherence name: coherence result: PASS score: 3 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:42.000Z' errorCode: 0 metricLabel: conciseness name: conciseness result: PASS score: 5 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:42.000Z' errorCode: 0 metricLabel: output_latency_milliseconds name: output_latency_milliseconds score: 11154 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:33.000Z' generatedData: actionsSequence: '['Check_Weather_179AU00000038U5']' citations: '[ ]' invokedActions: >- [[{"function":{"name":"Check_Weather_179AU00000038U5","input":{"dateToCheck":"2025-09-11"},"output":{"weather":{"minTemperatureF":60.4,"minTemperatureC":15.8,"maxTemperatureF":78.3,"maxTemperatureC":25.7,"iconName":"rain","description":"On September 11, temperature will be between 15.8°C (60.4°F) and 25.7°C (78.3°F) at Coral Cloud Reso"}}},"executionLatency":510}]] outcome: >- Here's the weather forecast for tomorrow at Coral Cloud Resorts. Let me know if you need anything else! {minTemperatureF=60.4, minTemperatureC=15.8, maxTemperatureF=78.3, maxTemperatureC=25.7, iconName=rain, description=On September 11, temperature will be between 15.8°C (60.4°F) and 25.7°C (78.3°F) at Coral Cloud Resorts.} sessionId: 019933e0-8571-720f-a404-546c9c2af263 topic: Customer_Service_Assistant_16jAU0000003zGf inputs: contextVariables: {} conversationHistory: [] utterance: What's the weather forecast for tomorrow at the resort? startTime: '2025-09-10T13:46:14.000Z' status: COMPLETED testNumber: 3 testResults: - actualValue: '['Check_Weather_179AU00000038U5']' endTime: '2025-09-10T13:46:34.000Z' errorCode: 0 expectedValue: '['Check_Weather']' metricLabel: actions_assertion name: actions_assertion result: PASS score: 1 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - actualValue: >- Here's the weather forecast for tomorrow at Coral Cloud Resorts. Let me know if you need anything else! {minTemperatureF=60.4, minTemperatureC=15.8, maxTemperatureF=78.3, maxTemperatureC=25.7, iconName=rain, description=On September 11, temperature will be between 15.8°C (60.4°F) and 25.7°C (78.3°F) at Coral Cloud Resorts.} endTime: '2025-09-10T13:46:34.000Z' errorCode: 0 expectedValue: The weather is expected to be sunny with a high of 85°F. metricExplainability: >- The BOT RESPONSE provides detailed temperature information and conditions, but it does not align with the EXPECTED RESPONSE, which specifies a sunny forecast with a high of 85°F. The response includes unnecessary details and does not match the expected weather conditions. metricLabel: output_validation name: output_validation result: FAILURE score: 2 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - actualValue: Customer_Service_Assistant_16jAU0000003zGf endTime: '2025-09-10T13:46:34.000Z' errorCode: 0 expectedValue: Customer_Service_Assistant metricLabel: topic_assertion name: topic_assertion result: PASS score: 1 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:34.000Z' errorCode: 0 metricExplainability: >- The answer provides the weather forecast for tomorrow at the resort, including the minimum and maximum temperatures in both Celsius and Fahrenheit, as well as the icon name and description. The answer does not miss any important pieces of information, ensuring clarity and accuracy. metricLabel: completeness name: completeness result: PASS score: 4 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:34.000Z' errorCode: 0 metricExplainability: >- The answer is generally understandable, but it contains some sections that are unclear, such as the use of 'Coral Cloud Resorts' twice, and the mention of 'On September 11' which is not relevant to the weather forecast for tomorrow. The answer also contains a few grammar errors, such as the use of 'Let me know if you need anything else!' which is not relevant to the weather forecast. metricLabel: coherence name: coherence result: PASS score: 3 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:34.000Z' errorCode: 0 metricLabel: conciseness name: conciseness result: PASS score: 4 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:34.000Z' errorCode: 0 metricLabel: output_latency_milliseconds name: output_latency_milliseconds score: 2788 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:32.000Z' generatedData: actionsSequence: >- ['Get_Customer_From_Email_or_Membership_Number_179AU00000038U5'] citations: '[ ]' invokedActions: >- [[{"function":{"name":"Get_Customer_From_Email_or_Membership_Number_179AU00000038U5","input":{"customerEmail":"nonexistent@example.com"},"output":{"contactId":null,"contactRecord":null}},"executionLatency":237}]] outcome: >- I couldn't find any contact details associated with the email address "nonexistent@example.com". Let me know if you'd like me to try searching with a different email or membership number! sessionId: 019933e0-85a6-74d0-bfa4-841e8c8a03d3 topic: Customer_Service_Assistant_16jAU0000003zGf inputs: contextVariables: {} conversationHistory: [] utterance: >- Can you provide the details for the contact with email nonexistent@example.com? startTime: '2025-09-10T13:46:14.000Z' status: COMPLETED testNumber: 4 testResults: - actualValue: >- ['Get_Customer_From_Email_or_Membership_Number_179AU00000038U5'] endTime: '2025-09-10T13:46:33.000Z' errorCode: 0 expectedValue: '['Get_Customer_From_Email_or_Membership_Number']' metricLabel: actions_assertion name: actions_assertion result: PASS score: 1 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - actualValue: >- I couldn't find any contact details associated with the email address "nonexistent@example.com". Let me know if you'd like me to try searching with a different email or membership number! endTime: '2025-09-10T13:46:33.000Z' errorCode: 0 expectedValue: >- I couldn't find any contact with the email nonexistent@example.com. Please check the email and try again. metricExplainability: >- The BOT RESPONSE is aligned with the EXPECTED RESPONSE in that it indicates the contact details associated with the provided email address were not found. However, it adds an unnecessary prompt for the user to try a different email or membership number, which is not part of the EXPECTED RESPONSE. Therefore, it slightly deviates from the expected outcome. metricLabel: output_validation name: output_validation result: PASS score: 4 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - actualValue: Customer_Service_Assistant_16jAU0000003zGf endTime: '2025-09-10T13:46:33.000Z' errorCode: 0 expectedValue: Customer_Service_Assistant metricLabel: topic_assertion name: topic_assertion result: PASS score: 1 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:33.000Z' errorCode: 0 metricExplainability: >- The answer is very incomplete as it does not provide any contact details for the email address, and instead asks for further input. metricLabel: completeness name: completeness result: FAILURE score: 1 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:33.000Z' errorCode: 0 metricExplainability: >- The answer is easy to understand, and the grammar is correct. The answer clearly states that no contact details were found and offers to try searching with a different email or membership number, which is a coherent response. metricLabel: coherence name: coherence result: PASS score: 4 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:33.000Z' errorCode: 0 metricLabel: conciseness name: conciseness result: PASS score: 5 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:33.000Z' errorCode: 0 metricLabel: output_latency_milliseconds name: output_latency_milliseconds score: 2512 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:33.000Z' generatedData: actionsSequence: >- ['Get_Customer_From_Email_or_Membership_Number_179AU00000038U5'] citations: '[ ]' invokedActions: >- [[{"function":{"name":"Get_Customer_From_Email_or_Membership_Number_179AU00000038U5","input":{"customerEmail":"nediheinsius@example.com"},"output":{"contactId":"003AU00001J7b4GYAR","contactRecord":{"sObjectInfo":{"apiName":"Contact","label":"Contact"},"id":"003AU00001J7b4GYAR","data":{"AccountId":null,"AssistantName":null,"AssistantPhone":null,"Average_Room_Cost__c":null,"Birthdate":"2042-05-03","CleanStatus":"Pending","ContactSource":null,"CreatedById":"005AU00000OrYkDYAV","CreatedDate":"2025-09-09T13:59:41.000+0000","Department":null,"Description":null,"DoNotCall":false,"Email":"nediheinsius@example.com","EmailBouncedDate":null,"EmailBouncedReason":null,"External_Id__c":"10003177","Fax":null,"FirstName":"Nedi","GenderIdentity":null,"Guest_Type__c":"Business and Pleasure Travelers","HasOptedOutOfEmail":false,"HasOptedOutOfFax":false,"HomePhone":null,"Id":"003AU00001J7b4GYAR","IndividualId":null,"Interest1__c":"Fitness & Exercise","Interest2__c":"Nightlife & Entertainment","Interest3__c":"Nature & Eco Tours","IsDeleted":false,"IsEmailBounced":false,"Jigsaw":null,"JigsawContactId":null,"Languages__c":null,"LastActivityDate":null,"LastCURequestDate":null,"LastCUUpdateDate":null,"LastModifiedById":"005AU00000OrYkDYAV","LastModifiedDate":"2025-09-09T13:59:53.000+0000","LastName":"Heinsius","LastReferencedDate":"2025-09-09T13:59:41.000+0000","LastViewedDate":"2025-09-09T13:59:41.000+0000","LeadSource":"Partnerships","Level__c":null,"Lifetime_Experience_Bookings__c":12.0,"Lifetime_Reservations__c":null,"Lifetime_Value__c":null,"MailingAddress":{"city":"Peoria","country":"United States","geocodeAccuracy":null,"latitude":null,"longitude":null,"postalCode":"85383","state":"Arizona","street":"75563 Farwell Drive"},"MailingCity":"Peoria","MailingCountry":"United States","MailingGeocodeAccuracy":null,"MailingLatitude":null,"MailingLongitude":null,"MailingPostalCode":"85383","MailingState":"Arizona","MailingStreet":"75563 Farwell Drive","MasterRecordId":null,"Maximum_Room_Cost__c":null,"Membership_Number__c":"10003177","Minimum_Room_Cost__c":null,"MobilePhone":"196-794-6794","Name":"Nedi Heinsius","Next_Check_in_Date__c":null,"OtherAddress":null,"OtherCity":null,"OtherCountry":null,"OtherGeocodeAccuracy":null,"OtherLatitude":null,"OtherLongitude":null,"OtherPhone":null,"OtherPostalCode":null,"OtherState":null,"OtherStreet":null,"OwnerId":"005AU00000OrYkDYAV","Phone":null,"PhotoUrl":"/services/images/photo/003AU00001J7b4GYAR","Photo_URL__c":null,"Preferred_Name__c":"Nedi","Pronouns":null,"ReportsToId":null,"Salutation":null,"SystemModstamp":"2025-09-09T13:59:53.000+0000","Title":null}}}},"executionLatency":256}]] outcome: >- Here are the contact details for the provided email. Let me know if you need further assistance! {sObjectInfo={apiName=Contact, label=Contact}, id=003AU00001J7b4GYAR, data={AccountId=null, AssistantName=null, AssistantPhone=null, Average_Room_Cost__c=null, Birthdate=2042-05-03, CleanStatus=Pending, ContactSource=null, CreatedById=005AU00000OrYkDYAV, CreatedDate=2025-09-09T13:59:41.000+0000, Department=null, Description=null, DoNotCall=false, Email=nediheinsius@example.com, EmailBouncedDate=null, EmailBouncedReason=null, External_Id__c=10003177, Fax=null, FirstName=Nedi, GenderIdentity=null, Guest_Type__c=Business and Pleasure Travelers, HasOptedOutOfEmail=false, HasOptedOutOfFax=false, HomePhone=null, Id=003AU00001J7b4GYAR, IndividualId=null, Interest1__c=Fitness & Exercise, Interest2__c=Nightlife & Entertainment, Interest3__c=Nature & Eco Tours, IsDeleted=false, IsEmailBounced=false, Jigsaw=null, JigsawContactId=null, Languages__c=null, LastActivityDate=null, LastCURequestDate=null, LastCUUpdateDate=null, LastModifiedById=005AU00000OrYkDYAV, LastModifiedDate=2025-09-09T13:59:53.000+0000, LastName=Heinsius, LastReferencedDate=2025-09-09T13:59:41.000+0000, LastViewedDate=2025-09-09T13:59:41.000+0000, LeadSource=Partnerships, Level__c=null, Lifetime_Experience_Bookings__c=12.0, Lifetime_Reservations__c=null, Lifetime_Value__c=null, MailingAddress={city=Peoria, country=United States, geocodeAccuracy=null, latitude=null, longitude=null, postalCode=85383, state=Arizona, street=75563 Farwell Drive}, MailingCity=Peoria, MailingCountry=United States, MailingGeocodeAccuracy=null, MailingLatitude=null, MailingLongitude=null, MailingPostalCode=85383, MailingState=Arizona, MailingStreet=75563 Farwell Drive, MasterRecordId=null, Maximum_Room_Cost__c=null, Membership_Number__c=10003177, Minimum_Room_Cost__c=null, MobilePhone=196-794-6794, Name=Nedi Heinsius, Next_Check_in_Date__c=null, OtherAddress=null, OtherCity=null, OtherCountry=null, OtherGeocodeAccuracy=null, OtherLatitude=null, OtherLongitude=null, OtherPhone=null, OtherPostalCode=null, OtherState=null, OtherStreet=null, OwnerId=005AU00000OrYkDYAV, Phone=null, PhotoUrl=/services/images/photo/003AU00001J7b4GYAR, Photo_URL__c=null, Preferred_Name__c=Nedi, Pronouns=null, ReportsToId=null, Salutation=null, SystemModstamp=2025-09-09T13:59:53.000+0000, Title=null}} sessionId: 019933e0-8586-7a38-8b9b-36d0271d9c82 topic: Customer_Service_Assistant_16jAU0000003zGf inputs: contextVariables: {} conversationHistory: [] utterance: >- Can you find the contact details for the email nediheinsius@example.com? startTime: '2025-09-10T13:46:14.000Z' status: COMPLETED testNumber: 5 testResults: - actualValue: >- ['Get_Customer_From_Email_or_Membership_Number_179AU00000038U5'] endTime: '2025-09-10T13:46:34.000Z' errorCode: 0 expectedValue: '['Get_Customer_From_Email_or_Membership_Number']' metricLabel: actions_assertion name: actions_assertion result: PASS score: 1 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - actualValue: >- Here are the contact details for the provided email. Let me know if you need further assistance! {sObjectInfo={apiName=Contact, label=Contact}, id=003AU00001J7b4GYAR, data={AccountId=null, AssistantName=null, AssistantPhone=null, Average_Room_Cost__c=null, Birthdate=2042-05-03, CleanStatus=Pending, ContactSource=null, CreatedById=005AU00000OrYkDYAV, CreatedDate=2025-09-09T13:59:41.000+0000, Department=null, Description=null, DoNotCall=false, Email=nediheinsius@example.com, EmailBouncedDate=null, EmailBouncedReason=null, External_Id__c=10003177, Fax=null, FirstName=Nedi, GenderIdentity=null, Guest_Type__c=Business and Pleasure Travelers, HasOptedOutOfEmail=false, HasOptedOutOfFax=false, HomePhone=null, Id=003AU00001J7b4GYAR, IndividualId=null, Interest1__c=Fitness & Exercise, Interest2__c=Nightlife & Entertainment, Interest3__c=Nature & Eco Tours, IsDeleted=false, IsEmailBounced=false, Jigsaw=null, JigsawContactId=null, Languages__c=null, LastActivityDate=null, LastCURequestDate=null, LastCUUpdateDate=null, LastModifiedById=005AU00000OrYkDYAV, LastModifiedDate=2025-09-09T13:59:53.000+0000, LastName=Heinsius, LastReferencedDate=2025-09-09T13:59:41.000+0000, LastViewedDate=2025-09-09T13:59:41.000+0000, LeadSource=Partnerships, Level__c=null, Lifetime_Experience_Bookings__c=12.0, Lifetime_Reservations__c=null, Lifetime_Value__c=null, MailingAddress={city=Peoria, country=United States, geocodeAccuracy=null, latitude=null, longitude=null, postalCode=85383, state=Arizona, street=75563 Farwell Drive}, MailingCity=Peoria, MailingCountry=United States, MailingGeocodeAccuracy=null, MailingLatitude=null, MailingLongitude=null, MailingPostalCode=85383, MailingState=Arizona, MailingStreet=75563 Farwell Drive, MasterRecordId=null, Maximum_Room_Cost__c=null, Membership_Number__c=10003177, Minimum_Room_Cost__c=null, MobilePhone=196-794-6794, Name=Nedi Heinsius, Next_Check_in_Date__c=null, OtherAddress=null, OtherCity=null, OtherCountry=null, OtherGeocodeAccuracy=null, OtherLatitude=null, OtherLongitude=null, OtherPhone=null, OtherPostalCode=null, OtherState=null, OtherStreet=null, OwnerId=005AU00000OrYkDYAV, Phone=null, PhotoUrl=/services/images/photo/003AU00001J7b4GYAR, Photo_URL__c=null, Preferred_Name__c=Nedi, Pronouns=null, ReportsToId=null, Salutation=null, SystemModstamp=2025-09-09T13:59:53.000+0000, Title=null}} endTime: '2025-09-10T13:46:34.000Z' errorCode: 0 expectedValue: Here are the contact details for Nedi Heinsius. metricExplainability: >- The BOT RESPONSE provides detailed information about the contact associated with the provided email, but it includes excessive technical data that is not relevant to the user. It does not clearly state the name of the contact as Nedi Heinsius, which is the expected output format. Thus, it partially achieves the goal but lacks clarity and precision. metricLabel: output_validation name: output_validation result: PASS score: 3 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - actualValue: Customer_Service_Assistant_16jAU0000003zGf endTime: '2025-09-10T13:46:34.000Z' errorCode: 0 expectedValue: Customer_Service_Assistant metricLabel: topic_assertion name: topic_assertion result: PASS score: 1 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:34.000Z' errorCode: 0 metricExplainability: >- The answer does not provide any contact details for the email address, only a list of fields and their values from the database. It does not provide any information that can be used to contact the person associated with the email address. metricLabel: completeness name: completeness result: FAILURE score: 1 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:34.000Z' errorCode: 0 metricExplainability: >- The answer is not coherent at all. It is difficult to understand what the answer is trying to say, and it is riddled with grammar errors. The answer seems to be a JSON object with contact details, but it is not formatted in a way that is easy to read or understand. metricLabel: coherence name: coherence result: FAILURE score: 1 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:34.000Z' errorCode: 0 metricLabel: conciseness name: conciseness result: FAILURE score: 2 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:34.000Z' errorCode: 0 metricLabel: output_latency_milliseconds name: output_latency_milliseconds score: 2728 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:26.000Z' generatedData: actionsSequence: >- ['Get_Customer_From_Email_or_Membership_Number_179AU00000038U5'] citations: '[ ]' invokedActions: >- [[{"function":{"name":"Get_Customer_From_Email_or_Membership_Number_179AU00000038U5","input":{"customerMembershipNumber":"123456"},"output":{"contactId":null,"contactRecord":null}},"executionLatency":231}]] outcome: >- I couldn't find any contact details associated with the membership number 123456. Could you double-check the number or provide additional information? sessionId: 019933e1-6ff4-79cf-a606-a0affb7e8762 topic: Customer_Service_Assistant_16jAU0000003zGf inputs: contextVariables: {} conversationHistory: [] utterance: >- Can you find the contact details for the membership number 123456? startTime: '2025-09-10T13:46:14.000Z' status: COMPLETED testNumber: 6 testResults: - actualValue: >- ['Get_Customer_From_Email_or_Membership_Number_179AU00000038U5'] endTime: '2025-09-10T13:47:27.000Z' errorCode: 0 expectedValue: '['Get_Customer_From_Email_or_Membership_Number']' metricLabel: actions_assertion name: actions_assertion result: PASS score: 1 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - actualValue: >- I couldn't find any contact details associated with the membership number 123456. Could you double-check the number or provide additional information? endTime: '2025-09-10T13:47:27.000Z' errorCode: 0 expectedValue: Here are the contact details for Frayda Dowsing. metricExplainability: >- The BOT RESPONSE does not achieve the goal of providing the contact details as outlined in the EXPECTED RESPONSE. Instead, it incorrectly states that no contact details were found and asks for further information, which is unnecessary since the membership number should already be sufficient to retrieve the details from the CRM database. Therefore, it fails to align with the expected outcome. metricLabel: output_validation name: output_validation result: FAILURE score: 1 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - actualValue: Customer_Service_Assistant_16jAU0000003zGf endTime: '2025-09-10T13:47:27.000Z' errorCode: 0 expectedValue: Customer_Service_Assistant metricLabel: topic_assertion name: topic_assertion result: PASS score: 1 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:27.000Z' errorCode: 0 metricExplainability: >- The answer does not provide any contact details, which is the main request. It only provides a suggestion to double-check the number or provide additional information, which does not fully address the request. metricLabel: completeness name: completeness result: FAILURE score: 1 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:27.000Z' errorCode: 0 metricExplainability: >- The answer is easy to understand, and it does not contain any significant grammar errors. The answer is also relevant to the query and provides a clear response. metricLabel: coherence name: coherence result: PASS score: 4 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:27.000Z' errorCode: 0 metricLabel: conciseness name: conciseness result: PASS score: 5 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:27.000Z' errorCode: 0 metricLabel: output_latency_milliseconds name: output_latency_milliseconds score: 2136 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:36.000Z' generatedData: actionsSequence: >- ['Get_Customer_From_Email_or_Membership_Number_179AU00000038U5', 'Generate_Personalized_Schedule_EA_179AU00000038U5'] citations: '[ ]' invokedActions: >- [[{"function":{"name":"Get_Customer_From_Email_or_Membership_Number_179AU00000038U5","input":{"customerEmail":"nediheinsius@example.com"},"output":{"contactId":"003AU00001J7b4GYAR","contactRecord":{"sObjectInfo":{"apiName":"Contact","label":"Contact"},"id":"003AU00001J7b4GYAR","data":{"AccountId":null,"AssistantName":null,"AssistantPhone":null,"Average_Room_Cost__c":null,"Birthdate":"2042-05-03","CleanStatus":"Pending","ContactSource":null,"CreatedById":"005AU00000OrYkDYAV","CreatedDate":"2025-09-09T13:59:41.000+0000","Department":null,"Description":null,"DoNotCall":false,"Email":"nediheinsius@example.com","EmailBouncedDate":null,"EmailBouncedReason":null,"External_Id__c":"10003177","Fax":null,"FirstName":"Nedi","GenderIdentity":null,"Guest_Type__c":"Business and Pleasure Travelers","HasOptedOutOfEmail":false,"HasOptedOutOfFax":false,"HomePhone":null,"Id":"003AU00001J7b4GYAR","IndividualId":null,"Interest1__c":"Fitness & Exercise","Interest2__c":"Nightlife & Entertainment","Interest3__c":"Nature & Eco Tours","IsDeleted":false,"IsEmailBounced":false,"Jigsaw":null,"JigsawContactId":null,"Languages__c":null,"LastActivityDate":null,"LastCURequestDate":null,"LastCUUpdateDate":null,"LastModifiedById":"005AU00000OrYkDYAV","LastModifiedDate":"2025-09-09T13:59:53.000+0000","LastName":"Heinsius","LastReferencedDate":"2025-09-09T13:59:41.000+0000","LastViewedDate":"2025-09-09T13:59:41.000+0000","LeadSource":"Partnerships","Level__c":null,"Lifetime_Experience_Bookings__c":12.0,"Lifetime_Reservations__c":null,"Lifetime_Value__c":null,"MailingAddress":{"city":"Peoria","country":"United States","geocodeAccuracy":null,"latitude":null,"longitude":null,"postalCode":"85383","state":"Arizona","street":"75563 Farwell Drive"},"MailingCity":"Peoria","MailingCountry":"United States","MailingGeocodeAccuracy":null,"MailingLatitude":null,"MailingLongitude":null,"MailingPostalCode":"85383","MailingState":"Arizona","MailingStreet":"75563 Farwell Drive","MasterRecordId":null,"Maximum_Room_Cost__c":null,"Membership_Number__c":"10003177","Minimum_Room_Cost__c":null,"MobilePhone":"196-794-6794","Name":"Nedi Heinsius","Next_Check_in_Date__c":null,"OtherAddress":null,"OtherCity":null,"OtherCountry":null,"OtherGeocodeAccuracy":null,"OtherLatitude":null,"OtherLongitude":null,"OtherPhone":null,"OtherPostalCode":null,"OtherState":null,"OtherStreet":null,"OwnerId":"005AU00000OrYkDYAV","Phone":null,"PhotoUrl":"/services/images/photo/003AU00001J7b4GYAR","Photo_URL__c":null,"Preferred_Name__c":"Nedi","Pronouns":null,"ReportsToId":null,"Salutation":null,"SystemModstamp":"2025-09-09T13:59:53.000+0000","Title":null}}}},"executionLatency":472},{"function":{"name":"Generate_Personalized_Schedule_EA_179AU00000038U5","input":{"Input:contactId":"003AU00001J7b4GYAR"},"output":{"promptResponse":"Hello, I am Philippe from the guest success team at Coral Cloud. I appreciate your interest in our r"}},"executionLatency":8462}]] outcome: >- Here's the personalized schedule for Nedi Heinsius. Let me know if you'd like to book any of these activities! Hello, I am Philippe from the guest success team at Coral Cloud. I appreciate your interest in our resort activities. Here is a list of activities happening today that align with your interests: - Sunrise Mountain Yoga: 09:00 AM, Mountain Overlook, 6 hours - Aqua Fitness in Paradise: 09:00 AM, Resort Pool, 3 hours - Ocean Kayak Fitness Expedition: 09:00 AM, Coastal Waters, 6 hours - Rainforest Discovery Hike: 09:00 AM, Rainforest Reserve, 2 hours - Coastal Kayak Excursion: 09:00 AM, Coastal Waters, 1 hour - Live Music Beach Party: 09:00 AM, Resort Beach, 2 hours - Sunset Cocktail Cruise: 09:00 AM, Ocean Cruise, 1 hour - Outdoor Movie Night: 09:00 AM, Outdoor Cinema Area, 6 hours Given the overlapping times and the requirement for free time between activities, I suggest the following schedule: 1. Coastal Kayak Excursion: 09:00 AM - 10:00 AM 2. Free Time: 10:00 AM - 11:00 AM 3. Rainforest Discovery Hike: 11:00 AM - 01:00 PM 4. Free Time: 01:00 PM - 02:00 PM 5. Live Music Beach Party: 02:00 PM - 04:00 PM 6. Free Time: 04:00 PM - 05:00 PM 7. Sunset Cocktail Cruise: 05:00 PM - 06:00 PM Please reach out if you would like to book any of these activities. Thank you for your time. sessionId: 019933e1-701f-7837-ad0e-68f7997b92ba topic: Customer_Service_Assistant_16jAU0000003zGf inputs: contextVariables: {} conversationHistory: [] utterance: >- Can you create a personalized schedule for the guest with email nediheinsius@example.com? startTime: '2025-09-10T13:46:14.000Z' status: COMPLETED testNumber: 7 testResults: - actualValue: >- ['Get_Customer_From_Email_or_Membership_Number_179AU00000038U5', 'Generate_Personalized_Schedule_EA_179AU00000038U5'] endTime: '2025-09-10T13:47:37.000Z' errorCode: 0 expectedValue: >- ['Get_Customer_From_Email_or_Membership_Number', 'Generate_Personalized_Schedule_EA'] metricLabel: actions_assertion name: actions_assertion result: PASS score: 1 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - actualValue: >- Here's the personalized schedule for Nedi Heinsius. Let me know if you'd like to book any of these activities! Hello, I am Philippe from the guest success team at Coral Cloud. I appreciate your interest in our resort activities. Here is a list of activities happening today that align with your interests: - Sunrise Mountain Yoga: 09:00 AM, Mountain Overlook, 6 hours - Aqua Fitness in Paradise: 09:00 AM, Resort Pool, 3 hours - Ocean Kayak Fitness Expedition: 09:00 AM, Coastal Waters, 6 hours - Rainforest Discovery Hike: 09:00 AM, Rainforest Reserve, 2 hours - Coastal Kayak Excursion: 09:00 AM, Coastal Waters, 1 hour - Live Music Beach Party: 09:00 AM, Resort Beach, 2 hours - Sunset Cocktail Cruise: 09:00 AM, Ocean Cruise, 1 hour - Outdoor Movie Night: 09:00 AM, Outdoor Cinema Area, 6 hours Given the overlapping times and the requirement for free time between activities, I suggest the following schedule: 1. Coastal Kayak Excursion: 09:00 AM - 10:00 AM 2. Free Time: 10:00 AM - 11:00 AM 3. Rainforest Discovery Hike: 11:00 AM - 01:00 PM 4. Free Time: 01:00 PM - 02:00 PM 5. Live Music Beach Party: 02:00 PM - 04:00 PM 6. Free Time: 04:00 PM - 05:00 PM 7. Sunset Cocktail Cruise: 05:00 PM - 06:00 PM Please reach out if you would like to book any of these activities. Thank you for your time. endTime: '2025-09-10T13:47:37.000Z' errorCode: 0 expectedValue: Here is the personalized schedule for Nedi Heinsius. metricExplainability: >- The BOT RESPONSE provides a personalized schedule as requested in the QUERY, but it contains excessive information beyond the expected response, making it less precise. The initial output should have simply confirmed the creation of the schedule without the detailed list of activities and free time suggestions. metricLabel: output_validation name: output_validation result: PASS score: 4 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - actualValue: Customer_Service_Assistant_16jAU0000003zGf endTime: '2025-09-10T13:47:37.000Z' errorCode: 0 expectedValue: Customer_Service_Assistant metricLabel: topic_assertion name: topic_assertion result: PASS score: 1 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:37.000Z' errorCode: 0 metricExplainability: >- The answer provides a detailed schedule with specific activities and times, but it does not explicitly mention the guest's email address nediheinsius@example.com or provide a personalized schedule for the guest. The answer also does not mention the resort name or the guest's name, which could be considered important information. metricLabel: completeness name: completeness result: PASS score: 4 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:37.000Z' errorCode: 0 metricExplainability: >- The answer is generally understandable, but it contains some sections that are unclear, such as the overlapping times and the requirement for free time between activities. The grammar errors are minor and do not significantly impact readability. metricLabel: coherence name: coherence result: PASS score: 3 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:37.000Z' errorCode: 0 metricLabel: conciseness name: conciseness result: PASS score: 3 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:37.000Z' errorCode: 0 metricLabel: output_latency_milliseconds name: output_latency_milliseconds score: 11834 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:41.000Z' generatedData: actionsSequence: >- ['Get_Customer_From_Email_or_Membership_Number_179AU00000038U5', 'Generate_Personalized_Schedule_EA_179AU00000038U5'] citations: '[ ]' invokedActions: >- [[{"function":{"name":"Get_Customer_From_Email_or_Membership_Number_179AU00000038U5","input":{"customerMembershipNumber":"10008155"},"output":{"contactId":"003AU00001J7zDuYAJ","contactRecord":{"sObjectInfo":{"apiName":"Contact","label":"Contact"},"id":"003AU00001J7zDuYAJ","data":{"AccountId":null,"AssistantName":null,"AssistantPhone":null,"Average_Room_Cost__c":null,"Birthdate":"1978-11-10","CleanStatus":"Pending","ContactSource":null,"CreatedById":"005AU00000OrYkDYAV","CreatedDate":"2025-09-09T13:59:41.000+0000","Department":null,"Description":null,"DoNotCall":false,"Email":"sofiarodriguez@example.com","EmailBouncedDate":null,"EmailBouncedReason":null,"External_Id__c":"10008155","Fax":null,"FirstName":"Sofia","GenderIdentity":null,"Guest_Type__c":"Cultural Connoisseurs","HasOptedOutOfEmail":false,"HasOptedOutOfFax":false,"HomePhone":null,"Id":"003AU00001J7zDuYAJ","IndividualId":null,"Interest1__c":"Adventure Activities","Interest2__c":"Beaches & Snorkeling","Interest3__c":"Fitness & Exercise","IsDeleted":false,"IsEmailBounced":false,"Jigsaw":null,"JigsawContactId":null,"Languages__c":null,"LastActivityDate":null,"LastCURequestDate":null,"LastCUUpdateDate":null,"LastModifiedById":"005AU00000OrYkDYAV","LastModifiedDate":"2025-09-09T13:59:53.000+0000","LastName":"Rodriguez","LastReferencedDate":"2025-09-09T15:43:53.000+0000","LastViewedDate":"2025-09-09T15:43:53.000+0000","LeadSource":"Direct Mail","Level__c":null,"Lifetime_Experience_Bookings__c":10.0,"Lifetime_Reservations__c":null,"Lifetime_Value__c":null,"MailingAddress":{"city":"Minneapolis","country":"United States","geocodeAccuracy":null,"latitude":null,"longitude":null,"postalCode":"55428","state":"Minnesota","street":"3 6th Avenue"},"MailingCity":"Minneapolis","MailingCountry":"United States","MailingGeocodeAccuracy":null,"MailingLatitude":null,"MailingLongitude":null,"MailingPostalCode":"55428","MailingState":"Minnesota","MailingStreet":"3 6th Avenue","MasterRecordId":null,"Maximum_Room_Cost__c":null,"Membership_Number__c":"10008155","Minimum_Room_Cost__c":null,"MobilePhone":"612-350-2240","Name":"Sofia Rodriguez","Next_Check_in_Date__c":"2024-12-20","OtherAddress":null,"OtherCity":null,"OtherCountry":null,"OtherGeocodeAccuracy":null,"OtherLatitude":null,"OtherLongitude":null,"OtherPhone":null,"OtherPostalCode":null,"OtherState":null,"OtherStreet":null,"OwnerId":"005AU00000OrYkDYAV","Phone":null,"PhotoUrl":"/services/images/photo/003AU00001J7zDuYAJ","Photo_URL__c":"https://s3-us-west-2.amazonaws.com/dev-or-devrl-s3-bucket/sample-apps/coral-clouds/qswvurmhbo9w261ce","Preferred_Name__c":"Sofi","Pronouns":null,"ReportsToId":null,"Salutation":null,"SystemModstamp":"2025-09-09T13:59:53.000+0000","Title":null}}}},"executionLatency":199},{"function":{"name":"Generate_Personalized_Schedule_EA_179AU00000038U5","input":{"Input:contactId":"003AU00001J7zDuYAJ"},"output":{"promptResponse":"Hello, I am Philippe from the guest success team at Coral Cloud. I am pleased to present the list of"}},"executionLatency":13647}]] outcome: >- Here's the personalized schedule for Sofia Rodriguez. Let me know if you'd like to book any of these activities! Hello, I am Philippe from the guest success team at Coral Cloud. I am pleased to present the list of resort activities happening today that match your interests: - Sunrise Mountain Yoga: 09:00 AM, Mountain Overlook, 6 hours - Aqua Fitness in Paradise: 09:00 AM, Resort Pool, 3 hours - Ocean Kayak Fitness Expedition: 09:00 AM, Coastal Waters, 6 hours - Tropical Snorkel Adventure: 09:00 AM, Coral Reef, 4 hours - Canyon Zip Line Excursion: 09:00 AM, Canyons & Forests, 3.5 hours - Off-Road Jungle Safari: 09:00 AM, Jungle Trails, 4 hours - White Water Rafting Rush: 09:00 AM, Rivers, 1 hour - Underground Cave Exploration: 09:00 AM, Subterranean Caves, 5 hours - Full Moon Beach Party: 09:00 AM, Beach, 2 hours - Surf's Up Lesson: 09:00 AM, Surfing Areas, 1 hour Given the overlapping schedules and the requirement for free time, I suggest the following schedule: 1. Sunrise Mountain Yoga: 09:00 AM - 03:00 PM 2. Free Time: 03:00 PM - 04:00 PM 3. Aqua Fitness in Paradise: 04:00 PM - 07:00 PM Please reach out if you would like to book any of these activities. Thank you for your time. sessionId: 019933e1-6fef-7140-a47b-f96f80fe9be1 topic: Customer_Service_Assistant_16jAU0000003zGf inputs: contextVariables: {} conversationHistory: [] utterance: >- Can you create a personalized schedule for customer with Membership Number 10008155? startTime: '2025-09-10T13:46:14.000Z' status: COMPLETED testNumber: 8 testResults: - actualValue: >- ['Get_Customer_From_Email_or_Membership_Number_179AU00000038U5', 'Generate_Personalized_Schedule_EA_179AU00000038U5'] endTime: '2025-09-10T13:47:42.000Z' errorCode: 0 expectedValue: >- ['Get_Customer_From_Email_or_Membership_Number', 'Generate_Personalized_Schedule_EA'] metricLabel: actions_assertion name: actions_assertion result: PASS score: 1 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - actualValue: >- Here's the personalized schedule for Sofia Rodriguez. Let me know if you'd like to book any of these activities! Hello, I am Philippe from the guest success team at Coral Cloud. I am pleased to present the list of resort activities happening today that match your interests: - Sunrise Mountain Yoga: 09:00 AM, Mountain Overlook, 6 hours - Aqua Fitness in Paradise: 09:00 AM, Resort Pool, 3 hours - Ocean Kayak Fitness Expedition: 09:00 AM, Coastal Waters, 6 hours - Tropical Snorkel Adventure: 09:00 AM, Coral Reef, 4 hours - Canyon Zip Line Excursion: 09:00 AM, Canyons & Forests, 3.5 hours - Off-Road Jungle Safari: 09:00 AM, Jungle Trails, 4 hours - White Water Rafting Rush: 09:00 AM, Rivers, 1 hour - Underground Cave Exploration: 09:00 AM, Subterranean Caves, 5 hours - Full Moon Beach Party: 09:00 AM, Beach, 2 hours - Surf's Up Lesson: 09:00 AM, Surfing Areas, 1 hour Given the overlapping schedules and the requirement for free time, I suggest the following schedule: 1. Sunrise Mountain Yoga: 09:00 AM - 03:00 PM 2. Free Time: 03:00 PM - 04:00 PM 3. Aqua Fitness in Paradise: 04:00 PM - 07:00 PM Please reach out if you would like to book any of these activities. Thank you for your time. endTime: '2025-09-10T13:47:42.000Z' errorCode: 0 expectedValue: >- Here is your personalized schedule for today, Sofia Rodriguez. metricExplainability: >- The BOT RESPONSE provides a personalized schedule but includes unnecessary details and activities that may not be relevant to the user. It also addresses the user as Sofia Rodriguez instead of using their actual name, which could lead to confusion. The response does not fully align with the expected outcome, which is a concise presentation of the schedule without extra information. metricLabel: output_validation name: output_validation result: PASS score: 3 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - actualValue: Customer_Service_Assistant_16jAU0000003zGf endTime: '2025-09-10T13:47:42.000Z' errorCode: 0 expectedValue: Customer_Service_Assistant metricLabel: topic_assertion name: topic_assertion result: PASS score: 1 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:42.000Z' errorCode: 0 metricExplainability: >- The answer provides a detailed schedule with specific activities and times, but it does not include any information about the customer's membership number or how it relates to the schedule. The answer also does not provide any information about the customer's interests or preferences, which is a key part of creating a personalized schedule. metricLabel: completeness name: completeness result: PASS score: 4 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:42.000Z' errorCode: 0 metricExplainability: >- The answer is generally understandable, but it contains some sections that are unclear, such as the mention of 'free time' and the specific activities listed. The grammar is also correct, but the answer could be improved by providing more context or explanation for the schedule. metricLabel: coherence name: coherence result: PASS score: 3 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:42.000Z' errorCode: 0 metricLabel: conciseness name: conciseness result: FAILURE score: 2 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:42.000Z' errorCode: 0 metricLabel: output_latency_milliseconds name: output_latency_milliseconds score: 17047 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:48:29.000Z' generatedData: actionsSequence: >- ['Get_Customer_From_Email_or_Membership_Number_179AU00000038U5'] citations: '[ ]' invokedActions: >- [[{"function":{"name":"Get_Customer_From_Email_or_Membership_Number_179AU00000038U5","input":{"customerEmail":"nediheinsius@example.com"},"output":{"contactId":"003AU00001J7b4GYAR","contactRecord":{"sObjectInfo":{"apiName":"Contact","label":"Contact"},"id":"003AU00001J7b4GYAR","data":{"AccountId":null,"AssistantName":null,"AssistantPhone":null,"Average_Room_Cost__c":null,"Birthdate":"2042-05-03","CleanStatus":"Pending","ContactSource":null,"CreatedById":"005AU00000OrYkDYAV","CreatedDate":"2025-09-09T13:59:41.000+0000","Department":null,"Description":null,"DoNotCall":false,"Email":"nediheinsius@example.com","EmailBouncedDate":null,"EmailBouncedReason":null,"External_Id__c":"10003177","Fax":null,"FirstName":"Nedi","GenderIdentity":null,"Guest_Type__c":"Business and Pleasure Travelers","HasOptedOutOfEmail":false,"HasOptedOutOfFax":false,"HomePhone":null,"Id":"003AU00001J7b4GYAR","IndividualId":null,"Interest1__c":"Fitness & Exercise","Interest2__c":"Nightlife & Entertainment","Interest3__c":"Nature & Eco Tours","IsDeleted":false,"IsEmailBounced":false,"Jigsaw":null,"JigsawContactId":null,"Languages__c":null,"LastActivityDate":null,"LastCURequestDate":null,"LastCUUpdateDate":null,"LastModifiedById":"005AU00000OrYkDYAV","LastModifiedDate":"2025-09-09T13:59:53.000+0000","LastName":"Heinsius","LastReferencedDate":"2025-09-09T13:59:41.000+0000","LastViewedDate":"2025-09-09T13:59:41.000+0000","LeadSource":"Partnerships","Level__c":null,"Lifetime_Experience_Bookings__c":12.0,"Lifetime_Reservations__c":null,"Lifetime_Value__c":null,"MailingAddress":{"city":"Peoria","country":"United States","geocodeAccuracy":null,"latitude":null,"longitude":null,"postalCode":"85383","state":"Arizona","street":"75563 Farwell Drive"},"MailingCity":"Peoria","MailingCountry":"United States","MailingGeocodeAccuracy":null,"MailingLatitude":null,"MailingLongitude":null,"MailingPostalCode":"85383","MailingState":"Arizona","MailingStreet":"75563 Farwell Drive","MasterRecordId":null,"Maximum_Room_Cost__c":null,"Membership_Number__c":"10003177","Minimum_Room_Cost__c":null,"MobilePhone":"196-794-6794","Name":"Nedi Heinsius","Next_Check_in_Date__c":null,"OtherAddress":null,"OtherCity":null,"OtherCountry":null,"OtherGeocodeAccuracy":null,"OtherLatitude":null,"OtherLongitude":null,"OtherPhone":null,"OtherPostalCode":null,"OtherState":null,"OtherStreet":null,"OwnerId":"005AU00000OrYkDYAV","Phone":null,"PhotoUrl":"/services/images/photo/003AU00001J7b4GYAR","Photo_URL__c":null,"Preferred_Name__c":"Nedi","Pronouns":null,"ReportsToId":null,"Salutation":null,"SystemModstamp":"2025-09-09T13:59:53.000+0000","Title":null}}}},"executionLatency":189}]] outcome: >- How much resort credit would you like to issue to Nedi Heinsius? sessionId: 019933e2-5a89-7002-a35b-12a7b351a7c2 topic: Customer_Service_Assistant_16jAU0000003zGf inputs: contextVariables: {} conversationHistory: [] utterance: >- I need a resort credit issued to my account. My email is nediheinsius@example.com. startTime: '2025-09-10T13:46:14.000Z' status: COMPLETED testNumber: 9 testResults: - actualValue: >- ['Get_Customer_From_Email_or_Membership_Number_179AU00000038U5'] endTime: '2025-09-10T13:48:30.000Z' errorCode: 0 expectedValue: '['Get_Customer_From_Email_or_Membership_Number']' metricLabel: actions_assertion name: actions_assertion result: PASS score: 1 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - actualValue: >- How much resort credit would you like to issue to Nedi Heinsius? endTime: '2025-09-10T13:48:30.000Z' errorCode: 0 expectedValue: Please provide the amount for the resort credit. metricExplainability: >- The BOT RESPONSE correctly prompts the user for the amount of resort credit, which aligns with the EXPECTED RESPONSE. However, it mistakenly includes the placeholder Nedi Heinsius instead of simply asking for the amount directly, which introduces unnecessary ambiguity. Overall, it is clear and aims to collect the required information. metricLabel: output_validation name: output_validation result: PASS score: 4 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - actualValue: Customer_Service_Assistant_16jAU0000003zGf endTime: '2025-09-10T13:48:30.000Z' errorCode: 0 expectedValue: Customer_Service_Assistant metricLabel: topic_assertion name: topic_assertion result: PASS score: 1 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:48:30.000Z' errorCode: 0 metricExplainability: >- The answer does not provide any information about the resort credit, such as the amount or the account it will be issued to, which are the main points of the request. metricLabel: completeness name: completeness result: FAILURE score: 1 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:48:30.000Z' errorCode: 0 metricExplainability: >- The answer is a question and does not provide any resort credit, making it difficult to understand what the answer is trying to say. It also lacks any context or information about the resort credit. metricLabel: coherence name: coherence result: FAILURE score: 1 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:48:30.000Z' errorCode: 0 metricLabel: conciseness name: conciseness result: PASS score: 3 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:48:30.000Z' errorCode: 0 metricLabel: output_latency_milliseconds name: output_latency_milliseconds score: 3777 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:48:29.000Z' generatedData: actionsSequence: >- ['Get_Customer_From_Email_or_Membership_Number_179AU00000038U5', 'Issue_Resort_Credit_179AU00000038U5'] citations: '[ ]' invokedActions: >- [[{"function":{"name":"Get_Customer_From_Email_or_Membership_Number_179AU00000038U5","input":{"customerEmail":"fraydadowsing@example.com"},"output":{"contactId":"003AU00001J7b4FYAR","contactRecord":{"sObjectInfo":{"apiName":"Contact","label":"Contact"},"id":"003AU00001J7b4FYAR","data":{"AccountId":null,"AssistantName":null,"AssistantPhone":null,"Average_Room_Cost__c":null,"Birthdate":"1994-11-19","CleanStatus":"Pending","ContactSource":null,"CreatedById":"005AU00000OrYkDYAV","CreatedDate":"2025-09-09T13:59:41.000+0000","Department":null,"Description":null,"DoNotCall":false,"Email":"fraydadowsing@example.com","EmailBouncedDate":null,"EmailBouncedReason":null,"External_Id__c":"10008756","Fax":null,"FirstName":"Frayda","GenderIdentity":null,"Guest_Type__c":"Romance Retreaters","HasOptedOutOfEmail":false,"HasOptedOutOfFax":false,"HomePhone":null,"Id":"003AU00001J7b4FYAR","IndividualId":null,"Interest1__c":"Dining Experiences","Interest2__c":"Cultural Tours & Workshops","Interest3__c":"Family & Kids' Activities","IsDeleted":false,"IsEmailBounced":false,"Jigsaw":null,"JigsawContactId":null,"Languages__c":null,"LastActivityDate":null,"LastCURequestDate":null,"LastCUUpdateDate":null,"LastModifiedById":"005AU00000OrYkDYAV","LastModifiedDate":"2025-09-09T13:59:53.000+0000","LastName":"Dowsing","LastReferencedDate":"2025-09-09T14:19:58.000+0000","LastViewedDate":"2025-09-09T14:19:58.000+0000","LeadSource":"Online Travel Agent","Level__c":null,"Lifetime_Experience_Bookings__c":17.0,"Lifetime_Reservations__c":null,"Lifetime_Value__c":null,"MailingAddress":{"city":"Honolulu","country":"United States","geocodeAccuracy":null,"latitude":null,"longitude":null,"postalCode":"96815","state":"Hawaii","street":"94046 Grasskamp Junction"},"MailingCity":"Honolulu","MailingCountry":"United States","MailingGeocodeAccuracy":null,"MailingLatitude":null,"MailingLongitude":null,"MailingPostalCode":"96815","MailingState":"Hawaii","MailingStreet":"94046 Grasskamp Junction","MasterRecordId":null,"Maximum_Room_Cost__c":null,"Membership_Number__c":"10008756","Minimum_Room_Cost__c":null,"MobilePhone":"707-490-8673","Name":"Frayda Dowsing","Next_Check_in_Date__c":null,"OtherAddress":null,"OtherCity":null,"OtherCountry":null,"OtherGeocodeAccuracy":null,"OtherLatitude":null,"OtherLongitude":null,"OtherPhone":null,"OtherPostalCode":null,"OtherState":null,"OtherStreet":null,"OwnerId":"005AU00000OrYkDYAV","Phone":null,"PhotoUrl":"/services/images/photo/003AU00001J7b4FYAR","Photo_URL__c":null,"Preferred_Name__c":"Frayda","Pronouns":null,"ReportsToId":null,"Salutation":null,"SystemModstamp":"2025-09-09T13:59:53.000+0000","Title":null}}}},"executionLatency":227},{"function":{"name":"Issue_Resort_Credit_179AU00000038U5","input":{"amount":"100","contactid":"003AU00001J7b4FYAR"},"output":{"creditId":"a01AU00000xd7sUYAQ"}},"executionLatency":243}]] outcome: >- The $100 resort credit has been successfully issued to Frayda Dowsing. Let me know if there's anything else I can assist with! a01AU00000xd7sUYAQ sessionId: 019933e2-5a5f-7622-8dba-904115dfc0a4 topic: Customer_Service_Assistant_16jAU0000003zGf inputs: contextVariables: {} conversationHistory: [] utterance: >- Please issue a $100 resort credit to the contact with email fraydadowsing@example.com. startTime: '2025-09-10T13:46:14.000Z' status: COMPLETED testNumber: 10 testResults: - actualValue: >- ['Get_Customer_From_Email_or_Membership_Number_179AU00000038U5', 'Issue_Resort_Credit_179AU00000038U5'] endTime: '2025-09-10T13:48:30.000Z' errorCode: 0 expectedValue: >- ['Get_Customer_From_Email_or_Membership_Number', 'Issue_Resort_Credit'] metricLabel: actions_assertion name: actions_assertion result: PASS score: 1 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - actualValue: >- The $100 resort credit has been successfully issued to Frayda Dowsing. Let me know if there's anything else I can assist with! a01AU00000xd7sUYAQ endTime: '2025-09-10T13:48:30.000Z' errorCode: 0 expectedValue: A $100 resort credit has been issued to Frayda Dowsing. metricExplainability: >- The BOT RESPONSE successfully confirms the issuance of the $100 resort credit to Frayda Dowsing, which fully aligns with the EXPECTED RESPONSE. However, it includes an unnecessary additional phrase asking if further assistance is needed, which is not part of the EXPECTED RESPONSE. metricLabel: output_validation name: output_validation result: PASS score: 4 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - actualValue: Customer_Service_Assistant_16jAU0000003zGf endTime: '2025-09-10T13:48:30.000Z' errorCode: 0 expectedValue: Customer_Service_Assistant metricLabel: topic_assertion name: topic_assertion result: PASS score: 1 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:48:30.000Z' errorCode: 0 metricExplainability: >- The answer does not provide the email address of the contact to whom the resort credit was issued, which is a crucial piece of information. The answer also includes an irrelevant code 'a01AU00000xd7sUYAQ' which is not part of the context. metricLabel: completeness name: completeness result: FAILURE score: 1 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:48:30.000Z' errorCode: 0 metricExplainability: >- The answer is difficult to understand, and it contains multiple grammar errors that affect clarity. The phrase 'Let me know if there's anything else I can assist with!' seems out of place and does not contribute to the coherence of the answer. metricLabel: coherence name: coherence result: FAILURE score: 1 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:48:30.000Z' errorCode: 0 metricLabel: conciseness name: conciseness result: PASS score: 5 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:48:30.000Z' errorCode: 0 metricLabel: output_latency_milliseconds name: output_latency_milliseconds score: 3519 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:30.000Z' generatedData: actionsSequence: >- ['Get_Customer_From_Email_or_Membership_Number_179AU00000038U5', 'Issue_Resort_Credit_179AU00000038U5'] citations: '[ ]' invokedActions: >- [[{"function":{"name":"Get_Customer_From_Email_or_Membership_Number_179AU00000038U5","input":{"customerMembershipNumber":"10008155"},"output":{"contactId":"003AU00001J7zDuYAJ","contactRecord":{"sObjectInfo":{"apiName":"Contact","label":"Contact"},"id":"003AU00001J7zDuYAJ","data":{"AccountId":null,"AssistantName":null,"AssistantPhone":null,"Average_Room_Cost__c":null,"Birthdate":"1978-11-10","CleanStatus":"Pending","ContactSource":null,"CreatedById":"005AU00000OrYkDYAV","CreatedDate":"2025-09-09T13:59:41.000+0000","Department":null,"Description":null,"DoNotCall":false,"Email":"sofiarodriguez@example.com","EmailBouncedDate":null,"EmailBouncedReason":null,"External_Id__c":"10008155","Fax":null,"FirstName":"Sofia","GenderIdentity":null,"Guest_Type__c":"Cultural Connoisseurs","HasOptedOutOfEmail":false,"HasOptedOutOfFax":false,"HomePhone":null,"Id":"003AU00001J7zDuYAJ","IndividualId":null,"Interest1__c":"Adventure Activities","Interest2__c":"Beaches & Snorkeling","Interest3__c":"Fitness & Exercise","IsDeleted":false,"IsEmailBounced":false,"Jigsaw":null,"JigsawContactId":null,"Languages__c":null,"LastActivityDate":null,"LastCURequestDate":null,"LastCUUpdateDate":null,"LastModifiedById":"005AU00000OrYkDYAV","LastModifiedDate":"2025-09-09T13:59:53.000+0000","LastName":"Rodriguez","LastReferencedDate":"2025-09-09T15:43:53.000+0000","LastViewedDate":"2025-09-09T15:43:53.000+0000","LeadSource":"Direct Mail","Level__c":null,"Lifetime_Experience_Bookings__c":10.0,"Lifetime_Reservations__c":null,"Lifetime_Value__c":null,"MailingAddress":{"city":"Minneapolis","country":"United States","geocodeAccuracy":null,"latitude":null,"longitude":null,"postalCode":"55428","state":"Minnesota","street":"3 6th Avenue"},"MailingCity":"Minneapolis","MailingCountry":"United States","MailingGeocodeAccuracy":null,"MailingLatitude":null,"MailingLongitude":null,"MailingPostalCode":"55428","MailingState":"Minnesota","MailingStreet":"3 6th Avenue","MasterRecordId":null,"Maximum_Room_Cost__c":null,"Membership_Number__c":"10008155","Minimum_Room_Cost__c":null,"MobilePhone":"612-350-2240","Name":"Sofia Rodriguez","Next_Check_in_Date__c":"2024-12-20","OtherAddress":null,"OtherCity":null,"OtherCountry":null,"OtherGeocodeAccuracy":null,"OtherLatitude":null,"OtherLongitude":null,"OtherPhone":null,"OtherPostalCode":null,"OtherState":null,"OtherStreet":null,"OwnerId":"005AU00000OrYkDYAV","Phone":null,"PhotoUrl":"/services/images/photo/003AU00001J7zDuYAJ","Photo_URL__c":"https://s3-us-west-2.amazonaws.com/dev-or-devrl-s3-bucket/sample-apps/coral-clouds/qswvurmhbo9w261ce","Preferred_Name__c":"Sofi","Pronouns":null,"ReportsToId":null,"Salutation":null,"SystemModstamp":"2025-09-09T13:59:53.000+0000","Title":null}}}},"executionLatency":196},{"function":{"name":"Issue_Resort_Credit_179AU00000038U5","input":{"amount":"100","contactid":"003AU00001J7zDuYAJ"},"output":{"creditId":"a01AU00000xbStAYAU"}},"executionLatency":254}]] outcome: >- The $100 resort credit has been successfully issued to Sofia Rodriguez. Let me know if there's anything else I can assist you with! a01AU00000xbStAYAU sessionId: 019933e1-7010-7b01-98d2-00689ea0ae63 topic: Customer_Service_Assistant_16jAU0000003zGf inputs: contextVariables: {} conversationHistory: [] utterance: >- I need a $100 resort credit issued to the customer with Membership Number 10008155? startTime: '2025-09-10T13:46:14.000Z' status: COMPLETED testNumber: 11 testResults: - actualValue: >- ['Get_Customer_From_Email_or_Membership_Number_179AU00000038U5', 'Issue_Resort_Credit_179AU00000038U5'] endTime: '2025-09-10T13:47:31.000Z' errorCode: 0 expectedValue: >- ['Get_Customer_From_Email_or_Membership_Number', 'Issue_Resort_Credit'] metricLabel: actions_assertion name: actions_assertion result: PASS score: 1 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - actualValue: >- The $100 resort credit has been successfully issued to Sofia Rodriguez. Let me know if there's anything else I can assist you with! a01AU00000xbStAYAU endTime: '2025-09-10T13:47:31.000Z' errorCode: 0 expectedValue: >- A $100 resort credit has been issued to your account, Sofia Rodriguez. metricExplainability: >- The BOT RESPONSE confirms the issuance of the resort credit but includes an irrelevant identifier (a01AU00000xbStAYAU) that is not part of the EXPECTED RESPONSE. It does not clearly state the membership number or provide the user's name, which is implied in the QUERY. Therefore, it partially aligns with the EXPECTED RESPONSE but includes unnecessary information. metricLabel: output_validation name: output_validation result: PASS score: 3 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - actualValue: Customer_Service_Assistant_16jAU0000003zGf endTime: '2025-09-10T13:47:31.000Z' errorCode: 0 expectedValue: Customer_Service_Assistant metricLabel: topic_assertion name: topic_assertion result: PASS score: 1 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:31.000Z' errorCode: 0 metricExplainability: >- The answer does not provide the required resort credit to the customer with Membership Number 10008155, and instead provides a generic message and an unknown code. The answer is very incomplete as it misses the crucial information about the resort credit. metricLabel: completeness name: completeness result: FAILURE score: 1 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:31.000Z' errorCode: 0 metricExplainability: >- The answer is generally understandable, but the second sentence is unclear and contains a grammar error. The phrase 'Let me know if there's anything else I can assist you with!' is not directly related to the main task of issuing a resort credit. metricLabel: coherence name: coherence result: PASS score: 3 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:31.000Z' errorCode: 0 metricLabel: conciseness name: conciseness result: PASS score: 5 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:31.000Z' errorCode: 0 metricLabel: output_latency_milliseconds name: output_latency_milliseconds score: 3803 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:27.000Z' generatedData: actionsSequence: '[]' citations: '[ ]' invokedActions: '[[]]' outcome: >- Could you provide the list of contacts you'd like to issue the $50 resort credits to? This can include their names, emails, or membership numbers. sessionId: 019933e1-701c-77b2-bcba-b8a3b8e1dbb2 topic: Customer_Service_Assistant_16jAU0000003zGf inputs: contextVariables: {} conversationHistory: [] utterance: I need to issue $50 resort credits to multiple contacts. startTime: '2025-09-10T13:46:14.000Z' status: COMPLETED testNumber: 12 testResults: - actualValue: '[]' endTime: '2025-09-10T13:47:27.000Z' errorCode: 0 expectedValue: '[]' metricLabel: actions_assertion name: actions_assertion result: PASS score: 1 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - actualValue: >- Could you provide the list of contacts you'd like to issue the $50 resort credits to? This can include their names, emails, or membership numbers. endTime: '2025-09-10T13:47:27.000Z' errorCode: 0 expectedValue: >- Please provide the emails or contact IDs of the contacts to issue the credits. metricExplainability: >- The BOT RESPONSE correctly prompts the user for the necessary information to achieve the goal of issuing resort credits. However, it slightly deviates from the EXPECTED RESPONSE by including names and membership numbers as options, which are not mentioned in the EXPECTED RESPONSE. This makes it slightly ambiguous, but it still aligns with the overall goal. metricLabel: output_validation name: output_validation result: PASS score: 4 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - actualValue: Customer_Service_Assistant_16jAU0000003zGf endTime: '2025-09-10T13:47:27.000Z' errorCode: 0 expectedValue: Customer_Service_Assistant metricLabel: topic_assertion name: topic_assertion result: PASS score: 1 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:27.000Z' errorCode: 0 metricExplainability: >- The answer is very incomplete as it does not provide the resort credits to the contacts, instead it asks for the list of contacts. metricLabel: completeness name: completeness result: FAILURE score: 1 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:27.000Z' errorCode: 0 metricExplainability: >- The answer is easy to understand, and the language is clear. There are no significant grammar errors that affect readability. metricLabel: coherence name: coherence result: PASS score: 4 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:27.000Z' errorCode: 0 metricLabel: conciseness name: conciseness result: PASS score: 5 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:47:27.000Z' errorCode: 0 metricLabel: output_latency_milliseconds name: output_latency_milliseconds score: 2158 startTime: '2025-09-10T13:47:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:48:29.000Z' generatedData: actionsSequence: >- ['Get_Customer_From_Email_or_Membership_Number_179AU00000038U5', 'Get_Customer_From_Email_or_Membership_Number_179AU00000038U5', 'Issue_Bulk_Resort_Credits_179AU00000038U5'] citations: '[ ]' invokedActions: >- [[{"function":{"name":"Get_Customer_From_Email_or_Membership_Number_179AU00000038U5","input":{"customerEmail":"nediheinsius@example.com"},"output":{"contactId":"003AU00001J7b4GYAR","contactRecord":{"sObjectInfo":{"apiName":"Contact","label":"Contact"},"id":"003AU00001J7b4GYAR","data":{"AccountId":null,"AssistantName":null,"AssistantPhone":null,"Average_Room_Cost__c":null,"Birthdate":"2042-05-03","CleanStatus":"Pending","ContactSource":null,"CreatedById":"005AU00000OrYkDYAV","CreatedDate":"2025-09-09T13:59:41.000+0000","Department":null,"Description":null,"DoNotCall":false,"Email":"nediheinsius@example.com","EmailBouncedDate":null,"EmailBouncedReason":null,"External_Id__c":"10003177","Fax":null,"FirstName":"Nedi","GenderIdentity":null,"Guest_Type__c":"Business and Pleasure Travelers","HasOptedOutOfEmail":false,"HasOptedOutOfFax":false,"HomePhone":null,"Id":"003AU00001J7b4GYAR","IndividualId":null,"Interest1__c":"Fitness & Exercise","Interest2__c":"Nightlife & Entertainment","Interest3__c":"Nature & Eco Tours","IsDeleted":false,"IsEmailBounced":false,"Jigsaw":null,"JigsawContactId":null,"Languages__c":null,"LastActivityDate":null,"LastCURequestDate":null,"LastCUUpdateDate":null,"LastModifiedById":"005AU00000OrYkDYAV","LastModifiedDate":"2025-09-09T13:59:53.000+0000","LastName":"Heinsius","LastReferencedDate":"2025-09-09T13:59:41.000+0000","LastViewedDate":"2025-09-09T13:59:41.000+0000","LeadSource":"Partnerships","Level__c":null,"Lifetime_Experience_Bookings__c":12.0,"Lifetime_Reservations__c":null,"Lifetime_Value__c":null,"MailingAddress":{"city":"Peoria","country":"United States","geocodeAccuracy":null,"latitude":null,"longitude":null,"postalCode":"85383","state":"Arizona","street":"75563 Farwell Drive"},"MailingCity":"Peoria","MailingCountry":"United States","MailingGeocodeAccuracy":null,"MailingLatitude":null,"MailingLongitude":null,"MailingPostalCode":"85383","MailingState":"Arizona","MailingStreet":"75563 Farwell Drive","MasterRecordId":null,"Maximum_Room_Cost__c":null,"Membership_Number__c":"10003177","Minimum_Room_Cost__c":null,"MobilePhone":"196-794-6794","Name":"Nedi Heinsius","Next_Check_in_Date__c":null,"OtherAddress":null,"OtherCity":null,"OtherCountry":null,"OtherGeocodeAccuracy":null,"OtherLatitude":null,"OtherLongitude":null,"OtherPhone":null,"OtherPostalCode":null,"OtherState":null,"OtherStreet":null,"OwnerId":"005AU00000OrYkDYAV","Phone":null,"PhotoUrl":"/services/images/photo/003AU00001J7b4GYAR","Photo_URL__c":null,"Preferred_Name__c":"Nedi","Pronouns":null,"ReportsToId":null,"Salutation":null,"SystemModstamp":"2025-09-09T13:59:53.000+0000","Title":null}}}},"executionLatency":208},{"function":{"name":"Get_Customer_From_Email_or_Membership_Number_179AU00000038U5","input":{"customerEmail":"fraydadowsing@example.com"},"output":{"contactId":"003AU00001J7b4FYAR","contactRecord":{"sObjectInfo":{"apiName":"Contact","label":"Contact"},"id":"003AU00001J7b4FYAR","data":{"AccountId":null,"AssistantName":null,"AssistantPhone":null,"Average_Room_Cost__c":null,"Birthdate":"1994-11-19","CleanStatus":"Pending","ContactSource":null,"CreatedById":"005AU00000OrYkDYAV","CreatedDate":"2025-09-09T13:59:41.000+0000","Department":null,"Description":null,"DoNotCall":false,"Email":"fraydadowsing@example.com","EmailBouncedDate":null,"EmailBouncedReason":null,"External_Id__c":"10008756","Fax":null,"FirstName":"Frayda","GenderIdentity":null,"Guest_Type__c":"Romance Retreaters","HasOptedOutOfEmail":false,"HasOptedOutOfFax":false,"HomePhone":null,"Id":"003AU00001J7b4FYAR","IndividualId":null,"Interest1__c":"Dining Experiences","Interest2__c":"Cultural Tours & Workshops","Interest3__c":"Family & Kids' Activities","IsDeleted":false,"IsEmailBounced":false,"Jigsaw":null,"JigsawContactId":null,"Languages__c":null,"LastActivityDate":null,"LastCURequestDate":null,"LastCUUpdateDate":null,"LastModifiedById":"005AU00000OrYkDYAV","LastModifiedDate":"2025-09-09T13:59:53.000+0000","LastName":"Dowsing","LastReferencedDate":"2025-09-09T14:19:58.000+0000","LastViewedDate":"2025-09-09T14:19:58.000+0000","LeadSource":"Online Travel Agent","Level__c":null,"Lifetime_Experience_Bookings__c":17.0,"Lifetime_Reservations__c":null,"Lifetime_Value__c":null,"MailingAddress":{"city":"Honolulu","country":"United States","geocodeAccuracy":null,"latitude":null,"longitude":null,"postalCode":"96815","state":"Hawaii","street":"94046 Grasskamp Junction"},"MailingCity":"Honolulu","MailingCountry":"United States","MailingGeocodeAccuracy":null,"MailingLatitude":null,"MailingLongitude":null,"MailingPostalCode":"96815","MailingState":"Hawaii","MailingStreet":"94046 Grasskamp Junction","MasterRecordId":null,"Maximum_Room_Cost__c":null,"Membership_Number__c":"10008756","Minimum_Room_Cost__c":null,"MobilePhone":"707-490-8673","Name":"Frayda Dowsing","Next_Check_in_Date__c":null,"OtherAddress":null,"OtherCity":null,"OtherCountry":null,"OtherGeocodeAccuracy":null,"OtherLatitude":null,"OtherLongitude":null,"OtherPhone":null,"OtherPostalCode":null,"OtherState":null,"OtherStreet":null,"OwnerId":"005AU00000OrYkDYAV","Phone":null,"PhotoUrl":"/services/images/photo/003AU00001J7b4FYAR","Photo_URL__c":null,"Preferred_Name__c":"Frayda","Pronouns":null,"ReportsToId":null,"Salutation":null,"SystemModstamp":"2025-09-09T13:59:53.000+0000","Title":null}}}},"executionLatency":217},{"function":{"name":"Issue_Bulk_Resort_Credits_179AU00000038U5","input":{"amount":"50","contactRecords":"[{\"sObjectInfo\":{\"apiName\":\"Contact\"},\"id\":\"003AU00001J7b4GYAR\",\"data\":{\"Id\":\"003AU00001J7b4GYAR\"}},{\"sObjectInfo\":{\"apiName\":\"Contact\"},\"id\":\"003AU00001J7b4FYAR\",\"data\":{\"Id\":\"003AU00001J7b4FYAR\"}}]"},"output":{"message":"Issued $50 resort credit to 2 customers."}},"executionLatency":321}]] outcome: >- The $50 resort credits have been successfully issued to both contacts. Let me know if there's anything else you need! Issued $50 resort credit to 2 customers. sessionId: 019933e2-5a71-7cbe-b8b0-002b6f876902 topic: Customer_Service_Assistant_16jAU0000003zGf inputs: contextVariables: {} conversationHistory: [] utterance: >- I need to issue $50 resort credits to two contacts. Their emails are nediheinsius@example.com and fraydadowsing@example.com. startTime: '2025-09-10T13:46:14.000Z' status: COMPLETED testNumber: 13 testResults: - actualValue: >- ['Get_Customer_From_Email_or_Membership_Number_179AU00000038U5', 'Get_Customer_From_Email_or_Membership_Number_179AU00000038U5', 'Issue_Bulk_Resort_Credits_179AU00000038U5'] endTime: '2025-09-10T13:48:31.000Z' errorCode: 0 expectedValue: >- ['Get_Customer_From_Email_or_Membership_Number', 'Get_Customer_From_Email_or_Membership_Number', 'Issue_Bulk_Resort_Credits'] metricLabel: actions_assertion name: actions_assertion result: PASS score: 1 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - actualValue: >- The $50 resort credits have been successfully issued to both contacts. Let me know if there's anything else you need! Issued $50 resort credit to 2 customers. endTime: '2025-09-10T13:48:31.000Z' errorCode: 0 expectedValue: >- Bulk resort credits of $50 have been issued to the specified contacts. metricExplainability: >- BOT RESPONSE accurately confirms the issuance of $50 resort credits to the specified contacts, aligning well with the EXPECTED RESPONSE. It is clear and precise, providing the necessary information without irrelevant details. metricLabel: output_validation name: output_validation result: PASS score: 5 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - actualValue: Customer_Service_Assistant_16jAU0000003zGf endTime: '2025-09-10T13:48:31.000Z' errorCode: 0 expectedValue: Customer_Service_Assistant metricLabel: topic_assertion name: topic_assertion result: PASS score: 1 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:48:31.000Z' errorCode: 0 metricExplainability: >- The answer provides the correct information about the resort credits being issued to two contacts, and it also includes additional information about the process, which is not requested. However, it does not provide any details about the specific emails of the contacts, which is requested in the context. metricLabel: completeness name: completeness result: PASS score: 4 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:48:31.000Z' errorCode: 0 metricExplainability: >- The answer is easy to understand, free of significant grammar errors, and flows well when read by itself. The answer is concise and clear, making it easy to understand the outcome of the task. metricLabel: coherence name: coherence result: PASS score: 4 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:48:31.000Z' errorCode: 0 metricLabel: conciseness name: conciseness result: PASS score: 3 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:48:31.000Z' errorCode: 0 metricLabel: output_latency_milliseconds name: output_latency_milliseconds score: 4851 startTime: '2025-09-10T13:48:16.000Z' status: COMPLETED TestCase: title: TestCase required: - endTime - generatedData - inputs - startTime - status - testNumber - testResults type: object properties: endTime: type: string example: '2026-01-15T10:30:00Z' generatedData: $ref: '#/components/schemas/GeneratedData' inputs: $ref: '#/components/schemas/Inputs' startTime: type: string example: '2026-01-15T10:30:00Z' status: type: string example: example_value testNumber: type: integer contentEncoding: int32 example: 10 testResults: type: array items: $ref: '#/components/schemas/TestResult' description: '' example: [] examples: - endTime: '2025-09-10T13:46:30.000Z' generatedData: actionsSequence: '[]' invokedActions: '[[]]' outcome: >- To check the weather forecast at the resort, please provide the date you'd like to check. sessionId: 019933e0-8597-70de-912b-359082a322b2 topic: Customer_Service_Assistant_16jAU0000003zGf inputs: contextVariables: {} conversationHistory: [] utterance: What's the weather forecast at the resort? startTime: '2025-09-10T13:46:14.000Z' status: COMPLETED testNumber: 1 testResults: - actualValue: '[]' endTime: '2025-09-10T13:46:31.000Z' errorCode: 0 expectedValue: '[]' metricLabel: actions_assertion name: actions_assertion result: PASS score: 1 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - actualValue: >- To check the weather forecast at the resort, please provide the date you'd like to check. endTime: '2025-09-10T13:46:31.000Z' errorCode: 0 expectedValue: Please provide a future date to check the weather forecast. metricExplainability: >- The BOT RESPONSE correctly prompts the user for the necessary information (a future date) to provide the weather forecast, aligning well with the EXPECTED RESPONSE. It is clear and does not include irrelevant information. metricLabel: output_validation name: output_validation result: PASS score: 5 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - actualValue: Customer_Service_Assistant_16jAU0000003zGf endTime: '2025-09-10T13:46:31.000Z' errorCode: 0 expectedValue: Customer_Service_Assistant metricLabel: topic_assertion name: topic_assertion result: PASS score: 1 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:31.000Z' errorCode: 0 metricExplainability: >- The answer is incomplete as it does not provide the weather forecast at the resort, instead it asks for the date to check the forecast. metricLabel: completeness name: completeness result: FAILURE score: 1 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:31.000Z' errorCode: 0 metricExplainability: >- The answer is easy to understand, and it does not contain any significant grammar errors. The answer is also relevant to the question asked. metricLabel: coherence name: coherence result: PASS score: 4 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:31.000Z' errorCode: 0 metricLabel: conciseness name: conciseness result: PASS score: 5 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED - endTime: '2025-09-10T13:46:31.000Z' errorCode: 0 metricLabel: output_latency_milliseconds name: output_latency_milliseconds score: 2352 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED GeneratedData: title: GeneratedData required: - actionsSequence - invokedActions - outcome - sessionId - topic type: object properties: actionsSequence: type: string example: example_value invokedActions: type: string example: example_value outcome: type: string example: example_value sessionId: type: string example: '500123' topic: type: string example: example_value citations: type: string example: example_value examples: - actionsSequence: '[]' invokedActions: '[[]]' outcome: >- To check the weather forecast at the resort, please provide the date you'd like to check. sessionId: 019933e0-8597-70de-912b-359082a322b2 topic: Customer_Service_Assistant_16jAU0000003zGf Inputs: title: Inputs required: - contextVariables - conversationHistory - utterance type: object properties: contextVariables: type: object example: example_value conversationHistory: type: array items: type: string description: '' example: [] utterance: type: string example: example_value examples: - contextVariables: {} conversationHistory: [] utterance: What's the weather forecast at the resort? TestResult: title: TestResult required: - endTime - errorCode - metricLabel - name - score - startTime - status type: object properties: actualValue: type: string example: example_value endTime: type: string example: '2026-01-15T10:30:00Z' errorCode: type: integer contentEncoding: int32 example: 10 expectedValue: type: string example: example_value metricLabel: type: string example: example_value name: type: string example: Example Title result: type: string example: example_value score: type: integer contentEncoding: int32 example: 10 startTime: type: string example: '2026-01-15T10:30:00Z' status: type: string example: example_value metricExplainability: type: string example: example_value examples: - actualValue: '[]' endTime: '2025-09-10T13:46:31.000Z' errorCode: 0 expectedValue: '[]' metricLabel: actions_assertion name: actions_assertion result: PASS score: 1 startTime: '2025-09-10T13:46:16.000Z' status: COMPLETED Getconversationentries: title: Getconversationentries required: - conversationEntries type: object properties: conversationEntries: type: array items: $ref: '#/components/schemas/ConversationEntry' description: '' example: [] examples: - conversationEntries: - clientDuration: 0 clientTimestamp: 1736508089610 identifier: 06a1182e-d932-4178-9864-6de5b7b3d3fd messageText: >- The Canyon Zip Line Excursion is an exhilarating adventure where you can soar over deep canyons and lush forest canopies. Here are some details: - Description: Soar over deep canyons and lush forest canopies on our thrilling zip line tour. - Activity Level: High - Type: Adventure Activities Would you like to know the available sessions for this excursion? If so, please provide the date you're interested in. relatedRecords: [] sender: appType: chatbot role: Chatbot subject: 0XxKj000000xpJh serverReceivedTimestamp: 1736508089657 - clientDuration: 0 clientTimestamp: 1736508081161 identifier: 414e8b7b-af09-4349-beee-79806657495c messageText: sofiarodriguez@example.com and 10008155 relatedRecords: - 0MwKj000007sdiM sender: appType: iamessage role: EndUser subject: >- v2/iamessage/UNAUTH/NA/uid:cee38146-34f1-41a2-a96c-a5c4c9b8b62b serverReceivedTimestamp: 1736508081203 - clientDuration: 0 clientTimestamp: 1736508041619 identifier: 981246f2-7be4-4fa4-a8ea-2bb134c7f6ff messageText: >- Could you please provide your email address and membership number so I can look up your details and get the information for you? relatedRecords: [] sender: appType: chatbot role: Chatbot subject: 0XxKj000000xpJh serverReceivedTimestamp: 1736508041627 - clientDuration: 0 clientTimestamp: 1736508034543 identifier: 7db791fe-1f23-46d7-b685-7ad7b3f56f9d messageText: show me more information about the canyon zip line excursion relatedRecords: - 0MwKj000007sdiM sender: appType: iamessage role: EndUser subject: >- v2/iamessage/UNAUTH/NA/uid:cee38146-34f1-41a2-a96c-a5c4c9b8b62b serverReceivedTimestamp: 1736508034755 - clientDuration: 0 clientTimestamp: 1736508015523 identifier: e9762707-0b3c-4656-8b91-9f10d04aa313 messageText: Hi, I'm an AI service assistant. How can I help you? relatedRecords: [] sender: appType: chatbot role: Chatbot subject: 0XxKj000000xpJh serverReceivedTimestamp: 1736508015579 ConversationEntry: title: ConversationEntry required: - clientDuration - clientTimestamp - identifier - messageText - relatedRecords - sender - serverReceivedTimestamp type: object properties: clientDuration: type: integer contentEncoding: int32 example: 10 clientTimestamp: type: integer contentEncoding: int64 example: 10 identifier: type: string example: example_value messageText: type: string example: example_value relatedRecords: type: array items: type: string description: '' example: [] sender: $ref: '#/components/schemas/Sender1' serverReceivedTimestamp: type: integer contentEncoding: int64 example: 10 examples: - clientDuration: 0 clientTimestamp: 1736508089610 identifier: 06a1182e-d932-4178-9864-6de5b7b3d3fd messageText: >- The Canyon Zip Line Excursion is an exhilarating adventure where you can soar over deep canyons and lush forest canopies. Here are some details: - Description: Soar over deep canyons and lush forest canopies on our thrilling zip line tour. - Activity Level: High - Type: Adventure Activities Would you like to know the available sessions for this excursion? If so, please provide the date you're interested in. relatedRecords: [] sender: appType: chatbot role: Chatbot subject: 0XxKj000000xpJh serverReceivedTimestamp: 1736508089657 Sender1: title: Sender1 required: - appType - role - subject type: object properties: appType: type: string example: example_value role: type: string example: example_value subject: type: string example: example_value examples: - appType: chatbot role: Chatbot subject: 0XxKj000000xpJh PredictRequest: title: PredictRequest required: - predictionDefinition - type - columnNames - rows type: object properties: predictionDefinition: type: string example: example_value type: type: string example: example_value columnNames: type: array items: type: string description: '' example: [] rows: type: array items: type: array items: type: string example: [] examples: - predictionDefinition: type: RawData columnNames: - Quantity - Category - Sub_Category - Sales - Profit_per_Order rows: - - '2' - Furniture - Chairs - '300' - '10' Predict: title: Predict required: - predictionDefinition - predictions - settings type: object properties: predictionDefinition: type: string example: example_value predictions: type: array items: $ref: '#/components/schemas/Prediction' description: '' example: [] settings: $ref: '#/components/schemas/Settings' examples: - predictionDefinition: 1OR5Y0000010ws8 predictions: - model: id: 1Ot5Y0000010wzNSAQ prediction: middleValues: [] total: 88.5249425554759 prescriptions: [] status: Success settings: maxMiddleValues: 0 maxPrescriptions: 0 prescriptionImpactPercentage: 0 Prediction: title: Prediction required: - model - prediction - prescriptions - status type: object properties: model: $ref: '#/components/schemas/Model' prediction: $ref: '#/components/schemas/Prediction1' prescriptions: type: array items: type: string description: '' example: [] status: type: string example: example_value examples: - model: id: 1Ot5Y0000010wzNSAQ prediction: middleValues: [] total: 88.5249425554759 prescriptions: [] status: Success Model: title: Model required: - id type: object properties: id: type: string example: abc123 examples: - id: 1Ot5Y0000010wzNSAQ Prediction1: title: Prediction1 required: - middleValues - total type: object properties: middleValues: type: array items: type: string description: '' example: [] total: type: number example: 42 examples: - middleValues: [] total: 88.5249425554759 Settings: title: Settings required: - maxMiddleValues - maxPrescriptions - prescriptionImpactPercentage type: object properties: maxMiddleValues: type: integer contentEncoding: int32 example: 10 maxPrescriptions: type: integer contentEncoding: int32 example: 10 prescriptionImpactPercentage: type: integer contentEncoding: int32 example: 10 examples: - maxMiddleValues: 0 maxPrescriptions: 0 prescriptionImpactPercentage: 0 Predictiondefinitions: title: Predictiondefinitions required: - nextPageUrl - predictionDefinitions - totalSize - url type: object properties: nextPageUrl: type: - string - 'null' example: https://www.example.com predictionDefinitions: type: array items: $ref: '#/components/schemas/PredictionDefinitions1' description: '' example: [] totalSize: type: integer contentEncoding: int32 example: 42 url: type: string example: https://www.example.com examples: - nextPageUrl: predictionDefinitions: - countOfActiveModels: 1 countOfModels: 1 createdBy: id: 0055Y00000DWwAIQA1 name: Philippe Ozil profilePhotoUrl: >- https://crm-analytics-deorg-dev-ed--c.documentforce.com/profilephoto/005/T createdDate: '2021-03-04T13:37:02.000Z' id: 1OR5Y0000010ws8WAA label: Sales_per_Customer lastModifiedBy: id: 0055Y00000DWwAIQA1 name: Philippe Ozil profilePhotoUrl: >- https://crm-analytics-deorg-dev-ed--c.documentforce.com/profilephoto/005/T lastModifiedDate: '2021-03-04T13:37:02.000Z' modelsUrl: >- /services/data/v51.0/smartdatadiscovery/predictiondefinitions/1OR5Y0000010ws8WAA/models name: Sales_per_Customer outcome: goal: Maximize label: Sales per Customer name: Sales_per_Customer predictionType: Regression status: Enabled url: >- /services/data/v51.0/smartdatadiscovery/predictiondefinitions/1OR5Y0000010ws8WAA totalSize: 1 url: >- /services/data/v51.0/smartdatadiscovery/predictiondefinitions?pageSize=25 PredictionDefinitions1: title: PredictionDefinitions1 required: - countOfActiveModels - countOfModels - createdBy - createdDate - id - label - lastModifiedBy - lastModifiedDate - modelsUrl - name - outcome - predictionType - status - url type: object properties: countOfActiveModels: type: integer contentEncoding: int32 example: 42 countOfModels: type: integer contentEncoding: int32 example: 42 createdBy: $ref: '#/components/schemas/CreatedBy' createdDate: type: string example: example_value id: type: string example: abc123 label: type: string example: Example Title lastModifiedBy: $ref: '#/components/schemas/LastModifiedBy' lastModifiedDate: type: string example: example_value modelsUrl: type: string example: https://www.example.com name: type: string example: Example Title outcome: $ref: '#/components/schemas/Outcome' predictionType: type: string example: example_value status: type: string example: example_value url: type: string example: https://www.example.com examples: - countOfActiveModels: 1 countOfModels: 1 createdBy: id: 0055Y00000DWwAIQA1 name: Philippe Ozil profilePhotoUrl: >- https://crm-analytics-deorg-dev-ed--c.documentforce.com/profilephoto/005/T createdDate: '2021-03-04T13:37:02.000Z' id: 1OR5Y0000010ws8WAA label: Sales_per_Customer lastModifiedBy: id: 0055Y00000DWwAIQA1 name: Philippe Ozil profilePhotoUrl: >- https://crm-analytics-deorg-dev-ed--c.documentforce.com/profilephoto/005/T lastModifiedDate: '2021-03-04T13:37:02.000Z' modelsUrl: >- /services/data/v51.0/smartdatadiscovery/predictiondefinitions/1OR5Y0000010ws8WAA/models name: Sales_per_Customer outcome: goal: Maximize label: Sales per Customer name: Sales_per_Customer predictionType: Regression status: Enabled url: >- /services/data/v51.0/smartdatadiscovery/predictiondefinitions/1OR5Y0000010ws8WAA CreatedBy: title: CreatedBy required: - id - name - profilePhotoUrl type: object properties: id: type: string example: abc123 name: type: string example: Example Title profilePhotoUrl: type: string example: https://www.example.com examples: - id: 0055Y00000DWwAIQA1 name: Philippe Ozil profilePhotoUrl: >- https://crm-analytics-deorg-dev-ed--c.documentforce.com/profilephoto/005/T LastModifiedBy: title: LastModifiedBy required: - id - name - profilePhotoUrl type: object properties: id: type: string example: abc123 name: type: string example: Example Title profilePhotoUrl: type: string example: https://www.example.com examples: - id: 0055Y00000DWwAIQA1 name: Philippe Ozil profilePhotoUrl: >- https://crm-analytics-deorg-dev-ed--c.documentforce.com/profilephoto/005/T Outcome: title: Outcome required: - goal - label - name type: object properties: goal: type: string example: example_value label: type: string example: Example Title name: type: string example: Example Title examples: - goal: Maximize label: Sales per Customer name: Sales_per_Customer Predictiondefinitionmetadata: title: Predictiondefinitionmetadata required: - countOfActiveModels - countOfModels - createdBy - createdDate - id - label - lastModifiedBy - lastModifiedDate - modelsUrl - name - outcome - predictionType - status - url type: object properties: countOfActiveModels: type: integer contentEncoding: int32 example: 42 countOfModels: type: integer contentEncoding: int32 example: 42 createdBy: $ref: '#/components/schemas/CreatedBy' createdDate: type: string example: example_value id: type: string example: abc123 label: type: string example: Example Title lastModifiedBy: $ref: '#/components/schemas/LastModifiedBy' lastModifiedDate: type: string example: example_value modelsUrl: type: string example: https://www.example.com name: type: string example: Example Title outcome: $ref: '#/components/schemas/Outcome' predictionType: type: string example: example_value status: type: string example: example_value url: type: string example: https://www.example.com examples: - countOfActiveModels: 1 countOfModels: 1 createdBy: id: 0055Y00000DWwAIQA1 name: Philippe Ozil profilePhotoUrl: >- https://crm-analytics-deorg-dev-ed--c.documentforce.com/profilephoto/005/T createdDate: '2021-03-04T13:37:02.000Z' id: 1OR5Y0000010ws8WAA label: Sales_per_Customer lastModifiedBy: id: 0055Y00000DWwAIQA1 name: Philippe Ozil profilePhotoUrl: >- https://crm-analytics-deorg-dev-ed--c.documentforce.com/profilephoto/005/T lastModifiedDate: '2021-03-04T13:37:02.000Z' modelsUrl: >- /services/data/v51.0/smartdatadiscovery/predictiondefinitions/1OR5Y0000010ws8WAA/models name: Sales_per_Customer outcome: goal: Maximize label: Sales per Customer name: Sales_per_Customer predictionType: Regression status: Enabled url: >- /services/data/v51.0/smartdatadiscovery/predictiondefinitions/1OR5Y0000010ws8WAA Predictionmodels: title: Predictionmodels required: - models - totalSize - url type: object properties: models: type: array items: $ref: '#/components/schemas/Model1' description: '' example: [] totalSize: type: integer contentEncoding: int32 example: 42 url: type: string example: https://www.example.com examples: - models: - createdBy: id: 0055Y00000DWwAIQA1 name: Philippe Ozil profilePhotoUrl: >- https://crm-analytics-deorg-dev-ed--c.documentforce.com/profilephoto/005/T createdDate: '2021-03-04T13:37:03.000Z' fieldMappingList: - modelField: label: Category name: Category type: Text - modelField: label: Sales name: Sales type: Number - modelField: label: Profit per Order name: Profit_per_Order type: Number - modelField: label: Sub-Category name: Sub_Category type: Text - modelField: label: Quantity name: Quantity type: Number filters: [] historyUrl: >- /services/data/v51.0/smartdatadiscovery/predictiondefinitions/1OR5Y0000010ws8WAA/models/1Ot5Y0000010wzNSAQ/histories id: 1Ot5Y0000010wzNSAQ isRefreshEnabled: false label: superstore-orders lastModifiedBy: id: 0055Y00000DWwAIQA1 name: Philippe Ozil profilePhotoUrl: >- https://crm-analytics-deorg-dev-ed--c.documentforce.com/profilephoto/005/T lastModifiedDate: '2021-03-04T13:37:03.000Z' model: id: 1OT5Y0000010zlzWAA modelType: Regression name: superstore_orders predictionDefinitionUrl: >- /services/data/v51.0/smartdatadiscovery/predictiondefinitions/1OR5Y0000010ws8WAA prescribableFields: - customDefinitions: [] field: label: Quantity name: Quantity type: Number sortOrder: 0 status: Enabled url: >- /services/data/v51.0/smartdatadiscovery/predictiondefinitions/1OR5Y0000010ws8WAA/models/1Ot5Y0000010wzNSAQ totalSize: 1 url: >- /services/data/v51.0/smartdatadiscovery/predictiondefinitions/1OR5Y0000010ws8WAA/models Model1: title: Model1 required: - createdBy - createdDate - fieldMappingList - filters - historyUrl - id - isRefreshEnabled - label - lastModifiedBy - lastModifiedDate - model - modelType - name - predictionDefinitionUrl - prescribableFields - sortOrder - status - url type: object properties: createdBy: $ref: '#/components/schemas/CreatedBy' createdDate: type: string example: example_value fieldMappingList: type: array items: $ref: '#/components/schemas/FieldMappingList' description: '' example: [] filters: type: array items: type: string description: '' example: [] historyUrl: type: string example: https://www.example.com id: type: string example: abc123 isRefreshEnabled: type: boolean example: true label: type: string example: Example Title lastModifiedBy: $ref: '#/components/schemas/LastModifiedBy' lastModifiedDate: type: string example: example_value model: $ref: '#/components/schemas/Model' modelType: type: string example: example_value name: type: string example: Example Title predictionDefinitionUrl: type: string example: https://www.example.com prescribableFields: type: array items: $ref: '#/components/schemas/PrescribableField' description: '' example: [] sortOrder: type: integer contentEncoding: int32 example: 10 status: type: string example: example_value url: type: string example: https://www.example.com examples: - createdBy: id: 0055Y00000DWwAIQA1 name: Philippe Ozil profilePhotoUrl: >- https://crm-analytics-deorg-dev-ed--c.documentforce.com/profilephoto/005/T createdDate: '2021-03-04T13:37:03.000Z' fieldMappingList: - modelField: label: Category name: Category type: Text - modelField: label: Sales name: Sales type: Number - modelField: label: Profit per Order name: Profit_per_Order type: Number - modelField: label: Sub-Category name: Sub_Category type: Text - modelField: label: Quantity name: Quantity type: Number filters: [] historyUrl: >- /services/data/v51.0/smartdatadiscovery/predictiondefinitions/1OR5Y0000010ws8WAA/models/1Ot5Y0000010wzNSAQ/histories id: 1Ot5Y0000010wzNSAQ isRefreshEnabled: false label: superstore-orders lastModifiedBy: id: 0055Y00000DWwAIQA1 name: Philippe Ozil profilePhotoUrl: >- https://crm-analytics-deorg-dev-ed--c.documentforce.com/profilephoto/005/T lastModifiedDate: '2021-03-04T13:37:03.000Z' model: id: 1OT5Y0000010zlzWAA modelType: Regression name: superstore_orders predictionDefinitionUrl: >- /services/data/v51.0/smartdatadiscovery/predictiondefinitions/1OR5Y0000010ws8WAA prescribableFields: - customDefinitions: [] field: label: Quantity name: Quantity type: Number sortOrder: 0 status: Enabled url: >- /services/data/v51.0/smartdatadiscovery/predictiondefinitions/1OR5Y0000010ws8WAA/models/1Ot5Y0000010wzNSAQ FieldMappingList: title: FieldMappingList required: - modelField type: object properties: modelField: $ref: '#/components/schemas/ModelField' examples: - modelField: label: Category name: Category type: Text ModelField: title: ModelField required: - label - name - type type: object properties: label: type: string example: Example Title name: type: string example: Example Title type: type: string example: example_value examples: - label: Category name: Category type: Text PrescribableField: title: PrescribableField required: - customDefinitions - field type: object properties: customDefinitions: type: array items: type: string description: '' example: [] field: $ref: '#/components/schemas/Field' examples: - customDefinitions: [] field: label: Quantity name: Quantity type: Number Field: title: Field required: - label - name - type type: object properties: label: type: string example: Example Title name: type: string example: Example Title type: type: string example: example_value examples: - label: Quantity name: Quantity type: Number CreatechannelRequest: title: CreatechannelRequest required: - FullName - Metadata type: object properties: FullName: type: string example: example_value Metadata: $ref: '#/components/schemas/Metadata' examples: - FullName: Account_Channel__chn Metadata: channelType: data label: Account Channel Metadata: title: Metadata required: - channelType - label type: object properties: channelType: type: string example: example_value label: type: string example: Example Title examples: - channelType: data label: Account Channel UpdatechannelRequest: title: UpdatechannelRequest required: - FullName - Metadata type: object properties: FullName: type: string example: example_value Metadata: $ref: '#/components/schemas/Metadata1' examples: - FullName: Account_Channel__chn Metadata: channelType: data label: Account Channel 2 urls: Metadata1: title: Metadata1 required: - channelType - label - urls type: object properties: channelType: type: string example: example_value label: type: string example: Example Title urls: type: - string - 'null' example: https://www.example.com examples: - channelType: data label: Account Channel 2 urls: AddenrichedfieldstochannelmemberRequest: title: AddenrichedfieldstochannelmemberRequest required: - FullName - Metadata type: object properties: FullName: type: string example: example_value Metadata: $ref: '#/components/schemas/Metadata2' examples: - FullName: Account_Channel_chn_AccountChangeEvent Metadata: enrichedFields: - name: External_Account_ID__c eventChannel: Account_Channel__chn selectedEntity: AccountChangeEvent Metadata2: title: Metadata2 required: - enrichedFields - eventChannel - selectedEntity type: object properties: enrichedFields: type: array items: $ref: '#/components/schemas/EnrichedField' description: '' example: [] eventChannel: type: string example: example_value selectedEntity: type: string example: example_value examples: - enrichedFields: - name: External_Account_ID__c eventChannel: Account_Channel__chn selectedEntity: AccountChangeEvent EnrichedField: title: EnrichedField required: - name type: object properties: name: type: string example: Example Title examples: - name: External_Account_ID__c CreatechannelmemberRequest: title: CreatechannelmemberRequest required: - FullName - Metadata type: object properties: FullName: type: string example: example_value Metadata: $ref: '#/components/schemas/Metadata3' examples: - FullName: Account_Channel_chn_AccountChangeEvent Metadata: eventChannel: Account_Channel__chn selectedEntity: AccountChangeEvent Metadata3: title: Metadata3 required: - eventChannel - selectedEntity type: object properties: eventChannel: type: string example: example_value selectedEntity: type: string example: example_value examples: - eventChannel: Account_Channel__chn selectedEntity: AccountChangeEvent CreatechannelRequest1: title: CreatechannelRequest1 required: - FullName - Metadata type: object properties: FullName: type: string example: example_value Metadata: $ref: '#/components/schemas/Metadata1' examples: - FullName: Carbon_Comparison_Channel__chn Metadata: channelType: event label: Carbon Comparison Channel urls: CreatechannelmemberRequest1: title: CreatechannelmemberRequest1 required: - FullName - Metadata type: object properties: FullName: type: string example: example_value Metadata: $ref: '#/components/schemas/Metadata6' examples: - FullName: Carbon_ComparisonChannel_chn_Carbon_Comparison_e Metadata: eventChannel: Carbon_ComparisonChannel__chn selectedEntity: Carbon_Comparison__e urls: Metadata6: title: Metadata6 required: - eventChannel - selectedEntity - urls type: object properties: eventChannel: type: string example: example_value selectedEntity: type: string example: example_value urls: type: - string - 'null' example: https://www.example.com examples: - eventChannel: Carbon_ComparisonChannel__chn selectedEntity: Carbon_Comparison__e urls: AddfilterexpressioninchannelmemberRequest: title: AddfilterexpressioninchannelmemberRequest required: - FullName - Metadata type: object properties: FullName: type: string example: example_value Metadata: $ref: '#/components/schemas/Metadata7' examples: - FullName: MyChannelMember Metadata: eventChannel: MyChannel__chn filterExpression: Text__c='Some value' selectedEntity: Custom_Event__e urls: Metadata7: title: Metadata7 required: - eventChannel - filterExpression - selectedEntity - urls type: object properties: eventChannel: type: string example: example_value filterExpression: type: string example: example_value selectedEntity: type: string example: example_value urls: type: - string - 'null' example: https://www.example.com examples: - eventChannel: MyChannel__chn filterExpression: Text__c='Some value' selectedEntity: Custom_Event__e urls: Listeventchannels: title: Listeventchannels required: - size - totalSize - done - queryLocator - entityTypeName - records type: object properties: size: type: integer contentEncoding: int32 example: 10 totalSize: type: integer contentEncoding: int32 example: 42 done: type: boolean example: true queryLocator: type: - string - 'null' example: example_value entityTypeName: type: string example: example_value records: type: array items: $ref: '#/components/schemas/Record9' description: '' example: [] examples: - size: 2 totalSize: 2 done: true queryLocator: entityTypeName: PlatformEventChannel records: - attributes: type: PlatformEventChannel url: >- /services/data/v58.0/tooling/sobjects/PlatformEventChannel/0YL4H0000004C93WAE Id: 0YL4H0000004C93WAE DeveloperName: HREvents MasterLabel: Custom Channel for the HR App ChannelType: data - attributes: type: PlatformEventChannel url: >- /services/data/v58.0/tooling/sobjects/PlatformEventChannel/0YL4H0000004C98WAE Id: 0YL4H0000004C98WAE DeveloperName: AdvocateEvents MasterLabel: Custom Channel for the HR App ChannelType: data Record9: title: Record9 required: - attributes - Id - DeveloperName - MasterLabel - ChannelType type: object properties: attributes: $ref: '#/components/schemas/Attributes4' Id: type: string example: abc123 DeveloperName: type: string example: example_value MasterLabel: type: string example: example_value ChannelType: type: string example: example_value examples: - attributes: type: PlatformEventChannel url: >- /services/data/v58.0/tooling/sobjects/PlatformEventChannel/0YL4H0000004C93WAE Id: 0YL4H0000004C93WAE DeveloperName: HREvents MasterLabel: Custom Channel for the HR App ChannelType: data Geteventchannel: title: Geteventchannel required: - attributes - Id - IsDeleted - DeveloperName - Language - MasterLabel - NamespacePrefix - ManageableState - CreatedDate - CreatedById - LastModifiedDate - LastModifiedById - SystemModstamp - ChannelType - FullName - Metadata type: object properties: attributes: $ref: '#/components/schemas/Attributes4' Id: type: string example: abc123 IsDeleted: type: boolean example: true DeveloperName: type: string example: example_value Language: type: string example: example_value MasterLabel: type: string example: example_value NamespacePrefix: type: - string - 'null' example: example_value ManageableState: type: string example: example_value CreatedDate: type: string example: example_value CreatedById: type: string example: '500123' LastModifiedDate: type: string example: example_value LastModifiedById: type: string example: '500123' SystemModstamp: type: string example: example_value ChannelType: type: string example: example_value FullName: type: string example: example_value Metadata: $ref: '#/components/schemas/Metadata1' examples: - attributes: type: PlatformEventChannel url: >- /services/data/v58.0/tooling/sobjects/PlatformEventChannel/0YL4H0000004C93WAE Id: 0YL4H0000004C93WAE IsDeleted: false DeveloperName: HREvents Language: en_US MasterLabel: Custom Channel for the HR App NamespacePrefix: ManageableState: unmanaged CreatedDate: 2021-01-11T19:33:54.000+0000 CreatedById: 00558000000yFyDAAU LastModifiedDate: 2021-01-11T19:33:54.000+0000 LastModifiedById: 00558000000yFyDAAU SystemModstamp: 2021-01-11T19:33:54.000+0000 ChannelType: data FullName: HREvents__chn Metadata: channelType: data label: Custom Channel for the HR App urls: Describeeventchannel: title: Describeeventchannel required: - actionOverrides - activateable - associateEntityType - associateParentEntity - childRelationships - compactLayoutable - createable - custom - customSetting - deepCloneable - defaultImplementation - deletable - deprecatedAndHidden - extendedBy - extendsInterfaces - feedEnabled - fields - hasSubtypes - implementedBy - implementsInterfaces - isInterface - isSubtype - keyPrefix - label - labelPlural - layoutable - listviewable - lookupLayoutable - mergeable - mruEnabled - name - namedLayoutInfos - networkScopeFieldName - queryable - recordTypeInfos - replicateable - retrieveable - searchLayoutable - searchable - sobjectDescribeOption - supportedScopes - triggerable - undeletable - updateable - urls type: object properties: actionOverrides: type: array items: type: string description: '' example: [] activateable: type: boolean example: true associateEntityType: type: - string - 'null' example: example_value associateParentEntity: type: - string - 'null' example: example_value childRelationships: type: array items: type: string description: '' example: [] compactLayoutable: type: boolean example: true createable: type: boolean example: true custom: type: boolean example: true customSetting: type: boolean example: true deepCloneable: type: boolean example: true defaultImplementation: type: - string - 'null' example: example_value deletable: type: boolean example: true deprecatedAndHidden: type: boolean example: true extendedBy: type: - string - 'null' example: example_value extendsInterfaces: type: - string - 'null' example: example_value feedEnabled: type: boolean example: true fields: type: array items: $ref: '#/components/schemas/Field1' description: '' example: [] hasSubtypes: type: boolean example: true implementedBy: type: - string - 'null' example: example_value implementsInterfaces: type: - string - 'null' example: example_value isInterface: type: boolean example: true isSubtype: type: boolean example: true keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value layoutable: type: boolean example: true listviewable: type: - string - 'null' example: example_value lookupLayoutable: type: - string - 'null' example: example_value mergeable: type: boolean example: true mruEnabled: type: boolean example: true name: type: string example: Example Title namedLayoutInfos: type: array items: type: string description: '' example: [] networkScopeFieldName: type: - string - 'null' example: example_value queryable: type: boolean example: true recordTypeInfos: type: array items: type: string description: '' example: [] replicateable: type: boolean example: true retrieveable: type: boolean example: true searchLayoutable: type: boolean example: true searchable: type: boolean example: true sobjectDescribeOption: type: string example: example_value supportedScopes: type: array items: $ref: '#/components/schemas/SupportedScope' description: '' example: [] triggerable: type: boolean example: true undeletable: type: boolean example: true updateable: type: boolean example: true urls: $ref: '#/components/schemas/Urls2' Field1: title: Field1 required: - aggregatable - aiPredictionField - autoNumber - byteLength - calculated - calculatedFormula - cascadeDelete - caseSensitive - compoundFieldName - controllerName - createable - custom - defaultValue - defaultValueFormula - defaultedOnCreate - dependentPicklist - deprecatedAndHidden - digits - displayLocationInDecimal - encrypted - externalId - extraTypeInfo - filterable - filteredLookupInfo - formulaTreatNullNumberAsZero - groupable - highScaleNumber - htmlFormatted - idLookup - inlineHelpText - label - length - mask - maskType - name - nameField - namePointing - nillable - permissionable - picklistValues - polymorphicForeignKey - precision - queryByDistance - referenceTargetField - referenceTo - relationshipName - relationshipOrder - restrictedDelete - restrictedPicklist - scale - searchPrefilterable - soapType - sortable - type - unique - updateable - writeRequiresMasterRead type: object properties: aggregatable: type: boolean example: true aiPredictionField: type: boolean example: true autoNumber: type: boolean example: true byteLength: type: integer contentEncoding: int32 example: 10 calculated: type: boolean example: true calculatedFormula: type: - string - 'null' example: example_value cascadeDelete: type: boolean example: true caseSensitive: type: boolean example: true compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value createable: type: boolean example: true custom: type: boolean example: true defaultValue: oneOf: - type: - string - 'null' - type: boolean - {} example: example_value defaultValueFormula: type: - string - 'null' example: example_value defaultedOnCreate: type: boolean example: true dependentPicklist: type: boolean example: true deprecatedAndHidden: type: boolean example: true digits: type: integer contentEncoding: int32 example: 10 displayLocationInDecimal: type: boolean example: true encrypted: type: boolean example: true externalId: type: boolean example: '500123' extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value formulaTreatNullNumberAsZero: type: boolean example: true groupable: type: boolean example: true highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true idLookup: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 mask: type: - string - 'null' example: example_value maskType: type: - string - 'null' example: example_value name: type: string example: Example Title nameField: type: boolean example: true namePointing: type: boolean example: true nillable: type: boolean example: true permissionable: type: boolean example: true picklistValues: type: array items: oneOf: - $ref: '#/components/schemas/PicklistValue' - allOf: - $ref: '#/components/schemas/PicklistValue1' - examples: - active: true defaultValue: false label: English validFor: value: en_US description: '' example: [] polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 queryByDistance: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceTo: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value relationshipOrder: type: - string - 'null' example: example_value restrictedDelete: type: boolean example: true restrictedPicklist: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true soapType: type: string example: example_value sortable: type: boolean example: true type: type: string example: example_value unique: type: boolean example: true updateable: type: boolean example: true writeRequiresMasterRead: type: boolean example: true PicklistValue: title: PicklistValue type: object properties: active: type: boolean example: true defaultValue: type: boolean example: true label: type: string example: Example Title validFor: type: - string - 'null' example: example_value value: type: string example: example_value PicklistValue1: title: PicklistValue1 required: - active - defaultValue - label - validFor - value type: object properties: active: type: boolean example: true defaultValue: type: boolean example: true label: type: - string - 'null' example: Example Title validFor: type: - string - 'null' example: example_value value: type: string example: example_value examples: - active: true defaultValue: false label: English validFor: value: en_US PicklistValue2: title: PicklistValue2 type: object properties: active: type: boolean example: true defaultValue: type: boolean example: true label: type: - string - 'null' example: Example Title validFor: type: - string - 'null' example: example_value value: type: string example: example_value SupportedScope: title: SupportedScope required: - label - name type: object properties: label: type: string example: Example Title name: type: string example: Example Title examples: - label: All platform event channels name: everything Urls2: title: Urls2 required: - rowTemplate - describe - sobject type: object properties: rowTemplate: type: string example: example_value describe: type: string example: example_value sobject: type: string example: example_value examples: - rowTemplate: /services/data/v58.0/tooling/sobjects/PlatformEventChannel/{ID} describe: /services/data/v58.0/tooling/sobjects/PlatformEventChannel/describe sobject: /services/data/v58.0/tooling/sobjects/PlatformEventChannel Listchannelmembers: title: Listchannelmembers required: - size - totalSize - done - queryLocator - entityTypeName - records type: object properties: size: type: integer contentEncoding: int32 example: 10 totalSize: type: integer contentEncoding: int32 example: 42 done: type: boolean example: true queryLocator: type: - string - 'null' example: example_value entityTypeName: type: string example: example_value records: type: array items: $ref: '#/components/schemas/Record10' description: '' example: [] examples: - size: 4 totalSize: 4 done: true queryLocator: entityTypeName: PlatformEventChannelMember records: - attributes: type: PlatformEventChannelMember url: >- /services/data/v58.0/tooling/sobjects/PlatformEventChannelMember/0v84H000000PAvIQAW Id: 0v84H000000PAvIQAW DeveloperName: ChangeEvents_ContactChangeEvent EventChannel: ChangeEvents FilterExpression: SelectedEntity: ContactChangeEvent - attributes: type: PlatformEventChannelMember url: >- /services/data/v58.0/tooling/sobjects/PlatformEventChannelMember/0v84H000000XZCjQAO Id: 0v84H000000XZCjQAO DeveloperName: ChangeEvents_AccountChangeEvent EventChannel: ChangeEvents FilterExpression: SelectedEntity: AccountChangeEvent - attributes: type: PlatformEventChannelMember url: >- /services/data/v58.0/tooling/sobjects/PlatformEventChannelMember/0v84H000000fxSfQAI Id: 0v84H000000fxSfQAI DeveloperName: HREvents_Employee_ChangeEvent EventChannel: 0YL4H0000004C93WAE FilterExpression: SelectedEntity: Meeting_Note__ChangeEvent - attributes: type: PlatformEventChannelMember url: >- /services/data/v58.0/tooling/sobjects/PlatformEventChannelMember/0v84H000000fxSkQAI Id: 0v84H000000fxSkQAI DeveloperName: AdvocateEvents_Employee_ChangeEvent EventChannel: 0YL4H0000004C98WAE FilterExpression: SelectedEntity: Meeting_Note__ChangeEvent Record10: title: Record10 required: - attributes - Id - DeveloperName - EventChannel - FilterExpression - SelectedEntity type: object properties: attributes: $ref: '#/components/schemas/Attributes4' Id: type: string example: abc123 DeveloperName: type: string example: example_value EventChannel: type: string example: example_value FilterExpression: type: - string - 'null' example: example_value SelectedEntity: type: string example: example_value examples: - attributes: type: PlatformEventChannelMember url: >- /services/data/v58.0/tooling/sobjects/PlatformEventChannelMember/0v84H000000PAvIQAW Id: 0v84H000000PAvIQAW DeveloperName: ChangeEvents_ContactChangeEvent EventChannel: ChangeEvents FilterExpression: SelectedEntity: ContactChangeEvent Getchannelmember: title: Getchannelmember required: - attributes - Id - IsDeleted - DeveloperName - Language - MasterLabel - NamespacePrefix - ManageableState - CreatedDate - CreatedById - LastModifiedDate - LastModifiedById - SystemModstamp - FullName - Metadata - EventChannel - SelectedEntity - FilterExpression type: object properties: attributes: $ref: '#/components/schemas/Attributes4' Id: type: string example: abc123 IsDeleted: type: boolean example: true DeveloperName: type: string example: example_value Language: type: string example: example_value MasterLabel: type: string example: example_value NamespacePrefix: type: - string - 'null' example: example_value ManageableState: type: string example: example_value CreatedDate: type: string example: example_value CreatedById: type: string example: '500123' LastModifiedDate: type: string example: example_value LastModifiedById: type: string example: '500123' SystemModstamp: type: string example: example_value FullName: type: string example: example_value Metadata: $ref: '#/components/schemas/Metadata9' EventChannel: type: string example: example_value SelectedEntity: type: string example: example_value FilterExpression: type: - string - 'null' example: example_value examples: - attributes: type: PlatformEventChannelMember url: >- /services/data/v58.0/tooling/sobjects/PlatformEventChannelMember/0v84H000000PAvIQAW Id: 0v84H000000PAvIQAW IsDeleted: false DeveloperName: ChangeEvents_ContactChangeEvent Language: en_US MasterLabel: ContactChangeEvent NamespacePrefix: ManageableState: unmanaged CreatedDate: 2022-12-30T15:10:39.000+0000 CreatedById: 00558000000yFyDAAU LastModifiedDate: 2022-12-30T15:10:39.000+0000 LastModifiedById: 00558000000yFyDAAU SystemModstamp: 2022-12-30T15:10:39.000+0000 FullName: ChangeEvents_ContactChangeEvent Metadata: enrichedFields: [] eventChannel: ChangeEvents filterExpression: selectedEntity: ContactChangeEvent urls: EventChannel: ChangeEvents SelectedEntity: ContactChangeEvent FilterExpression: Metadata9: title: Metadata9 required: - enrichedFields - eventChannel - filterExpression - selectedEntity - urls type: object properties: enrichedFields: type: array items: type: string description: '' example: [] eventChannel: type: string example: example_value filterExpression: type: - string - 'null' example: example_value selectedEntity: type: string example: example_value urls: type: - string - 'null' example: https://www.example.com examples: - enrichedFields: [] eventChannel: ChangeEvents filterExpression: selectedEntity: ContactChangeEvent urls: PublishsingleeventRequest: title: PublishsingleeventRequest required: - Annual_Mileage__c - Current_Vehicle__c - Model_Year__c type: object properties: Annual_Mileage__c: type: integer contentEncoding: int32 example: 10 Current_Vehicle__c: type: string example: example_value Model_Year__c: type: integer contentEncoding: int32 example: 10 examples: - Annual_Mileage__c: 12000 Current_Vehicle__c: Fast car Model_Year__c: 2019 Publishsingleevent: title: Publishsingleevent required: - id - success - errors type: object properties: id: type: string example: abc123 success: type: boolean example: true errors: type: array items: $ref: '#/components/schemas/Errors7' description: '' example: [] examples: - id: e00xx0000000001AAA success: true errors: - statusCode: OPERATION_ENQUEUED message: 234995b6-53b6-4887-93fc-ecd0fac8b36c fields: [] Errors7: title: Errors7 required: - statusCode - message - fields type: object properties: statusCode: type: string example: example_value message: type: string example: example_value fields: type: array items: type: string description: '' example: [] examples: - statusCode: OPERATION_ENQUEUED message: 234995b6-53b6-4887-93fc-ecd0fac8b36c fields: [] PublishmultipleeventsRequest: title: PublishmultipleeventsRequest required: - allOrNone - compositeRequest type: object properties: allOrNone: type: boolean example: true compositeRequest: type: array items: $ref: '#/components/schemas/CompositeRequest3' description: '' example: [] examples: - allOrNone: true compositeRequest: - method: POST url: /services/data/v64.0/sobjects/Carbon_Comparison__e referenceId: event1 body: Annual_Mileage__c: 12000 Current_Vehicle__c: Fast car 1 Model_Year__c: 2019 - method: POST url: /services/data/v64.0/sobjects/Carbon_Comparison__e referenceId: event2 body: Annual_Mileage__c: 12000 Current_Vehicle__c: Fast car 2 Model_Year__c: 2019 CompositeRequest3: title: CompositeRequest3 required: - method - url - referenceId - body type: object properties: method: type: string example: example_value url: type: string example: https://www.example.com referenceId: type: string example: '500123' body: $ref: '#/components/schemas/Body15' examples: - method: POST url: /services/data/v64.0/sobjects/Carbon_Comparison__e referenceId: event1 body: Annual_Mileage__c: 12000 Current_Vehicle__c: Fast car 1 Model_Year__c: 2019 Body15: title: Body15 required: - Annual_Mileage__c - Current_Vehicle__c - Model_Year__c type: object properties: Annual_Mileage__c: type: integer contentEncoding: int32 example: 10 Current_Vehicle__c: type: string example: example_value Model_Year__c: type: integer contentEncoding: int32 example: 10 examples: - Annual_Mileage__c: 12000 Current_Vehicle__c: Fast car 1 Model_Year__c: 2019 Envelope: title: Envelope required: - Header - Body type: object properties: Header: allOf: - $ref: '#/components/schemas/Header4' - xml: name: Header namespace: http://schemas.xmlsoap.org/soap/envelope/ prefix: SOAP-ENV attribute: false wrapped: false example: example_value Body: allOf: - $ref: '#/components/schemas/Body16' - xml: name: Body namespace: http://schemas.xmlsoap.org/soap/envelope/ prefix: SOAP-ENV attribute: false wrapped: false example: example_value xml: name: Envelope namespace: http://schemas.xmlsoap.org/soap/envelope/ prefix: SOAP-ENV attribute: false wrapped: false Header4: title: Header4 required: - SessionHeader type: object properties: SessionHeader: allOf: - $ref: '#/components/schemas/SessionHeader' - xml: name: SessionHeader namespace: urn:partner.soap.sforce.com prefix: ns2 attribute: false wrapped: false example: example_value xml: name: Header namespace: http://schemas.xmlsoap.org/soap/envelope/ prefix: SOAP-ENV attribute: false wrapped: false SessionHeader: title: SessionHeader required: - sessionId type: object properties: sessionId: type: string xml: name: sessionId namespace: urn:partner.soap.sforce.com prefix: ns2 attribute: false wrapped: false example: '500123' xml: name: SessionHeader namespace: urn:partner.soap.sforce.com prefix: ns2 attribute: false wrapped: false Body16: title: Body16 required: - create type: object properties: create: allOf: - $ref: '#/components/schemas/create' - xml: name: create namespace: urn:partner.soap.sforce.com prefix: ns2 attribute: false wrapped: false example: example_value xml: name: Body namespace: http://schemas.xmlsoap.org/soap/envelope/ prefix: SOAP-ENV attribute: false wrapped: false create: title: create required: - sObjects type: object properties: sObjects: type: array items: $ref: '#/components/schemas/sObjects' description: '' xml: namespace: urn:partner.soap.sforce.com prefix: ns2 attribute: false wrapped: false example: [] xml: name: create namespace: urn:partner.soap.sforce.com prefix: ns2 attribute: false wrapped: false sObjects: title: sObjects required: - type - Annual_Mileage__c - Current_Vehicle__c - Model_Year__c type: object properties: type: type: string xml: name: type namespace: urn:sobject.partner.soap.sforce.com prefix: ns1 attribute: false wrapped: false example: example_value Annual_Mileage__c: type: integer contentEncoding: int32 xml: name: Annual_Mileage__c namespace: '' attribute: false wrapped: false example: 10 Current_Vehicle__c: type: string xml: name: Current_Vehicle__c namespace: '' attribute: false wrapped: false example: example_value Model_Year__c: type: integer contentEncoding: int32 xml: name: Model_Year__c namespace: '' attribute: false wrapped: false example: 10 xml: name: sObjects namespace: urn:partner.soap.sforce.com prefix: ns2 attribute: false wrapped: false Listnamedcredentials: title: Listnamedcredentials required: - size - totalSize - done - queryLocator - entityTypeName - records type: object properties: size: type: integer contentEncoding: int32 example: 10 totalSize: type: integer contentEncoding: int32 example: 42 done: type: boolean example: true queryLocator: type: - string - 'null' example: example_value entityTypeName: type: string example: example_value records: type: array items: $ref: '#/components/schemas/Record11' description: '' example: [] examples: - size: 1 totalSize: 1 done: true queryLocator: entityTypeName: NamedCredential records: - attributes: type: NamedCredential url: >- /services/data/v58.0/tooling/sobjects/NamedCredential/0XA4H000000TNRhWAO Id: 0XA4H000000TNRhWAO IsDeleted: false DeveloperName: Slack_Webhook_for_integration_Channel Language: en_US MasterLabel: 'Slack Webhook for #integration Channel' NamespacePrefix: CreatedDate: 2020-11-06T14:04:44.000+0000 CreatedById: 00558000000yFyDAAU LastModifiedDate: 2020-11-06T14:04:44.000+0000 LastModifiedById: 00558000000yFyDAAU SystemModstamp: 2020-11-06T14:04:44.000+0000 Endpoint: https://hooks.slack.com/services/SECRET PrincipalType: Anonymous JwtIssuer: JwtFormulaSubject: JwtTextSubject: JwtValidityPeriodSeconds: JwtAudience: AuthTokenEndpointUrl: Record11: title: Record11 required: - attributes - Id - IsDeleted - DeveloperName - Language - MasterLabel - NamespacePrefix - CreatedDate - CreatedById - LastModifiedDate - LastModifiedById - SystemModstamp - Endpoint - PrincipalType - JwtIssuer - JwtFormulaSubject - JwtTextSubject - JwtValidityPeriodSeconds - JwtAudience - AuthTokenEndpointUrl type: object properties: attributes: $ref: '#/components/schemas/Attributes4' Id: type: string example: abc123 IsDeleted: type: boolean example: true DeveloperName: type: string example: example_value Language: type: string example: example_value MasterLabel: type: string example: example_value NamespacePrefix: type: - string - 'null' example: example_value CreatedDate: type: string example: example_value CreatedById: type: string example: '500123' LastModifiedDate: type: string example: example_value LastModifiedById: type: string example: '500123' SystemModstamp: type: string example: example_value Endpoint: type: string example: example_value PrincipalType: type: string example: example_value JwtIssuer: type: - string - 'null' example: example_value JwtFormulaSubject: type: - string - 'null' example: example_value JwtTextSubject: type: - string - 'null' example: example_value JwtValidityPeriodSeconds: type: - string - 'null' example: example_value JwtAudience: type: - string - 'null' example: example_value AuthTokenEndpointUrl: type: - string - 'null' example: https://www.example.com examples: - attributes: type: NamedCredential url: >- /services/data/v58.0/tooling/sobjects/NamedCredential/0XA4H000000TNRhWAO Id: 0XA4H000000TNRhWAO IsDeleted: false DeveloperName: Slack_Webhook_for_integration_Channel Language: en_US MasterLabel: 'Slack Webhook for #integration Channel' NamespacePrefix: CreatedDate: 2020-11-06T14:04:44.000+0000 CreatedById: 00558000000yFyDAAU LastModifiedDate: 2020-11-06T14:04:44.000+0000 LastModifiedById: 00558000000yFyDAAU SystemModstamp: 2020-11-06T14:04:44.000+0000 Endpoint: https://hooks.slack.com/services/SECRET PrincipalType: Anonymous JwtIssuer: JwtFormulaSubject: JwtTextSubject: JwtValidityPeriodSeconds: JwtAudience: AuthTokenEndpointUrl: CreatenamedcredentialRequest1: title: CreatenamedcredentialRequest1 required: - FullName - Metadata type: object properties: FullName: type: string example: example_value Metadata: $ref: '#/components/schemas/Metadata10' examples: - FullName: MyNamedCredential Metadata: label: My Named Credential endpoint: arn:aws:AWS_REGION:AWS_ACCOUNT_ID principalType: Anonymous protocol: NoAuthentication Metadata10: title: Metadata10 required: - label - endpoint - principalType - protocol type: object properties: label: type: string example: Example Title endpoint: type: string example: example_value principalType: type: string example: example_value protocol: type: string example: example_value examples: - label: My Named Credential endpoint: arn:aws:AWS_REGION:AWS_ACCOUNT_ID principalType: Anonymous protocol: NoAuthentication UpdatenamedcredentialRequest1: title: UpdatenamedcredentialRequest1 required: - FullName - Metadata type: object properties: FullName: type: string example: example_value Metadata: $ref: '#/components/schemas/Metadata10' examples: - FullName: MyNamedCredential Metadata: label: My Named Credential endpoint: arn:aws:AWS_REGION:AWS_ACCOUNT_ID principalType: Anonymous protocol: NoAuthentication CreateeventrelayRequest: title: CreateeventrelayRequest required: - FullName - Metadata type: object properties: FullName: type: string example: example_value Metadata: $ref: '#/components/schemas/Metadata12' examples: - FullName: MyEventRelay Metadata: eventChannel: Carbon_Comparison_Channel__chn destinationResourceName: callout:MyNamedCredential label: My Event Relay relayOption: '{"ReplayRecovery":"LATEST"}' Metadata12: title: Metadata12 required: - eventChannel - destinationResourceName - label - relayOption type: object properties: eventChannel: type: string example: example_value destinationResourceName: type: string example: example_value label: type: string example: Example Title relayOption: type: string example: example_value examples: - eventChannel: Carbon_Comparison_Channel__chn destinationResourceName: callout:MyNamedCredential label: My Event Relay relayOption: '{"ReplayRecovery":"LATEST"}' ChangeeventrelaystateRequest: title: ChangeeventrelaystateRequest required: - Metadata type: object properties: Metadata: $ref: '#/components/schemas/Metadata13' examples: - Metadata: state: RUN Metadata13: title: Metadata13 required: - state type: object properties: state: type: string example: example_value examples: - state: RUN UpdateeventrelayRequest: title: UpdateeventrelayRequest required: - FullName - Metadata type: object properties: FullName: type: string example: example_value Metadata: $ref: '#/components/schemas/Metadata14' examples: - FullName: MyEventRelay Metadata: label: My Event Relay relayOption: '{"ReplayRecovery":"LATEST"}' Metadata14: title: Metadata14 required: - label - relayOption type: object properties: label: type: string example: Example Title relayOption: type: string example: example_value examples: - label: My Event Relay relayOption: '{"ReplayRecovery":"LATEST"}' PlatformEventSchemabyEventName: title: PlatformEventSchemabyEventName required: - name - namespace - type - fields type: object properties: name: type: string example: Example Title namespace: type: string example: example_value type: type: string example: example_value fields: type: array items: $ref: '#/components/schemas/Field2' description: '' example: [] Field2: title: Field2 required: - name - type type: object properties: name: type: string example: Example Title type: oneOf: - $ref: '#/components/schemas/Type' - type: string example: example_value Type: title: Type type: object properties: type: type: string example: example_value name: type: string example: Example Title namespace: type: string example: example_value fields: type: array items: $ref: '#/components/schemas/Field3' description: '' example: [] Field3: title: Field3 required: - name - type type: object properties: name: type: string example: Example Title type: oneOf: - $ref: '#/components/schemas/Type1' - $ref: '#/components/schemas/Type11' example: example_value Type1: title: Type1 type: object properties: type: type: string example: example_value name: type: string example: Example Title doc: type: string example: example_value fields: type: array items: $ref: '#/components/schemas/Field4' description: '' example: [] Field4: title: Field4 required: - name - type - doc type: object properties: name: type: string example: Example Title type: oneOf: - type: array items: type: string - type: array items: type: string example: example_value doc: type: string example: example_value default: type: - string - 'null' example: example_value Type11: title: Type11 required: - type - name - doc - fields type: object properties: type: type: string example: example_value name: type: string example: Example Title doc: type: string example: example_value fields: type: array items: $ref: '#/components/schemas/Field5' description: '' example: [] Field5: title: Field5 required: - name - type type: object properties: name: type: string example: Example Title type: oneOf: - type: array items: type: string - type: array items: type: string example: example_value doc: type: string example: example_value default: type: - string - 'null' example: example_value Type12: title: Type12 type: object properties: type: type: string example: example_value name: type: string example: Example Title doc: type: string example: example_value fields: type: array items: $ref: '#/components/schemas/Field5' description: '' example: [] CreatemanagedeventsubscriptionRequest: title: CreatemanagedeventsubscriptionRequest required: - FullName - Metadata type: object properties: FullName: type: string example: example_value Metadata: $ref: '#/components/schemas/Metadata15' examples: - FullName: Managed_Sub_OpportunityChangeEvent Metadata: label: Managed Sub OpportunityChangeEvent topicName: /data/OpportunityChangeEvent defaultReplay: LATEST state: RUN errorRecoveryReplay: LATEST Metadata15: title: Metadata15 required: - label - topicName - defaultReplay - state - errorRecoveryReplay type: object properties: label: type: string example: Example Title topicName: type: string example: example_value defaultReplay: type: string example: example_value state: type: string example: example_value errorRecoveryReplay: type: string example: example_value examples: - label: Managed Sub OpportunityChangeEvent topicName: /data/OpportunityChangeEvent defaultReplay: LATEST state: RUN errorRecoveryReplay: LATEST Getallmanagedeventsubscriptions: title: Getallmanagedeventsubscriptions required: - size - totalSize - done - queryLocator - entityTypeName - records type: object properties: size: type: integer contentEncoding: int32 example: 10 totalSize: type: integer contentEncoding: int32 example: 42 done: type: boolean example: true queryLocator: type: - string - 'null' example: example_value entityTypeName: type: string example: example_value records: type: array items: $ref: '#/components/schemas/Record12' description: '' example: [] examples: - size: 2 totalSize: 2 done: true queryLocator: entityTypeName: ManagedEventSubscription records: - attributes: type: ManagedEventSubscription url: >- /services/data/v62.0/tooling/sobjects/ManagedEventSubscription/18xJ80000000001IAA Id: 18xJ80000000001IAA IsDeleted: false DeveloperName: Managed_Sample_PE Language: en_US MasterLabel: Managed Sub Sample Platform Event NamespacePrefix: ManageableState: unmanaged CreatedDate: 2024-11-28T17:15:30.000+0000 CreatedById: 00558000000yFyDAAU LastModifiedDate: 2024-11-28T21:08:18.000+0000 LastModifiedById: 00558000000yFyDAAU SystemModstamp: 2024-11-28T21:08:18.000+0000 Version: '3' - attributes: type: ManagedEventSubscription url: >- /services/data/v62.0/tooling/sobjects/ManagedEventSubscription/18xJ80000000006IAA Id: 18xJ80000000006IAA IsDeleted: false DeveloperName: Managed_Inactive_Sample_PE Language: en_US MasterLabel: Managed Inactive Sample PE NamespacePrefix: ManageableState: unmanaged CreatedDate: 2024-12-05T07:56:20.000+0000 CreatedById: 00558000000yFyDAAU LastModifiedDate: 2024-12-05T07:56:20.000+0000 LastModifiedById: 00558000000yFyDAAU SystemModstamp: 2024-12-05T07:56:20.000+0000 Version: '1' Record12: title: Record12 required: - attributes - Id - IsDeleted - DeveloperName - Language - MasterLabel - NamespacePrefix - ManageableState - CreatedDate - CreatedById - LastModifiedDate - LastModifiedById - SystemModstamp - Version type: object properties: attributes: $ref: '#/components/schemas/Attributes4' Id: type: string example: abc123 IsDeleted: type: boolean example: true DeveloperName: type: string example: example_value Language: type: string example: example_value MasterLabel: type: string example: example_value NamespacePrefix: type: - string - 'null' example: example_value ManageableState: type: string example: example_value CreatedDate: type: string example: example_value CreatedById: type: string example: '500123' LastModifiedDate: type: string example: example_value LastModifiedById: type: string example: '500123' SystemModstamp: type: string example: example_value Version: type: string example: example_value examples: - attributes: type: ManagedEventSubscription url: >- /services/data/v62.0/tooling/sobjects/ManagedEventSubscription/18xJ80000000001IAA Id: 18xJ80000000001IAA IsDeleted: false DeveloperName: Managed_Sample_PE Language: en_US MasterLabel: Managed Sub Sample Platform Event NamespacePrefix: ManageableState: unmanaged CreatedDate: 2024-11-28T17:15:30.000+0000 CreatedById: 00558000000yFyDAAU LastModifiedDate: 2024-11-28T21:08:18.000+0000 LastModifiedById: 00558000000yFyDAAU SystemModstamp: 2024-11-28T21:08:18.000+0000 Version: '3' UpdatemanagedeventsubscriptionRequest: title: UpdatemanagedeventsubscriptionRequest required: - FullName - Metadata type: object properties: FullName: type: string example: example_value Metadata: $ref: '#/components/schemas/Metadata13' examples: - FullName: Managed_Sub_OpportunityChangeEvent Metadata: state: STOP ContractRenewerAPIRequest: title: ContractRenewerAPIRequest required: - context type: object properties: context: $ref: '#/components/schemas/Context' examples: - context: masterContractId: renewedContracts: - attributes: type: Contract Id: 800540000006LLVAA2 Context: title: Context required: - masterContractId - renewedContracts type: object properties: masterContractId: type: - string - 'null' example: '500123' renewedContracts: type: array items: $ref: '#/components/schemas/RenewedContract' description: '' example: [] examples: - masterContractId: renewedContracts: - attributes: type: Contract Id: 800540000006LLVAA2 RenewedContract: title: RenewedContract required: - attributes - Id type: object properties: attributes: $ref: '#/components/schemas/Attributes3' Id: type: string example: abc123 examples: - attributes: type: Contract Id: 800540000006LLVAA2 ReadProductAPIRequest: title: ReadProductAPIRequest required: - context type: object properties: context: $ref: '#/components/schemas/Context1' examples: - context: pricebookId: 01sA0000000wuhg currencyCode: USD Context1: title: Context1 required: - pricebookId - currencyCode type: object properties: pricebookId: type: string example: '500123' currencyCode: type: string example: example_value examples: - pricebookId: 01sA0000000wuhg currencyCode: USD CreateandSaveQuoteProposalAPIRequest: title: CreateandSaveQuoteProposalAPIRequest required: - saver - model type: object properties: saver: type: string example: example_value model: $ref: '#/components/schemas/Model3' examples: - saver: SBQQ.QuoteDocumentAPI.Save model: name: test quoteId: templateId: outputFormat: PDF language: en_US paperSize: Default Model3: title: Model3 required: - name - quoteId - templateId - outputFormat - language - paperSize type: object properties: name: type: string example: Example Title quoteId: type: string example: '500123' templateId: type: string example: '500123' outputFormat: type: string example: example_value language: type: string example: example_value paperSize: type: string example: example_value examples: - name: test quoteId: templateId: outputFormat: PDF language: en_US paperSize: Default QuoteTermReaderAPIRequest: title: QuoteTermReaderAPIRequest required: - context type: object properties: context: $ref: '#/components/schemas/Context2' examples: - context: templateId: a0v5C000000jTgr language: es Context2: title: Context2 required: - templateId - language type: object properties: templateId: type: string example: '500123' language: type: string example: example_value examples: - templateId: a0v5C000000jTgr language: es GenerateQuoteDocumentAPIRequest: title: GenerateQuoteDocumentAPIRequest required: - saver - model type: object properties: saver: type: string example: example_value model: $ref: '#/components/schemas/Model3' examples: - saver: SBQQ.QuoteDocumentAPI.Save model: name: test quoteId: templateId: outputFormat: PDF language: en_US paperSize: Default CorporateMemberEnrollmentsRequest: title: CorporateMemberEnrollmentsRequest required: - enrollmentDate - membershipNumber - associatedAccountDetails - memberStatus - createTransactionJournals type: object properties: enrollmentDate: type: string example: example_value membershipNumber: type: string example: example_value associatedAccountDetails: $ref: '#/components/schemas/AssociatedAccountDetails' memberStatus: type: string example: example_value createTransactionJournals: type: string example: example_value examples: - enrollmentDate: '2021-01-01T05:05:05.000Z' membershipNumber: Member123 associatedAccountDetails: name: Name1 phone: '908989898' website: www.ab.com allowDuplicateRecords: 'false' memberStatus: Active createTransactionJournals: 'true' AssociatedAccountDetails: title: AssociatedAccountDetails required: - name - phone - website - allowDuplicateRecords type: object properties: name: type: string example: Example Title phone: type: string example: example_value website: type: string example: example_value allowDuplicateRecords: type: string example: example_value examples: - name: Name1 phone: '908989898' website: www.ab.com allowDuplicateRecords: 'false' CorporateMemberEnrollments: title: CorporateMemberEnrollments required: - accountId - loyaltyProgramMemberId - loyaltyProgramName - membershipNumber - transactionJournals type: object properties: accountId: type: string example: '500123' loyaltyProgramMemberId: type: string example: '500123' loyaltyProgramName: type: string example: example_value membershipNumber: type: string example: example_value transactionJournals: type: array items: $ref: '#/components/schemas/TransactionJournal' description: '' example: [] examples: - accountId: 001J8000003MaJL loyaltyProgramMemberId: 0lMJ8000000CaRH loyaltyProgramName: NTO Insider membershipNumber: Member123 transactionJournals: - activityDate: '2021-01-01T04:05:05.000Z' journalSubType: Member Enrollment journalType: Accrual loyaltyProgram: NTO Insider loyaltyProgramMember: Member123 referredMember: status: Processed transactionJournalId: 0lVJ8000000GmaE TransactionJournal: title: TransactionJournal required: - activityDate - journalSubType - journalType - loyaltyProgram - loyaltyProgramMember - referredMember - status - transactionJournalId type: object properties: activityDate: type: string example: example_value journalSubType: type: string example: example_value journalType: type: string example: example_value loyaltyProgram: type: string example: example_value loyaltyProgramMember: type: string example: example_value referredMember: type: - string - 'null' example: example_value status: type: string example: example_value transactionJournalId: type: string example: '500123' examples: - activityDate: '2021-01-01T04:05:05.000Z' journalSubType: Member Enrollment journalType: Accrual loyaltyProgram: NTO Insider loyaltyProgramMember: Member123 referredMember: status: Processed transactionJournalId: 0lVJ8000000GmaE IndividualMemberEnrollmentsRequest: title: IndividualMemberEnrollmentsRequest required: - enrollmentDate - membershipNumber - associatedContactDetails - memberStatus - createTransactionJournals - transactionJournalStatementFrequency - transactionJournalStatementMethod - enrollmentChannel - canReceivePromotions - canReceivePartnerPromotions - membershipEndDate type: object properties: enrollmentDate: type: string example: example_value membershipNumber: type: string example: example_value associatedContactDetails: $ref: '#/components/schemas/AssociatedContactDetails' memberStatus: type: string example: example_value createTransactionJournals: type: string example: example_value transactionJournalStatementFrequency: type: string example: example_value transactionJournalStatementMethod: type: string example: example_value enrollmentChannel: type: string example: example_value canReceivePromotions: type: string example: example_value canReceivePartnerPromotions: type: string example: example_value membershipEndDate: type: string example: example_value examples: - enrollmentDate: '2021-01-01T00:00:00.000Z' membershipNumber: Member1 associatedContactDetails: firstName: Name1 lastName: Name2 email: ab@email.com allowDuplicateRecords: 'false' memberStatus: Active createTransactionJournals: 'true' transactionJournalStatementFrequency: Monthly transactionJournalStatementMethod: Mail enrollmentChannel: Email canReceivePromotions: 'true' canReceivePartnerPromotions: 'true' membershipEndDate: '2022-01-01T00:00:00.000Z' AssociatedContactDetails: title: AssociatedContactDetails required: - firstName - lastName - email - allowDuplicateRecords type: object properties: firstName: type: string example: example_value lastName: type: string example: example_value email: type: string example: user@example.com allowDuplicateRecords: type: string example: example_value examples: - firstName: Name1 lastName: Name2 email: ab@email.com allowDuplicateRecords: 'false' IndividualMemberEnrollments: title: IndividualMemberEnrollments required: - contactId - loyaltyProgramMemberId - loyaltyProgramName - membershipNumber - transactionJournals type: object properties: contactId: type: string example: '500123' loyaltyProgramMemberId: type: string example: '500123' loyaltyProgramName: type: string example: example_value membershipNumber: type: string example: example_value transactionJournals: type: array items: $ref: '#/components/schemas/TransactionJournal' description: '' example: [] examples: - contactId: 003J8000002Yu0Z loyaltyProgramMemberId: 0lMJ8000000CaRM loyaltyProgramName: NTO Insider membershipNumber: Member1 transactionJournals: - activityDate: '2020-12-31T23:00:00.000Z' journalSubType: Member Enrollment journalType: Accrual loyaltyProgram: NTO Insider loyaltyProgramMember: Member1 referredMember: status: Processed transactionJournalId: 0lVJ8000000GmaJ MemberBenefits: title: MemberBenefits required: - memberBenefits type: object properties: memberBenefits: type: array items: $ref: '#/components/schemas/MemberBenefits1' description: '' example: [] examples: - memberBenefits: - benefitId: 0jiJ80000008OIFIA2 benefitName: Free Shipping benefitTypeId: 0jhJ80000008OI5IAM benefitTypeName: Shipping createdRecordId: createdRecordName: description: endDate: isActive: true memberBenefitStatus: startDate: - benefitId: 0jiJ80000008OI5IAM benefitName: 5% of Discount benefitTypeId: 0jhJ80000008OIAIA2 benefitTypeName: Discount Percentage createdRecordId: createdRecordName: description: endDate: isActive: true memberBenefitStatus: startDate: MemberBenefits1: title: MemberBenefits1 required: - benefitId - benefitName - benefitTypeId - benefitTypeName - createdRecordId - createdRecordName - description - endDate - isActive - memberBenefitStatus - startDate type: object properties: benefitId: type: string example: '500123' benefitName: type: string example: example_value benefitTypeId: type: string example: '500123' benefitTypeName: type: string example: example_value createdRecordId: type: - string - 'null' example: '500123' createdRecordName: type: - string - 'null' example: example_value description: type: - string - 'null' example: A sample description. endDate: type: - string - 'null' example: example_value isActive: type: boolean example: true memberBenefitStatus: type: - string - 'null' example: example_value startDate: type: - string - 'null' example: example_value examples: - benefitId: 0jiJ80000008OIFIA2 benefitName: Free Shipping benefitTypeId: 0jhJ80000008OI5IAM benefitTypeName: Shipping createdRecordId: createdRecordName: description: endDate: isActive: true memberBenefitStatus: startDate: MemberProfile: title: MemberProfile required: - additionalLoyaltyProgramMemberFields - associatedAccount - associatedContact - canReceivePartnerPromotions - canReceivePromotions - enrollmentChannel - enrollmentDate - groupCreatedByMember - groupName - lastActivityDate - loyaltyProgramMemberId - loyaltyProgramName - memberCurrencies - memberStatus - memberTiers - memberType - membershipEndDate - membershipLastRenewalDate - membershipNumber - referredBy - relatedCorporateMembershipNumber - transactionJournalStatementFrequency - transactionJournalStatementLastGeneratedDate - transactionJournalStatementMethod type: object properties: additionalLoyaltyProgramMemberFields: type: object example: example_value associatedAccount: type: - string - 'null' example: 42 associatedContact: $ref: '#/components/schemas/AssociatedContact' canReceivePartnerPromotions: type: boolean example: true canReceivePromotions: type: boolean example: true enrollmentChannel: type: string example: example_value enrollmentDate: type: string example: example_value groupCreatedByMember: type: - string - 'null' example: example_value groupName: type: - string - 'null' example: example_value lastActivityDate: type: - string - 'null' example: example_value loyaltyProgramMemberId: type: string example: '500123' loyaltyProgramName: type: string example: example_value memberCurrencies: type: array items: $ref: '#/components/schemas/MemberCurrency' description: '' example: [] memberStatus: type: string example: example_value memberTiers: type: array items: $ref: '#/components/schemas/MemberTier' description: '' example: [] memberType: type: string example: example_value membershipEndDate: type: string example: example_value membershipLastRenewalDate: type: - string - 'null' example: example_value membershipNumber: type: string example: example_value referredBy: type: - string - 'null' example: example_value relatedCorporateMembershipNumber: type: - string - 'null' example: example_value transactionJournalStatementFrequency: type: string example: example_value transactionJournalStatementLastGeneratedDate: type: - string - 'null' example: example_value transactionJournalStatementMethod: type: string example: example_value examples: - additionalLoyaltyProgramMemberFields: {} associatedAccount: associatedContact: contactId: 003J8000002Yu0ZIAS email: ab@email.com firstName: Name1 lastName: Name2 canReceivePartnerPromotions: true canReceivePromotions: true enrollmentChannel: Email enrollmentDate: '2021-01-01T00:00:00.000Z' groupCreatedByMember: groupName: lastActivityDate: loyaltyProgramMemberId: 0lMJ8000000CaRMMA0 loyaltyProgramName: NTO Insider memberCurrencies: - additionalLoyaltyMemberCurrencyFields: Level_Before_Reset__c: escrowPointsBalance: 0 expirablePoints: 0 lastAccrualProcessedDate: lastEscrowProcessedDate: lastExpirationProcessRunDate: lastPointsAggregationDate: lastPointsResetDate: loyaltyMemberCurrencyName: NTO Qualifying Points loyaltyProgramCurrencyId: 0lcJ8000000CaR7IAK loyaltyProgramCurrencyName: memberCurrencyId: 0lzJ8000000CaRMIA0 nextQualifyingPointsResetDate: '2024-12-31T00:00:00.000Z' pointsBalance: 0 qualifyingPointsBalanceBeforeReset: 0 totalEscrowPointsAccrued: 0 totalEscrowRolloverPoints: 0 totalPointsAccrued: 0 totalPointsExpired: 0 totalPointsRedeemed: 0 memberStatus: Active memberTiers: - additionalLoyaltyMemberTierFields: {} areTierBenefitsAssigned: false loyaltyMemberTierId: 0lyJ8000000CaRMIA0 loyaltyMemberTierName: Bronze tierChangeReason: tierChangeReasonType: tierEffectiveDate: '2021-01-01T00:00:00.000Z' tierExpirationDate: tierGroupId: 0ltJ8000000CaR8IAK tierGroupName: tierId: 0lgJ80000008OI5IAM tierSequenceNumber: 10 memberType: Individual membershipEndDate: '2022-01-01T00:00:00.000Z' membershipLastRenewalDate: membershipNumber: Member1 referredBy: relatedCorporateMembershipNumber: transactionJournalStatementFrequency: Monthly transactionJournalStatementLastGeneratedDate: transactionJournalStatementMethod: Mail AssociatedContact: title: AssociatedContact required: - contactId - email - firstName - lastName type: object properties: contactId: type: string example: '500123' email: type: string example: user@example.com firstName: type: string example: example_value lastName: type: string example: example_value examples: - contactId: 003J8000002Yu0ZIAS email: ab@email.com firstName: Name1 lastName: Name2 MemberCurrency: title: MemberCurrency required: - additionalLoyaltyMemberCurrencyFields - escrowPointsBalance - expirablePoints - lastAccrualProcessedDate - lastEscrowProcessedDate - lastExpirationProcessRunDate - lastPointsAggregationDate - lastPointsResetDate - loyaltyMemberCurrencyName - loyaltyProgramCurrencyId - loyaltyProgramCurrencyName - memberCurrencyId - nextQualifyingPointsResetDate - pointsBalance - qualifyingPointsBalanceBeforeReset - totalEscrowPointsAccrued - totalEscrowRolloverPoints - totalPointsAccrued - totalPointsExpired - totalPointsRedeemed type: object properties: additionalLoyaltyMemberCurrencyFields: $ref: '#/components/schemas/AdditionalLoyaltyMemberCurrencyFields' escrowPointsBalance: type: integer contentEncoding: int32 example: 10 expirablePoints: type: integer contentEncoding: int32 example: 10 lastAccrualProcessedDate: type: - string - 'null' example: example_value lastEscrowProcessedDate: type: - string - 'null' example: example_value lastExpirationProcessRunDate: type: - string - 'null' example: example_value lastPointsAggregationDate: type: - string - 'null' example: example_value lastPointsResetDate: type: - string - 'null' example: example_value loyaltyMemberCurrencyName: type: string example: example_value loyaltyProgramCurrencyId: type: string example: '500123' loyaltyProgramCurrencyName: type: - string - 'null' example: example_value memberCurrencyId: type: string example: '500123' nextQualifyingPointsResetDate: type: string example: example_value pointsBalance: type: integer contentEncoding: int32 example: 10 qualifyingPointsBalanceBeforeReset: type: integer contentEncoding: int32 example: 10 totalEscrowPointsAccrued: type: integer contentEncoding: int32 example: 42 totalEscrowRolloverPoints: type: integer contentEncoding: int32 example: 42 totalPointsAccrued: type: integer contentEncoding: int32 example: 42 totalPointsExpired: type: integer contentEncoding: int32 example: 42 totalPointsRedeemed: type: integer contentEncoding: int32 example: 42 examples: - additionalLoyaltyMemberCurrencyFields: Level_Before_Reset__c: escrowPointsBalance: 0 expirablePoints: 0 lastAccrualProcessedDate: lastEscrowProcessedDate: lastExpirationProcessRunDate: lastPointsAggregationDate: lastPointsResetDate: loyaltyMemberCurrencyName: NTO Qualifying Points loyaltyProgramCurrencyId: 0lcJ8000000CaR7IAK loyaltyProgramCurrencyName: memberCurrencyId: 0lzJ8000000CaRMIA0 nextQualifyingPointsResetDate: '2024-12-31T00:00:00.000Z' pointsBalance: 0 qualifyingPointsBalanceBeforeReset: 0 totalEscrowPointsAccrued: 0 totalEscrowRolloverPoints: 0 totalPointsAccrued: 0 totalPointsExpired: 0 totalPointsRedeemed: 0 AdditionalLoyaltyMemberCurrencyFields: title: AdditionalLoyaltyMemberCurrencyFields required: - Level_Before_Reset__c type: object properties: Level_Before_Reset__c: type: - string - 'null' example: example_value examples: - Level_Before_Reset__c: MemberTier: title: MemberTier required: - additionalLoyaltyMemberTierFields - areTierBenefitsAssigned - loyaltyMemberTierId - loyaltyMemberTierName - tierChangeReason - tierChangeReasonType - tierEffectiveDate - tierExpirationDate - tierGroupId - tierGroupName - tierId - tierSequenceNumber type: object properties: additionalLoyaltyMemberTierFields: type: object example: example_value areTierBenefitsAssigned: type: boolean example: true loyaltyMemberTierId: type: string example: '500123' loyaltyMemberTierName: type: string example: example_value tierChangeReason: type: - string - 'null' example: example_value tierChangeReasonType: type: - string - 'null' example: example_value tierEffectiveDate: type: string example: example_value tierExpirationDate: type: - string - 'null' example: example_value tierGroupId: type: string example: '500123' tierGroupName: type: - string - 'null' example: example_value tierId: type: string example: '500123' tierSequenceNumber: type: integer contentEncoding: int32 example: 10 examples: - additionalLoyaltyMemberTierFields: {} areTierBenefitsAssigned: false loyaltyMemberTierId: 0lyJ8000000CaRMIA0 loyaltyMemberTierName: Bronze tierChangeReason: tierChangeReasonType: tierEffectiveDate: '2021-01-01T00:00:00.000Z' tierExpirationDate: tierGroupId: 0ltJ8000000CaR8IAK tierGroupName: tierId: 0lgJ80000008OI5IAM tierSequenceNumber: 10 RedeemVoucherRequest: title: RedeemVoucherRequest required: - currencyIsoCode - redeemAmount type: object properties: currencyIsoCode: type: string example: example_value redeemAmount: type: number example: 42.5 examples: - currencyIsoCode: EUR redeemAmount: 1.5 RedeemVoucher: title: RedeemVoucher required: - currencyIsoCode - remainingAmount type: object properties: currencyIsoCode: type: string example: example_value remainingAmount: type: number example: 42.5 examples: - currencyIsoCode: EUR remainingAmount: 3.5 TransactionHistoryRequest: title: TransactionHistoryRequest required: - membershipNumber - journalType - journalSubType - periodStartDate - periodEndDate type: object properties: membershipNumber: type: string example: example_value journalType: type: string example: example_value journalSubType: type: string example: example_value periodStartDate: type: string example: example_value periodEndDate: type: string example: example_value examples: - membershipNumber: Member1 journalType: Accrual journalSubType: Social periodStartDate: '2022-01-27T00:00:00.000Z' periodEndDate: '2022-11-27T00:00:00.000Z' TransactionHistory: title: TransactionHistory required: - message - status - totalCount - transactionJournals type: object properties: message: type: - string - 'null' example: example_value status: type: boolean example: true totalCount: type: integer contentEncoding: int32 example: 42 transactionJournals: type: array items: type: string description: '' example: [] examples: - message: status: true totalCount: 0 transactionJournals: [] TransactionLedgerSummary: title: TransactionLedgerSummary required: - message - status - transactionJournalCount - transactionJournals type: object properties: message: type: - string - 'null' example: example_value status: type: boolean example: true transactionJournalCount: type: integer contentEncoding: int32 example: 42 transactionJournals: type: array items: $ref: '#/components/schemas/TransactionJournal2' description: '' example: [] examples: - message: status: true transactionJournalCount: 1 transactionJournals: - activityDate: '2021-01-01T04:05:05.000Z' additionalTransactionJournalAttributes: [] journalSubTypeName: Member Enrollment journalTypeName: Accrual pointsChange: [] transactionJournalId: 0lVJ8000000GmaEMAS transactionJournalNumber: '00000008' TransactionJournal2: title: TransactionJournal2 required: - activityDate - additionalTransactionJournalAttributes - journalSubTypeName - journalTypeName - pointsChange - transactionJournalId - transactionJournalNumber type: object properties: activityDate: type: string example: example_value additionalTransactionJournalAttributes: type: array items: type: string description: '' example: [] journalSubTypeName: type: string example: example_value journalTypeName: type: string example: example_value pointsChange: type: array items: type: string description: '' example: [] transactionJournalId: type: string example: '500123' transactionJournalNumber: type: string example: example_value examples: - activityDate: '2021-01-01T04:05:05.000Z' additionalTransactionJournalAttributes: [] journalSubTypeName: Member Enrollment journalTypeName: Accrual pointsChange: [] transactionJournalId: 0lVJ8000000GmaEMAS transactionJournalNumber: '00000008' TransactionJournalsExecutionRequest: title: TransactionJournalsExecutionRequest required: - transactionJournals type: object properties: transactionJournals: type: array items: $ref: '#/components/schemas/TransactionJournal3' description: '' example: [] examples: - transactionJournals: - ActivityDate: '2023-11-27T12:45:19.000Z' JournalTypeId: 0lERM00000001Bb2AI LoyaltyProgramId: 0lpRM00000002YTYAY MemberId: 0lMRM0000002Fmu2AE Status: Pending appliedPromotions: - promotionId: 0c8RM0000004FiXYAU rewards: - rewardType: Discount discountAmount: 15 - rewardType: Points loyaltyProgramCurrencyName: Coins points: 100 relatedInformation: Test notes: Test - rewardType: Voucher voucherDefinitionName: 10% Discount Voucher voucherExpirationDate: '2023-12-15T00:00:00.000Z' voucherEffectiveDate: '2023-11-29T00:00:00.000Z' notes: Test - rewardType: Badge loyaltyProgramBadgeName: Gen AI Badge memberBadgeStatus: Active badgeValidityEndDate: '2023-12-15T00:00:00.000Z' reason: Test - rewardType: Game gameDefinitionName: TestGame TransactionJournal3: title: TransactionJournal3 required: - ActivityDate - JournalTypeId - LoyaltyProgramId - MemberId - Status - appliedPromotions type: object properties: ActivityDate: type: string example: example_value JournalTypeId: type: string example: '500123' LoyaltyProgramId: type: string example: '500123' MemberId: type: string example: '500123' Status: type: string example: example_value appliedPromotions: type: array items: $ref: '#/components/schemas/AppliedPromotion' description: '' example: [] examples: - ActivityDate: '2023-11-27T12:45:19.000Z' JournalTypeId: 0lERM00000001Bb2AI LoyaltyProgramId: 0lpRM00000002YTYAY MemberId: 0lMRM0000002Fmu2AE Status: Pending appliedPromotions: - promotionId: 0c8RM0000004FiXYAU rewards: - rewardType: Discount discountAmount: 15 - rewardType: Points loyaltyProgramCurrencyName: Coins points: 100 relatedInformation: Test notes: Test - rewardType: Voucher voucherDefinitionName: 10% Discount Voucher voucherExpirationDate: '2023-12-15T00:00:00.000Z' voucherEffectiveDate: '2023-11-29T00:00:00.000Z' notes: Test - rewardType: Badge loyaltyProgramBadgeName: Gen AI Badge memberBadgeStatus: Active badgeValidityEndDate: '2023-12-15T00:00:00.000Z' reason: Test - rewardType: Game gameDefinitionName: TestGame AppliedPromotion: title: AppliedPromotion required: - promotionId - rewards type: object properties: promotionId: type: string example: '500123' rewards: type: array items: $ref: '#/components/schemas/Reward' description: '' example: [] examples: - promotionId: 0c8RM0000004FiXYAU rewards: - rewardType: Discount discountAmount: 15 - rewardType: Points loyaltyProgramCurrencyName: Coins points: 100 relatedInformation: Test notes: Test - rewardType: Voucher voucherDefinitionName: 10% Discount Voucher voucherExpirationDate: '2023-12-15T00:00:00.000Z' voucherEffectiveDate: '2023-11-29T00:00:00.000Z' notes: Test - rewardType: Badge loyaltyProgramBadgeName: Gen AI Badge memberBadgeStatus: Active badgeValidityEndDate: '2023-12-15T00:00:00.000Z' reason: Test - rewardType: Game gameDefinitionName: TestGame Reward: title: Reward required: - rewardType type: object properties: rewardType: type: string example: example_value discountAmount: type: integer contentEncoding: int32 example: 42 loyaltyProgramCurrencyName: type: string example: example_value points: type: integer contentEncoding: int32 example: 10 relatedInformation: type: string example: example_value notes: type: string example: example_value voucherDefinitionName: type: string example: example_value voucherExpirationDate: type: string example: example_value voucherEffectiveDate: type: string example: example_value loyaltyProgramBadgeName: type: string example: example_value memberBadgeStatus: type: string example: example_value badgeValidityEndDate: type: string example: example_value reason: type: string example: example_value gameDefinitionName: type: string example: example_value examples: - rewardType: Discount discountAmount: 15 TransactionJournalsSimulationRequest: title: TransactionJournalsSimulationRequest required: - transactionJournals - runSetting type: object properties: transactionJournals: type: array items: $ref: '#/components/schemas/TransactionJournal4' description: '' example: [] runSetting: $ref: '#/components/schemas/RunSetting' examples: - transactionJournals: - CurrencyIsoCode: EUR ActivityDate: '2022-01-04T12:45:19.000Z' JournalDate: '2022-01-04T00:45:19.000Z' Brand: '' Establishment: Apple ExternalTransactionNumber: P1-981950 JournalTypeId: 0lET10000004CQp LoyaltyProgramId: 0lpT10000004CdN MemberId: 0lMT10000004CfA TransactionAmount: '117' TransactionLocation: HitechCity VoucherCode: '' Origin: asdf Distance: '5' Destination: Hyderabad FlightNumber: SF-Ran-001 Status: Pending runSetting: isSimulation: true TransactionJournal4: title: TransactionJournal4 required: - CurrencyIsoCode - ActivityDate - JournalDate - Brand - Establishment - ExternalTransactionNumber - JournalTypeId - LoyaltyProgramId - MemberId - TransactionAmount - TransactionLocation - VoucherCode - Origin - Distance - Destination - FlightNumber - Status type: object properties: CurrencyIsoCode: type: string example: example_value ActivityDate: type: string example: example_value JournalDate: type: string example: example_value Brand: type: string example: example_value Establishment: type: string example: example_value ExternalTransactionNumber: type: string example: example_value JournalTypeId: type: string example: '500123' LoyaltyProgramId: type: string example: '500123' MemberId: type: string example: '500123' TransactionAmount: type: string example: example_value TransactionLocation: type: string example: example_value VoucherCode: type: string example: example_value Origin: type: string example: example_value Distance: type: string example: example_value Destination: type: string example: example_value FlightNumber: type: string example: example_value Status: type: string example: example_value examples: - CurrencyIsoCode: EUR ActivityDate: '2022-01-04T12:45:19.000Z' JournalDate: '2022-01-04T00:45:19.000Z' Brand: '' Establishment: Apple ExternalTransactionNumber: P1-981950 JournalTypeId: 0lET10000004CQp LoyaltyProgramId: 0lpT10000004CdN MemberId: 0lMT10000004CfA TransactionAmount: '117' TransactionLocation: HitechCity VoucherCode: '' Origin: asdf Distance: '5' Destination: Hyderabad FlightNumber: SF-Ran-001 Status: Pending RunSetting: title: RunSetting required: - isSimulation type: object properties: isSimulation: type: boolean example: true examples: - isSimulation: true MemberVouchers: title: MemberVouchers required: - voucherCount - vouchers type: object properties: voucherCount: type: integer contentEncoding: int32 example: 42 vouchers: type: array items: type: string description: '' example: [] examples: - voucherCount: 0 vouchers: [] CancelaVoucherRequest: title: CancelaVoucherRequest required: - processParameters type: object properties: processParameters: type: array items: $ref: '#/components/schemas/ProcessParameter' description: '' example: [] examples: - processParameters: - MemberId: 0lMxx00000000BJEAY VoucherId: 0kdxx000000000B245 ProcessParameter: title: ProcessParameter required: - MemberId - VoucherId type: object properties: MemberId: type: string example: '500123' VoucherId: type: string example: '500123' examples: - MemberId: 0lMxx00000000BJEAY VoucherId: 0kdxx000000000B245 CreditPointstoMembersRequest: title: CreditPointstoMembersRequest required: - processParameters type: object properties: processParameters: type: array items: $ref: '#/components/schemas/ProcessParameter1' description: '' example: [] examples: - processParameters: - TransactionJournal: ActivityDate: '2023-08-27T00:00:00.000Z' ExternalTransactionNumber: '1' InvoiceDate: '2023-08-23T00:00:00.000Z' JournalTypeName: Accrual MembershipNumber: Member123 TransactionAmount: '45.0' CurrencyIsoCode: EUR Status: Processed PointsToCredit: 100 ProcessParameter1: title: ProcessParameter1 required: - TransactionJournal - PointsToCredit type: object properties: TransactionJournal: $ref: '#/components/schemas/TransactionJournal5' PointsToCredit: type: number example: 42.5 examples: - TransactionJournal: ActivityDate: '2023-08-27T00:00:00.000Z' ExternalTransactionNumber: '1' InvoiceDate: '2023-08-23T00:00:00.000Z' JournalTypeName: Accrual MembershipNumber: Member123 TransactionAmount: '45.0' CurrencyIsoCode: EUR Status: Processed PointsToCredit: 100 TransactionJournal5: title: TransactionJournal5 required: - ActivityDate - ExternalTransactionNumber - InvoiceDate - JournalTypeName - MembershipNumber - TransactionAmount - CurrencyIsoCode - Status type: object properties: ActivityDate: type: string example: example_value ExternalTransactionNumber: type: string example: example_value InvoiceDate: type: string example: example_value JournalTypeName: type: string example: example_value MembershipNumber: type: string example: example_value TransactionAmount: type: string example: example_value CurrencyIsoCode: type: string example: example_value Status: type: string example: example_value examples: - ActivityDate: '2023-08-27T00:00:00.000Z' ExternalTransactionNumber: '1' InvoiceDate: '2023-08-23T00:00:00.000Z' JournalTypeName: Accrual MembershipNumber: Member123 TransactionAmount: '45.0' CurrencyIsoCode: EUR Status: Processed CreditPointstoMembers: title: CreditPointstoMembers required: - message - outputParameters - simulationDetails - status type: object properties: message: type: - string - 'null' example: example_value outputParameters: $ref: '#/components/schemas/OutputParameters' simulationDetails: type: object example: example_value status: type: boolean example: true examples: - message: outputParameters: outputParameters: results: - PointsCredited: 100 simulationDetails: {} status: true OutputParameters: title: OutputParameters required: - outputParameters type: object properties: outputParameters: $ref: '#/components/schemas/OutputParameters1' examples: - outputParameters: results: - PointsCredited: 100 OutputParameters1: title: OutputParameters1 required: - results type: object properties: results: type: array items: $ref: '#/components/schemas/Results2' description: '' example: [] examples: - results: - PointsCredited: 100 Results2: title: Results2 required: - PointsCredited type: object properties: PointsCredited: type: integer contentEncoding: int32 example: 10 examples: - PointsCredited: 100 DebitPointsfromMembersRequest: title: DebitPointsfromMembersRequest required: - processParameters type: object properties: processParameters: type: array items: $ref: '#/components/schemas/ProcessParameter2' description: '' example: [] examples: - processParameters: - TransactionJournal: ActivityDate: '2023-08-27T00:00:00.000Z' ExternalTransactionNumber: '1' InvoiceDate: '2023-08-23T00:00:00.000Z' JournalTypeName: Redemption MembershipNumber: Member123 TransactionAmount: '45.0' CurrencyIsoCode: EUR Status: Processed PointsToDebit: 6 ProcessParameter2: title: ProcessParameter2 required: - TransactionJournal - PointsToDebit type: object properties: TransactionJournal: $ref: '#/components/schemas/TransactionJournal5' PointsToDebit: type: number example: 42.5 examples: - TransactionJournal: ActivityDate: '2023-08-27T00:00:00.000Z' ExternalTransactionNumber: '1' InvoiceDate: '2023-08-23T00:00:00.000Z' JournalTypeName: Redemption MembershipNumber: Member123 TransactionAmount: '45.0' CurrencyIsoCode: EUR Status: Processed PointsToDebit: 6 DebitPointsfromMembers: title: DebitPointsfromMembers required: - message - outputParameters - simulationDetails - status type: object properties: message: type: - string - 'null' example: example_value outputParameters: $ref: '#/components/schemas/OutputParameters2' simulationDetails: type: object example: example_value status: type: boolean example: true examples: - message: outputParameters: outputParameters: results: - PointsDebited: 6 simulationDetails: {} status: true OutputParameters2: title: OutputParameters2 required: - outputParameters type: object properties: outputParameters: $ref: '#/components/schemas/OutputParameters3' examples: - outputParameters: results: - PointsDebited: 6 OutputParameters3: title: OutputParameters3 required: - results type: object properties: results: type: array items: $ref: '#/components/schemas/Results3' description: '' example: [] examples: - results: - PointsDebited: 6 Results3: title: Results3 required: - PointsDebited type: object properties: PointsDebited: type: integer contentEncoding: int32 example: 10 examples: - PointsDebited: 6 EnrollforPromotionsRequest: title: EnrollforPromotionsRequest required: - processParameters type: object properties: processParameters: type: array items: $ref: '#/components/schemas/ProcessParameter3' description: '' example: [] examples: - processParameters: - MembershipNumber: Member123 PromotionId: 0c8J80000008OMhIAM ProcessParameter3: title: ProcessParameter3 required: - MembershipNumber - PromotionId type: object properties: MembershipNumber: type: string example: example_value PromotionId: type: string example: '500123' examples: - MembershipNumber: Member123 PromotionId: 0c8J80000008OMhIAM GetMemberPromotionsRequest: title: GetMemberPromotionsRequest required: - processParameters type: object properties: processParameters: type: array items: $ref: '#/components/schemas/ProcessParameter4' description: '' example: [] examples: - processParameters: - MemberId: 0lMRM0000004G5h2AE ProcessParameter4: title: ProcessParameter4 required: - MemberId type: object properties: MemberId: type: string example: '500123' examples: - MemberId: 0lMRM0000004G5h2AE IssueaVoucherRequest: title: IssueaVoucherRequest required: - processParameters type: object properties: processParameters: type: array items: $ref: '#/components/schemas/ProcessParameter5' description: '' example: [] examples: - processParameters: - MemberId: 0lMxx00000000BJEAY VoucherCode: 15OFF VoucherFaceValue: 15 VoucherExpirationDate: '2022-07-13T00:00:00.000Z' ProcessParameter5: title: ProcessParameter5 required: - MemberId - VoucherCode - VoucherFaceValue - VoucherExpirationDate type: object properties: MemberId: type: string example: '500123' VoucherCode: type: string example: example_value VoucherFaceValue: type: integer contentEncoding: int32 example: 10 VoucherExpirationDate: type: string example: example_value examples: - MemberId: 0lMxx00000000BJEAY VoucherCode: 15OFF VoucherFaceValue: 15 VoucherExpirationDate: '2022-07-13T00:00:00.000Z' UnenrollaMemberRequest: title: UnenrollaMemberRequest required: - processParameters type: object properties: processParameters: type: array items: $ref: '#/components/schemas/ProcessParameter4' description: '' example: [] examples: - processParameters: - MemberId: 0lMRM0000004G6f2AE OptOutfromaPromotionRequest: title: OptOutfromaPromotionRequest required: - processParameters type: object properties: processParameters: type: array items: $ref: '#/components/schemas/ProcessParameter7' description: '' example: [] examples: - processParameters: - MembershipNumber: M1 PromotionName: Promo1 ProcessParameter7: title: ProcessParameter7 required: - MembershipNumber - PromotionName type: object properties: MembershipNumber: type: string example: example_value PromotionName: type: string example: example_value examples: - MembershipNumber: M1 PromotionName: Promo1 UpdateMemberDetailsRequest: title: UpdateMemberDetailsRequest required: - processParameters type: object properties: processParameters: type: array items: $ref: '#/components/schemas/ProcessParameter8' description: '' example: [] examples: - processParameters: - MemberId: 0lMRM0000004G5h2AE MembershipNumber: M1234 Email: adam.smith@nto.com EnrollmentDate: '2023-05-28T00:00:00.000Z' LastName: Smith ProcessParameter8: title: ProcessParameter8 required: - MemberId - MembershipNumber - Email - EnrollmentDate - LastName type: object properties: MemberId: type: string example: '500123' MembershipNumber: type: string example: example_value Email: type: string example: user@example.com EnrollmentDate: type: string example: example_value LastName: type: string example: example_value examples: - MemberId: 0lMRM0000004G5h2AE MembershipNumber: M1234 Email: adam.smith@nto.com EnrollmentDate: '2023-05-28T00:00:00.000Z' LastName: Smith UpdateMemberTierRequest: title: UpdateMemberTierRequest required: - processParameters type: object properties: processParameters: type: array items: $ref: '#/components/schemas/ProcessParameter9' description: '' example: [] examples: - processParameters: - MemberId: 0lMRM0000004GBs2AM NewTier: Gold ReasonForChange: update tier ProcessParameter9: title: ProcessParameter9 required: - MemberId - NewTier - ReasonForChange type: object properties: MemberId: type: string example: '500123' NewTier: type: string example: example_value ReasonForChange: type: string example: example_value examples: - MemberId: 0lMRM0000004GBs2AM NewTier: Gold ReasonForChange: update tier EligiblePromotionsRequest: title: EligiblePromotionsRequest required: - cart type: object properties: cart: $ref: '#/components/schemas/Cart' examples: - cart: cartDetails: - activityStartDate: '2023-06-14T12:45:19.000Z' contactId: 003xx000004WjzAAAS transactionAmount: 499 currencyISOCode: INR cartLineDetails: - cartLineProductId: 01txx0000006iTsAAI cartLineItemQuantity: 3 cartLineItemAmount: 499 cartLineProductCatalogId: 0ZSSB0000002d8X4AQ Cart: title: Cart required: - cartDetails type: object properties: cartDetails: type: array items: $ref: '#/components/schemas/CartDetail' description: '' example: [] examples: - cartDetails: - activityStartDate: '2023-06-14T12:45:19.000Z' contactId: 003xx000004WjzAAAS transactionAmount: 499 currencyISOCode: INR cartLineDetails: - cartLineProductId: 01txx0000006iTsAAI cartLineItemQuantity: 3 cartLineItemAmount: 499 cartLineProductCatalogId: 0ZSSB0000002d8X4AQ CartDetail: title: CartDetail required: - activityStartDate - contactId - transactionAmount - currencyISOCode - cartLineDetails type: object properties: activityStartDate: type: string example: example_value contactId: type: string example: '500123' transactionAmount: type: integer contentEncoding: int32 example: 10 currencyISOCode: type: string example: example_value cartLineDetails: type: array items: $ref: '#/components/schemas/CartLineDetail' description: '' example: [] examples: - activityStartDate: '2023-06-14T12:45:19.000Z' contactId: 003xx000004WjzAAAS transactionAmount: 499 currencyISOCode: INR cartLineDetails: - cartLineProductId: 01txx0000006iTsAAI cartLineItemQuantity: 3 cartLineItemAmount: 499 cartLineProductCatalogId: 0ZSSB0000002d8X4AQ CartLineDetail: title: CartLineDetail required: - cartLineProductId - cartLineItemQuantity - cartLineItemAmount - cartLineProductCatalogId type: object properties: cartLineProductId: type: string example: '500123' cartLineItemQuantity: type: integer contentEncoding: int32 example: 10 cartLineItemAmount: type: integer contentEncoding: int32 example: 10 cartLineProductCatalogId: type: string example: '500123' examples: - cartLineProductId: 01txx0000006iTsAAI cartLineItemQuantity: 3 cartLineItemAmount: 499 cartLineProductCatalogId: 0ZSSB0000002d8X4AQ PromotionsCreationRequest: title: PromotionsCreationRequest required: - name - startDateTime - displayName - priorityNumber - description - endDateTime - objective - loyaltyProgram - additionalFieldValues - promotionLimits - promotionEligibility type: object properties: name: type: string example: Example Title startDateTime: type: string example: '2026-01-15T10:30:00Z' displayName: type: string example: example_value priorityNumber: type: integer contentEncoding: int32 example: 10 description: type: string example: A sample description. endDateTime: type: string example: '2026-01-15T10:30:00Z' objective: type: string example: example_value loyaltyProgram: $ref: '#/components/schemas/LoyaltyProgram' additionalFieldValues: $ref: '#/components/schemas/AdditionalFieldValues' promotionLimits: $ref: '#/components/schemas/PromotionLimits' promotionEligibility: $ref: '#/components/schemas/PromotionEligibility' examples: - name: Free Beverage startDateTime: '2023-06-30T00:00:00.000Z' displayName: Free Beverage priorityNumber: 1 description: Buy 2 Get 1 free endDateTime: '2023-12-30T00:00:00.000Z' objective: To increase sales loyaltyProgram: name: Program-001 additionalFieldValues: attributes: promotionLocation__c: HYD promotionLimits: perLineItemLimit: 10 vouchersLimit: 100 vouchersPerCustomerLimit: 5 perCartLimit: 5 usePerCustomerLimit: 5 liabilityLimit: 10000 loyaltyProgramCurrency: id: 0lcSB00000001TxYAI pointsPerCustomerLimit: 5 promotionEligibility: eligibleProductCategories: - id: 0ZGSB0000002td74AA eligibleProducts: - name: Coke eligibleChannels: - channelType: Offline store: name: test Store retailLocationGroup: name: test eligibleCustomerEvents: event: MemberBirthday eventPeriodUnit: Date eligibleEnrollmentPeriod: isEnrollmentRequired: true enrollmentStartDate: '2023-06-30T00:00:00.000Z' enrollmentEndDate: '2023-12-30T00:00:00.000Z' eligibleLoyaltyTiers: - tierGroup: name: Group-001 id: 0ltSB00000000T3YAI tier: name: Silver id: 0lgSB00000000srYAA LoyaltyProgram: title: LoyaltyProgram required: - name type: object properties: name: type: string example: Example Title examples: - name: Program-001 AdditionalFieldValues: title: AdditionalFieldValues required: - attributes type: object properties: attributes: $ref: '#/components/schemas/Attributes14' examples: - attributes: promotionLocation__c: HYD Attributes14: title: Attributes14 required: - promotionLocation__c type: object properties: promotionLocation__c: type: string example: example_value examples: - promotionLocation__c: HYD PromotionLimits: title: PromotionLimits required: - perLineItemLimit - vouchersLimit - vouchersPerCustomerLimit - perCartLimit - usePerCustomerLimit - liabilityLimit - loyaltyProgramCurrency - pointsPerCustomerLimit type: object properties: perLineItemLimit: type: integer contentEncoding: int32 example: 10 vouchersLimit: type: integer contentEncoding: int32 example: 10 vouchersPerCustomerLimit: type: integer contentEncoding: int32 example: 10 perCartLimit: type: integer contentEncoding: int32 example: 10 usePerCustomerLimit: type: integer contentEncoding: int32 example: 10 liabilityLimit: type: integer contentEncoding: int32 example: 10 loyaltyProgramCurrency: $ref: '#/components/schemas/LoyaltyProgramCurrency' pointsPerCustomerLimit: type: integer contentEncoding: int32 example: 10 examples: - perLineItemLimit: 10 vouchersLimit: 100 vouchersPerCustomerLimit: 5 perCartLimit: 5 usePerCustomerLimit: 5 liabilityLimit: 10000 loyaltyProgramCurrency: id: 0lcSB00000001TxYAI pointsPerCustomerLimit: 5 LoyaltyProgramCurrency: title: LoyaltyProgramCurrency required: - id type: object properties: id: type: string example: abc123 examples: - id: 0lcSB00000001TxYAI PromotionEligibility: title: PromotionEligibility required: - eligibleProductCategories - eligibleProducts - eligibleChannels - eligibleCustomerEvents - eligibleEnrollmentPeriod - eligibleLoyaltyTiers type: object properties: eligibleProductCategories: type: array items: $ref: '#/components/schemas/EligibleProductCategory' description: '' example: [] eligibleProducts: type: array items: $ref: '#/components/schemas/EligibleProduct' description: '' example: [] eligibleChannels: type: array items: $ref: '#/components/schemas/EligibleChannel' description: '' example: [] eligibleCustomerEvents: $ref: '#/components/schemas/EligibleCustomerEvents' eligibleEnrollmentPeriod: $ref: '#/components/schemas/EligibleEnrollmentPeriod' eligibleLoyaltyTiers: type: array items: $ref: '#/components/schemas/EligibleLoyaltyTier' description: '' example: [] examples: - eligibleProductCategories: - id: 0ZGSB0000002td74AA eligibleProducts: - name: Coke eligibleChannels: - channelType: Offline store: name: test Store retailLocationGroup: name: test eligibleCustomerEvents: event: MemberBirthday eventPeriodUnit: Date eligibleEnrollmentPeriod: isEnrollmentRequired: true enrollmentStartDate: '2023-06-30T00:00:00.000Z' enrollmentEndDate: '2023-12-30T00:00:00.000Z' eligibleLoyaltyTiers: - tierGroup: name: Group-001 id: 0ltSB00000000T3YAI tier: name: Silver id: 0lgSB00000000srYAA EligibleProductCategory: title: EligibleProductCategory required: - id type: object properties: id: type: string example: abc123 examples: - id: 0ZGSB0000002td74AA EligibleProduct: title: EligibleProduct required: - name type: object properties: name: type: string example: Example Title examples: - name: Coke EligibleChannel: title: EligibleChannel required: - channelType - store - retailLocationGroup type: object properties: channelType: type: string example: example_value store: $ref: '#/components/schemas/Store' retailLocationGroup: $ref: '#/components/schemas/RetailLocationGroup' examples: - channelType: Offline store: name: test Store retailLocationGroup: name: test Store: title: Store required: - name type: object properties: name: type: string example: Example Title examples: - name: test Store RetailLocationGroup: title: RetailLocationGroup required: - name type: object properties: name: type: string example: Example Title examples: - name: test EligibleCustomerEvents: title: EligibleCustomerEvents required: - event - eventPeriodUnit type: object properties: event: type: string example: example_value eventPeriodUnit: type: string example: example_value examples: - event: MemberBirthday eventPeriodUnit: Date EligibleEnrollmentPeriod: title: EligibleEnrollmentPeriod required: - isEnrollmentRequired - enrollmentStartDate - enrollmentEndDate type: object properties: isEnrollmentRequired: type: boolean example: true enrollmentStartDate: type: string example: example_value enrollmentEndDate: type: string example: example_value examples: - isEnrollmentRequired: true enrollmentStartDate: '2023-06-30T00:00:00.000Z' enrollmentEndDate: '2023-12-30T00:00:00.000Z' EligibleLoyaltyTier: title: EligibleLoyaltyTier required: - tierGroup - tier type: object properties: tierGroup: $ref: '#/components/schemas/TierGroup' tier: $ref: '#/components/schemas/Tier' examples: - tierGroup: name: Group-001 id: 0ltSB00000000T3YAI tier: name: Silver id: 0lgSB00000000srYAA TierGroup: title: TierGroup required: - name - id type: object properties: name: type: string example: Example Title id: type: string example: abc123 examples: - name: Group-001 id: 0ltSB00000000T3YAI Tier: title: Tier required: - name - id type: object properties: name: type: string example: Example Title id: type: string example: abc123 examples: - name: Silver id: 0lgSB00000000srYAA Accounts: title: Accounts required: - data - errors type: object properties: data: $ref: '#/components/schemas/Data' errors: type: array items: type: string description: '' example: [] examples: - data: uiapi: query: Account: edges: - node: Id: 0014H00002x6HUhQAM Name: value: ACME Inc. - node: Id: 0014H00002LbR7QQAV Name: value: ABC Computing - node: Id: 00158000006QBOqAAO Name: value: GenePoint - node: Id: 00158000006QBOoAAO Name: value: United Oil & Gas, Belgium - node: Id: 00158000006QBOpAAO Name: value: United Oil & Gas, Singapore - node: Id: 00158000006QBOgAAO Name: value: Edge Communications - node: Id: 00158000006QBOhAAO Name: value: Burlington Textiles Corp of America errors: [] Data: title: Data required: - uiapi type: object properties: uiapi: $ref: '#/components/schemas/Uiapi' examples: - uiapi: query: Account: edges: - node: Id: 0014H00002x6HUhQAM Name: value: ACME Inc. - node: Id: 0014H00002LbR7QQAV Name: value: ABC Computing - node: Id: 00158000006QBOqAAO Name: value: GenePoint - node: Id: 00158000006QBOoAAO Name: value: United Oil & Gas, Belgium - node: Id: 00158000006QBOpAAO Name: value: United Oil & Gas, Singapore - node: Id: 00158000006QBOgAAO Name: value: Edge Communications - node: Id: 00158000006QBOhAAO Name: value: Burlington Textiles Corp of America Uiapi: title: Uiapi required: - query type: object properties: query: $ref: '#/components/schemas/Query' examples: - query: Account: edges: - node: Id: 0014H00002x6HUhQAM Name: value: ACME Inc. - node: Id: 0014H00002LbR7QQAV Name: value: ABC Computing - node: Id: 00158000006QBOqAAO Name: value: GenePoint - node: Id: 00158000006QBOoAAO Name: value: United Oil & Gas, Belgium - node: Id: 00158000006QBOpAAO Name: value: United Oil & Gas, Singapore - node: Id: 00158000006QBOgAAO Name: value: Edge Communications - node: Id: 00158000006QBOhAAO Name: value: Burlington Textiles Corp of America Query: title: Query required: - Account type: object properties: Account: $ref: '#/components/schemas/Account7' examples: - Account: edges: - node: Id: 0014H00002x6HUhQAM Name: value: ACME Inc. - node: Id: 0014H00002LbR7QQAV Name: value: ABC Computing - node: Id: 00158000006QBOqAAO Name: value: GenePoint - node: Id: 00158000006QBOoAAO Name: value: United Oil & Gas, Belgium - node: Id: 00158000006QBOpAAO Name: value: United Oil & Gas, Singapore - node: Id: 00158000006QBOgAAO Name: value: Edge Communications - node: Id: 00158000006QBOhAAO Name: value: Burlington Textiles Corp of America Account7: title: Account7 required: - edges type: object properties: edges: type: array items: $ref: '#/components/schemas/Edge' description: '' example: [] examples: - edges: - node: Id: 0014H00002x6HUhQAM Name: value: ACME Inc. - node: Id: 0014H00002LbR7QQAV Name: value: ABC Computing - node: Id: 00158000006QBOqAAO Name: value: GenePoint - node: Id: 00158000006QBOoAAO Name: value: United Oil & Gas, Belgium - node: Id: 00158000006QBOpAAO Name: value: United Oil & Gas, Singapore - node: Id: 00158000006QBOgAAO Name: value: Edge Communications - node: Id: 00158000006QBOhAAO Name: value: Burlington Textiles Corp of America Edge: title: Edge required: - node type: object properties: node: $ref: '#/components/schemas/Node' examples: - node: Id: 0014H00002x6HUhQAM Name: value: ACME Inc. Node: title: Node required: - Id - Name type: object properties: Id: type: string example: abc123 Name: $ref: '#/components/schemas/Name' examples: - Id: 0014H00002x6HUhQAM Name: value: ACME Inc. Name: title: Name required: - value type: object properties: value: type: string example: example_value examples: - value: ACME Inc. AccountbyId: title: AccountbyId required: - data - errors type: object properties: data: $ref: '#/components/schemas/Data' errors: type: array items: type: string description: '' example: [] examples: - data: uiapi: query: Account: edges: - node: Id: 0014H00002LbR7QQAV Name: value: ABC Computing errors: [] AccountswithFilter: title: AccountswithFilter required: - data - errors type: object properties: data: $ref: '#/components/schemas/Data' errors: type: array items: type: string description: '' example: [] examples: - data: uiapi: query: Account: edges: - node: Id: 00158000006QBOoAAO Name: value: United Oil & Gas, Belgium - node: Id: 00158000006QBOlAAO Name: value: United Oil & Gas Corp. - node: Id: 00158000006QBOpAAO Name: value: United Oil & Gas, Singapore errors: [] AccountswithCursorsPagination: title: AccountswithCursorsPagination required: - data - errors type: object properties: data: $ref: '#/components/schemas/Data3' errors: type: array items: type: string description: '' example: [] examples: - data: uiapi: query: Account: edges: - node: Id: 0014H00004CXfY8QAL Name: value: An Account - node: Id: 0014H00002E6wi6QAB Name: value: Sample Account - node: Id: 0014H00002x6HUhQAM Name: value: ACME Inc. totalCount: 524 pageInfo: hasNextPage: true hasPreviousPage: false startCursor: djE6MA== endCursor: djE6Mg== errors: [] Data3: title: Data3 required: - uiapi type: object properties: uiapi: $ref: '#/components/schemas/Uiapi3' examples: - uiapi: query: Account: edges: - node: Id: 0014H00004CXfY8QAL Name: value: An Account - node: Id: 0014H00002E6wi6QAB Name: value: Sample Account - node: Id: 0014H00002x6HUhQAM Name: value: ACME Inc. totalCount: 524 pageInfo: hasNextPage: true hasPreviousPage: false startCursor: djE6MA== endCursor: djE6Mg== Uiapi3: title: Uiapi3 required: - query type: object properties: query: $ref: '#/components/schemas/Query3' examples: - query: Account: edges: - node: Id: 0014H00004CXfY8QAL Name: value: An Account - node: Id: 0014H00002E6wi6QAB Name: value: Sample Account - node: Id: 0014H00002x6HUhQAM Name: value: ACME Inc. totalCount: 524 pageInfo: hasNextPage: true hasPreviousPage: false startCursor: djE6MA== endCursor: djE6Mg== Query3: title: Query3 required: - Account type: object properties: Account: $ref: '#/components/schemas/Account10' examples: - Account: edges: - node: Id: 0014H00004CXfY8QAL Name: value: An Account - node: Id: 0014H00002E6wi6QAB Name: value: Sample Account - node: Id: 0014H00002x6HUhQAM Name: value: ACME Inc. totalCount: 524 pageInfo: hasNextPage: true hasPreviousPage: false startCursor: djE6MA== endCursor: djE6Mg== Account10: title: Account10 required: - edges - totalCount - pageInfo type: object properties: edges: type: array items: $ref: '#/components/schemas/Edge' description: '' example: [] totalCount: type: integer contentEncoding: int32 example: 42 pageInfo: $ref: '#/components/schemas/PageInfo' examples: - edges: - node: Id: 0014H00004CXfY8QAL Name: value: An Account - node: Id: 0014H00002E6wi6QAB Name: value: Sample Account - node: Id: 0014H00002x6HUhQAM Name: value: ACME Inc. totalCount: 524 pageInfo: hasNextPage: true hasPreviousPage: false startCursor: djE6MA== endCursor: djE6Mg== PageInfo: title: PageInfo required: - hasNextPage - hasPreviousPage - startCursor - endCursor type: object properties: hasNextPage: type: boolean example: true hasPreviousPage: type: boolean example: true startCursor: type: string example: example_value endCursor: type: string example: example_value examples: - hasNextPage: true hasPreviousPage: false startCursor: djE6MA== endCursor: djE6Mg== Contacts1: title: Contacts1 required: - data - errors type: object properties: data: $ref: '#/components/schemas/Data4' errors: type: array items: type: string description: '' example: [] examples: - data: uiapi: query: Contact: edges: - node: Id: 0034H000029oY0FQAU Name: value: Contact One - node: Id: 0034H000029oY0GQAU Name: value: Contact Two - node: Id: 0034H000029oY0HQAU Name: value: Contact Three - node: Id: 0034H000029oXu7QAE Name: value: Sample Contact - node: Id: 0034H00002JsInQQAV Name: value: John Doe - node: Id: 00358000006c0kdAAA Name: value: John Dodge - node: Id: 00358000006c0keAAA Name: value: Sarah Smith - node: Id: 00358000006c0kfAAA Name: value: George Dapper - node: Id: 00358000006c0kgAAA Name: value: Jack Dodge 2 - node: Id: 00358000006c0msAAA Name: value: Jessica Jones errors: [] Data4: title: Data4 required: - uiapi type: object properties: uiapi: $ref: '#/components/schemas/Uiapi4' examples: - uiapi: query: Contact: edges: - node: Id: 0034H000029oY0FQAU Name: value: Contact One - node: Id: 0034H000029oY0GQAU Name: value: Contact Two - node: Id: 0034H000029oY0HQAU Name: value: Contact Three - node: Id: 0034H000029oXu7QAE Name: value: Sample Contact - node: Id: 0034H00002JsInQQAV Name: value: John Doe - node: Id: 00358000006c0kdAAA Name: value: John Dodge - node: Id: 00358000006c0keAAA Name: value: Sarah Smith - node: Id: 00358000006c0kfAAA Name: value: George Dapper - node: Id: 00358000006c0kgAAA Name: value: Jack Dodge 2 - node: Id: 00358000006c0msAAA Name: value: Jessica Jones Uiapi4: title: Uiapi4 required: - query type: object properties: query: $ref: '#/components/schemas/Query4' examples: - query: Contact: edges: - node: Id: 0034H000029oY0FQAU Name: value: Contact One - node: Id: 0034H000029oY0GQAU Name: value: Contact Two - node: Id: 0034H000029oY0HQAU Name: value: Contact Three - node: Id: 0034H000029oXu7QAE Name: value: Sample Contact - node: Id: 0034H00002JsInQQAV Name: value: John Doe - node: Id: 00358000006c0kdAAA Name: value: John Dodge - node: Id: 00358000006c0keAAA Name: value: Sarah Smith - node: Id: 00358000006c0kfAAA Name: value: George Dapper - node: Id: 00358000006c0kgAAA Name: value: Jack Dodge 2 - node: Id: 00358000006c0msAAA Name: value: Jessica Jones Query4: title: Query4 required: - Contact type: object properties: Contact: $ref: '#/components/schemas/Contact' examples: - Contact: edges: - node: Id: 0034H000029oY0FQAU Name: value: Contact One - node: Id: 0034H000029oY0GQAU Name: value: Contact Two - node: Id: 0034H000029oY0HQAU Name: value: Contact Three - node: Id: 0034H000029oXu7QAE Name: value: Sample Contact - node: Id: 0034H00002JsInQQAV Name: value: John Doe - node: Id: 00358000006c0kdAAA Name: value: John Dodge - node: Id: 00358000006c0keAAA Name: value: Sarah Smith - node: Id: 00358000006c0kfAAA Name: value: George Dapper - node: Id: 00358000006c0kgAAA Name: value: Jack Dodge 2 - node: Id: 00358000006c0msAAA Name: value: Jessica Jones Contact: title: Contact required: - edges type: object properties: edges: type: array items: $ref: '#/components/schemas/Edge' description: '' example: [] examples: - edges: - node: Id: 0034H000029oY0FQAU Name: value: Contact One - node: Id: 0034H000029oY0GQAU Name: value: Contact Two - node: Id: 0034H000029oY0HQAU Name: value: Contact Three - node: Id: 0034H000029oXu7QAE Name: value: Sample Contact - node: Id: 0034H00002JsInQQAV Name: value: John Doe - node: Id: 00358000006c0kdAAA Name: value: John Dodge - node: Id: 00358000006c0keAAA Name: value: Sarah Smith - node: Id: 00358000006c0kfAAA Name: value: George Dapper - node: Id: 00358000006c0kgAAA Name: value: Jack Dodge 2 - node: Id: 00358000006c0msAAA Name: value: Jessica Jones ContactsOrdered: title: ContactsOrdered required: - data - errors type: object properties: data: $ref: '#/components/schemas/Data4' errors: type: array items: type: string description: '' example: [] examples: - data: uiapi: query: Contact: edges: - node: Id: 00358000006c0n7AAA Name: value: Alice Black - node: Id: 0035800000iXli3AAC Name: value: Amanda Smith - node: Id: 00358000006woxyAAA Name: value: Andy Young - node: Id: 00358000006woy6AAA Name: value: Arthur Song - node: Id: 00358000006woy7AAA Name: value: Ashley James - node: Id: 00358000006woyBAAQ Name: value: Avi Green - node: Id: 00358000006woy3AAA Name: value: Babara Levy - node: Id: 00358000006c0n6AAA Name: value: Basil Wenceslas - node: Id: 0034H000029oY0FQAU Name: value: Contact One - node: Id: 0034H000029oY0HQAU Name: value: Contact Three errors: [] ContactswithAccountName: title: ContactswithAccountName required: - data - errors type: object properties: data: $ref: '#/components/schemas/Data6' errors: type: array items: type: string description: '' example: [] examples: - data: uiapi: query: Contact: edges: - node: Id: 00358000006c0mzAAA Name: value: Julia Wilds Account: Name: value: University of Arizona - node: Id: 00358000006woy5AAA Name: value: Jane Grey Account: Name: value: University of Arizona - node: Id: 00358000006c0n6AAA Name: value: Basil Wenceslas Account: Name: value: University of Arizona - node: Id: 00358000006c0kdAAA Name: value: John Dodge Account: Name: value: United Oil & Gas, Singapore - node: Id: 00358000006woy9AAA Name: value: Liz D'Cruz Account: Name: value: United Oil & Gas, Singapore - node: Id: 00358000006woy8AAA Name: value: Tom Ripley Account: Name: value: United Oil & Gas, Singapore - node: Id: 00358000006c0kfAAA Name: value: George Dapper Account: Name: value: United Oil & Gas Corp. - node: Id: 00358000006woy1AAA Name: value: Stella Pavlova Account: Name: value: United Oil & Gas Corp. - node: Id: 00358000006woyBAAQ Name: value: Avi Green Account: Name: value: United Oil & Gas Corp. - node: Id: 00358000006c0mxAAA Name: value: Winter Drake Account: Name: value: United Oil & Gas Corp. errors: [] Data6: title: Data6 required: - uiapi type: object properties: uiapi: $ref: '#/components/schemas/Uiapi6' examples: - uiapi: query: Contact: edges: - node: Id: 00358000006c0mzAAA Name: value: Julia Wilds Account: Name: value: University of Arizona - node: Id: 00358000006woy5AAA Name: value: Jane Grey Account: Name: value: University of Arizona - node: Id: 00358000006c0n6AAA Name: value: Basil Wenceslas Account: Name: value: University of Arizona - node: Id: 00358000006c0kdAAA Name: value: John Dodge Account: Name: value: United Oil & Gas, Singapore - node: Id: 00358000006woy9AAA Name: value: Liz D'Cruz Account: Name: value: United Oil & Gas, Singapore - node: Id: 00358000006woy8AAA Name: value: Tom Ripley Account: Name: value: United Oil & Gas, Singapore - node: Id: 00358000006c0kfAAA Name: value: George Dapper Account: Name: value: United Oil & Gas Corp. - node: Id: 00358000006woy1AAA Name: value: Stella Pavlova Account: Name: value: United Oil & Gas Corp. - node: Id: 00358000006woyBAAQ Name: value: Avi Green Account: Name: value: United Oil & Gas Corp. - node: Id: 00358000006c0mxAAA Name: value: Winter Drake Account: Name: value: United Oil & Gas Corp. Uiapi6: title: Uiapi6 required: - query type: object properties: query: $ref: '#/components/schemas/Query6' examples: - query: Contact: edges: - node: Id: 00358000006c0mzAAA Name: value: Julia Wilds Account: Name: value: University of Arizona - node: Id: 00358000006woy5AAA Name: value: Jane Grey Account: Name: value: University of Arizona - node: Id: 00358000006c0n6AAA Name: value: Basil Wenceslas Account: Name: value: University of Arizona - node: Id: 00358000006c0kdAAA Name: value: John Dodge Account: Name: value: United Oil & Gas, Singapore - node: Id: 00358000006woy9AAA Name: value: Liz D'Cruz Account: Name: value: United Oil & Gas, Singapore - node: Id: 00358000006woy8AAA Name: value: Tom Ripley Account: Name: value: United Oil & Gas, Singapore - node: Id: 00358000006c0kfAAA Name: value: George Dapper Account: Name: value: United Oil & Gas Corp. - node: Id: 00358000006woy1AAA Name: value: Stella Pavlova Account: Name: value: United Oil & Gas Corp. - node: Id: 00358000006woyBAAQ Name: value: Avi Green Account: Name: value: United Oil & Gas Corp. - node: Id: 00358000006c0mxAAA Name: value: Winter Drake Account: Name: value: United Oil & Gas Corp. Query6: title: Query6 required: - Contact type: object properties: Contact: $ref: '#/components/schemas/Contact2' examples: - Contact: edges: - node: Id: 00358000006c0mzAAA Name: value: Julia Wilds Account: Name: value: University of Arizona - node: Id: 00358000006woy5AAA Name: value: Jane Grey Account: Name: value: University of Arizona - node: Id: 00358000006c0n6AAA Name: value: Basil Wenceslas Account: Name: value: University of Arizona - node: Id: 00358000006c0kdAAA Name: value: John Dodge Account: Name: value: United Oil & Gas, Singapore - node: Id: 00358000006woy9AAA Name: value: Liz D'Cruz Account: Name: value: United Oil & Gas, Singapore - node: Id: 00358000006woy8AAA Name: value: Tom Ripley Account: Name: value: United Oil & Gas, Singapore - node: Id: 00358000006c0kfAAA Name: value: George Dapper Account: Name: value: United Oil & Gas Corp. - node: Id: 00358000006woy1AAA Name: value: Stella Pavlova Account: Name: value: United Oil & Gas Corp. - node: Id: 00358000006woyBAAQ Name: value: Avi Green Account: Name: value: United Oil & Gas Corp. - node: Id: 00358000006c0mxAAA Name: value: Winter Drake Account: Name: value: United Oil & Gas Corp. Contact2: title: Contact2 required: - edges type: object properties: edges: type: array items: $ref: '#/components/schemas/Edge6' description: '' example: [] examples: - edges: - node: Id: 00358000006c0mzAAA Name: value: Julia Wilds Account: Name: value: University of Arizona - node: Id: 00358000006woy5AAA Name: value: Jane Grey Account: Name: value: University of Arizona - node: Id: 00358000006c0n6AAA Name: value: Basil Wenceslas Account: Name: value: University of Arizona - node: Id: 00358000006c0kdAAA Name: value: John Dodge Account: Name: value: United Oil & Gas, Singapore - node: Id: 00358000006woy9AAA Name: value: Liz D'Cruz Account: Name: value: United Oil & Gas, Singapore - node: Id: 00358000006woy8AAA Name: value: Tom Ripley Account: Name: value: United Oil & Gas, Singapore - node: Id: 00358000006c0kfAAA Name: value: George Dapper Account: Name: value: United Oil & Gas Corp. - node: Id: 00358000006woy1AAA Name: value: Stella Pavlova Account: Name: value: United Oil & Gas Corp. - node: Id: 00358000006woyBAAQ Name: value: Avi Green Account: Name: value: United Oil & Gas Corp. - node: Id: 00358000006c0mxAAA Name: value: Winter Drake Account: Name: value: United Oil & Gas Corp. Edge6: title: Edge6 required: - node type: object properties: node: $ref: '#/components/schemas/Node6' examples: - node: Id: 00358000006c0mzAAA Name: value: Julia Wilds Account: Name: value: University of Arizona Node6: title: Node6 required: - Id - Name - Account type: object properties: Id: type: string example: abc123 Name: $ref: '#/components/schemas/Name' Account: $ref: '#/components/schemas/Account11' examples: - Id: 00358000006c0mzAAA Name: value: Julia Wilds Account: Name: value: University of Arizona Account11: title: Account11 required: - Name type: object properties: Name: $ref: '#/components/schemas/Name' examples: - Name: value: University of Arizona OpportunitiesClosingSoon: title: OpportunitiesClosingSoon required: - data - errors type: object properties: data: $ref: '#/components/schemas/Data7' errors: type: array items: type: string description: '' example: [] examples: - data: uiapi: query: Opportunity: edges: - node: Id: 00658000003ceg9AAA Name: value: United Oil Refinery Generators StageName: value: Negotiation/Review CloseDate: value: '2023-10-25T00:00:00.000Z' displayValue: 25/10/2023 Description: value: This is a sample opportunity. errors: [] Data7: title: Data7 required: - uiapi type: object properties: uiapi: $ref: '#/components/schemas/Uiapi7' examples: - uiapi: query: Opportunity: edges: - node: Id: 00658000003ceg9AAA Name: value: United Oil Refinery Generators StageName: value: Negotiation/Review CloseDate: value: '2023-10-25T00:00:00.000Z' displayValue: 25/10/2023 Description: value: This is a sample opportunity. Uiapi7: title: Uiapi7 required: - query type: object properties: query: $ref: '#/components/schemas/Query7' examples: - query: Opportunity: edges: - node: Id: 00658000003ceg9AAA Name: value: United Oil Refinery Generators StageName: value: Negotiation/Review CloseDate: value: '2023-10-25T00:00:00.000Z' displayValue: 25/10/2023 Description: value: This is a sample opportunity. Query7: title: Query7 required: - Opportunity type: object properties: Opportunity: $ref: '#/components/schemas/Opportunity' examples: - Opportunity: edges: - node: Id: 00658000003ceg9AAA Name: value: United Oil Refinery Generators StageName: value: Negotiation/Review CloseDate: value: '2023-10-25T00:00:00.000Z' displayValue: 25/10/2023 Description: value: This is a sample opportunity. Opportunity: title: Opportunity required: - edges type: object properties: edges: type: array items: $ref: '#/components/schemas/Edge7' description: '' example: [] examples: - edges: - node: Id: 00658000003ceg9AAA Name: value: United Oil Refinery Generators StageName: value: Negotiation/Review CloseDate: value: '2023-10-25T00:00:00.000Z' displayValue: 25/10/2023 Description: value: This is a sample opportunity. Edge7: title: Edge7 required: - node type: object properties: node: $ref: '#/components/schemas/Node7' examples: - node: Id: 00658000003ceg9AAA Name: value: United Oil Refinery Generators StageName: value: Negotiation/Review CloseDate: value: '2023-10-25T00:00:00.000Z' displayValue: 25/10/2023 Description: value: This is a sample opportunity. Node7: title: Node7 required: - Id - Name - StageName - CloseDate - Description type: object properties: Id: type: string example: abc123 Name: $ref: '#/components/schemas/Name' StageName: $ref: '#/components/schemas/StageName' CloseDate: $ref: '#/components/schemas/CloseDate' Description: $ref: '#/components/schemas/Description' examples: - Id: 00658000003ceg9AAA Name: value: United Oil Refinery Generators StageName: value: Negotiation/Review CloseDate: value: '2023-10-25T00:00:00.000Z' displayValue: 25/10/2023 Description: value: This is a sample opportunity. StageName: title: StageName required: - value type: object properties: value: type: string example: example_value examples: - value: Negotiation/Review CloseDate: title: CloseDate required: - value - displayValue type: object properties: value: type: string example: example_value displayValue: type: string example: example_value examples: - value: '2023-10-25T00:00:00.000Z' displayValue: 25/10/2023 Description: title: Description required: - value type: object properties: value: type: string example: example_value examples: - value: This is a sample opportunity. OpportunitiesClosingSoonExplicitAND: title: OpportunitiesClosingSoonExplicitAND required: - data - errors type: object properties: data: $ref: '#/components/schemas/Data7' errors: type: array items: type: string description: '' example: [] examples: - data: uiapi: query: Opportunity: edges: - node: Id: 00658000003ceg9AAA Name: value: United Oil Refinery Generators StageName: value: Negotiation/Review CloseDate: value: '2023-10-25T00:00:00.000Z' displayValue: 25/10/2023 Description: value: This is a sample opportunity. errors: [] OpportunitiesEarlyStage: title: OpportunitiesEarlyStage required: - data - errors type: object properties: data: $ref: '#/components/schemas/Data7' errors: type: array items: type: string description: '' example: [] examples: - data: uiapi: query: Opportunity: edges: - node: Id: 00658000003cegEAAQ Name: value: Pyramid Emergency Generators CloseDate: value: '2014-04-19T00:00:00.000Z' displayValue: 19/04/2014 Description: value: This is a sample description StageName: value: Prospecting - node: Id: 00658000003cegXAAQ Name: value: United Oil Plant Standby Generators CloseDate: value: '2014-04-19T00:00:00.000Z' displayValue: 19/04/2014 Description: value: 00658000003cegXAAQ StageName: value: Needs Analysis errors: [] OpportunitiesNotClosed: title: OpportunitiesNotClosed required: - data - errors type: object properties: data: $ref: '#/components/schemas/Data10' errors: type: array items: type: string description: '' example: [] examples: - data: uiapi: query: Opportunity: edges: - node: Id: 00658000003cegYAAQ Name: value: Edge Emergency Generator CloseDate: value: '2014-04-19T00:00:00.000Z' displayValue: 19/04/2014 StageName: value: Id. Decision Makers - node: Id: 00658000003cegEAAQ Name: value: Pyramid Emergency Generators CloseDate: value: '2014-04-19T00:00:00.000Z' displayValue: 19/04/2014 StageName: value: Prospecting - node: Id: 00658000003ceg4AAA Name: value: Dickenson Mobile Generators CloseDate: value: '2014-04-19T00:00:00.000Z' displayValue: 19/04/2014 StageName: value: Qualification - node: Id: 00658000003ceg8AAA Name: value: Grand Hotels Kitchen Generator CloseDate: value: '2014-04-19T00:00:00.000Z' displayValue: 19/04/2014 StageName: value: Id. Decision Makers - node: Id: 00658000003cegBAAQ Name: value: Grand Hotels Guest Portable Generators CloseDate: value: '2014-04-19T00:00:00.000Z' displayValue: 19/04/2014 StageName: value: Value Proposition - node: Id: 00658000003ceg5AAA Name: value: United Oil Office Portable Generators CloseDate: value: '2014-04-19T00:00:00.000Z' displayValue: 19/04/2014 StageName: value: Negotiation/Review - node: Id: 00658000003ceg9AAA Name: value: United Oil Refinery Generators CloseDate: value: '2023-10-25T00:00:00.000Z' displayValue: 25/10/2023 StageName: value: Negotiation/Review - node: Id: 00658000003cegIAAQ Name: value: United Oil Installations CloseDate: value: '2014-04-19T00:00:00.000Z' displayValue: 19/04/2014 StageName: value: Negotiation/Review - node: Id: 00658000003cegXAAQ Name: value: United Oil Plant Standby Generators CloseDate: value: '2014-04-19T00:00:00.000Z' displayValue: 19/04/2014 StageName: value: Needs Analysis - node: Id: 00658000003cegFAAQ Name: value: Express Logistics Portable Truck Generators CloseDate: value: '2014-04-19T00:00:00.000Z' displayValue: 19/04/2014 StageName: value: Value Proposition errors: [] Data10: title: Data10 required: - uiapi type: object properties: uiapi: $ref: '#/components/schemas/Uiapi10' examples: - uiapi: query: Opportunity: edges: - node: Id: 00658000003cegYAAQ Name: value: Edge Emergency Generator CloseDate: value: '2014-04-19T00:00:00.000Z' displayValue: 19/04/2014 StageName: value: Id. Decision Makers - node: Id: 00658000003cegEAAQ Name: value: Pyramid Emergency Generators CloseDate: value: '2014-04-19T00:00:00.000Z' displayValue: 19/04/2014 StageName: value: Prospecting - node: Id: 00658000003ceg4AAA Name: value: Dickenson Mobile Generators CloseDate: value: '2014-04-19T00:00:00.000Z' displayValue: 19/04/2014 StageName: value: Qualification - node: Id: 00658000003ceg8AAA Name: value: Grand Hotels Kitchen Generator CloseDate: value: '2014-04-19T00:00:00.000Z' displayValue: 19/04/2014 StageName: value: Id. Decision Makers - node: Id: 00658000003cegBAAQ Name: value: Grand Hotels Guest Portable Generators CloseDate: value: '2014-04-19T00:00:00.000Z' displayValue: 19/04/2014 StageName: value: Value Proposition - node: Id: 00658000003ceg5AAA Name: value: United Oil Office Portable Generators CloseDate: value: '2014-04-19T00:00:00.000Z' displayValue: 19/04/2014 StageName: value: Negotiation/Review - node: Id: 00658000003ceg9AAA Name: value: United Oil Refinery Generators CloseDate: value: '2023-10-25T00:00:00.000Z' displayValue: 25/10/2023 StageName: value: Negotiation/Review - node: Id: 00658000003cegIAAQ Name: value: United Oil Installations CloseDate: value: '2014-04-19T00:00:00.000Z' displayValue: 19/04/2014 StageName: value: Negotiation/Review - node: Id: 00658000003cegXAAQ Name: value: United Oil Plant Standby Generators CloseDate: value: '2014-04-19T00:00:00.000Z' displayValue: 19/04/2014 StageName: value: Needs Analysis - node: Id: 00658000003cegFAAQ Name: value: Express Logistics Portable Truck Generators CloseDate: value: '2014-04-19T00:00:00.000Z' displayValue: 19/04/2014 StageName: value: Value Proposition Uiapi10: title: Uiapi10 required: - query type: object properties: query: $ref: '#/components/schemas/Query10' examples: - query: Opportunity: edges: - node: Id: 00658000003cegYAAQ Name: value: Edge Emergency Generator CloseDate: value: '2014-04-19T00:00:00.000Z' displayValue: 19/04/2014 StageName: value: Id. Decision Makers - node: Id: 00658000003cegEAAQ Name: value: Pyramid Emergency Generators CloseDate: value: '2014-04-19T00:00:00.000Z' displayValue: 19/04/2014 StageName: value: Prospecting - node: Id: 00658000003ceg4AAA Name: value: Dickenson Mobile Generators CloseDate: value: '2014-04-19T00:00:00.000Z' displayValue: 19/04/2014 StageName: value: Qualification - node: Id: 00658000003ceg8AAA Name: value: Grand Hotels Kitchen Generator CloseDate: value: '2014-04-19T00:00:00.000Z' displayValue: 19/04/2014 StageName: value: Id. Decision Makers - node: Id: 00658000003cegBAAQ Name: value: Grand Hotels Guest Portable Generators CloseDate: value: '2014-04-19T00:00:00.000Z' displayValue: 19/04/2014 StageName: value: Value Proposition - node: Id: 00658000003ceg5AAA Name: value: United Oil Office Portable Generators CloseDate: value: '2014-04-19T00:00:00.000Z' displayValue: 19/04/2014 StageName: value: Negotiation/Review - node: Id: 00658000003ceg9AAA Name: value: United Oil Refinery Generators CloseDate: value: '2023-10-25T00:00:00.000Z' displayValue: 25/10/2023 StageName: value: Negotiation/Review - node: Id: 00658000003cegIAAQ Name: value: United Oil Installations CloseDate: value: '2014-04-19T00:00:00.000Z' displayValue: 19/04/2014 StageName: value: Negotiation/Review - node: Id: 00658000003cegXAAQ Name: value: United Oil Plant Standby Generators CloseDate: value: '2014-04-19T00:00:00.000Z' displayValue: 19/04/2014 StageName: value: Needs Analysis - node: Id: 00658000003cegFAAQ Name: value: Express Logistics Portable Truck Generators CloseDate: value: '2014-04-19T00:00:00.000Z' displayValue: 19/04/2014 StageName: value: Value Proposition Query10: title: Query10 required: - Opportunity type: object properties: Opportunity: $ref: '#/components/schemas/Opportunity3' examples: - Opportunity: edges: - node: Id: 00658000003cegYAAQ Name: value: Edge Emergency Generator CloseDate: value: '2014-04-19T00:00:00.000Z' displayValue: 19/04/2014 StageName: value: Id. Decision Makers - node: Id: 00658000003cegEAAQ Name: value: Pyramid Emergency Generators CloseDate: value: '2014-04-19T00:00:00.000Z' displayValue: 19/04/2014 StageName: value: Prospecting - node: Id: 00658000003ceg4AAA Name: value: Dickenson Mobile Generators CloseDate: value: '2014-04-19T00:00:00.000Z' displayValue: 19/04/2014 StageName: value: Qualification - node: Id: 00658000003ceg8AAA Name: value: Grand Hotels Kitchen Generator CloseDate: value: '2014-04-19T00:00:00.000Z' displayValue: 19/04/2014 StageName: value: Id. Decision Makers - node: Id: 00658000003cegBAAQ Name: value: Grand Hotels Guest Portable Generators CloseDate: value: '2014-04-19T00:00:00.000Z' displayValue: 19/04/2014 StageName: value: Value Proposition - node: Id: 00658000003ceg5AAA Name: value: United Oil Office Portable Generators CloseDate: value: '2014-04-19T00:00:00.000Z' displayValue: 19/04/2014 StageName: value: Negotiation/Review - node: Id: 00658000003ceg9AAA Name: value: United Oil Refinery Generators CloseDate: value: '2023-10-25T00:00:00.000Z' displayValue: 25/10/2023 StageName: value: Negotiation/Review - node: Id: 00658000003cegIAAQ Name: value: United Oil Installations CloseDate: value: '2014-04-19T00:00:00.000Z' displayValue: 19/04/2014 StageName: value: Negotiation/Review - node: Id: 00658000003cegXAAQ Name: value: United Oil Plant Standby Generators CloseDate: value: '2014-04-19T00:00:00.000Z' displayValue: 19/04/2014 StageName: value: Needs Analysis - node: Id: 00658000003cegFAAQ Name: value: Express Logistics Portable Truck Generators CloseDate: value: '2014-04-19T00:00:00.000Z' displayValue: 19/04/2014 StageName: value: Value Proposition Opportunity3: title: Opportunity3 required: - edges type: object properties: edges: type: array items: $ref: '#/components/schemas/Edge10' description: '' example: [] examples: - edges: - node: Id: 00658000003cegYAAQ Name: value: Edge Emergency Generator CloseDate: value: '2014-04-19T00:00:00.000Z' displayValue: 19/04/2014 StageName: value: Id. Decision Makers - node: Id: 00658000003cegEAAQ Name: value: Pyramid Emergency Generators CloseDate: value: '2014-04-19T00:00:00.000Z' displayValue: 19/04/2014 StageName: value: Prospecting - node: Id: 00658000003ceg4AAA Name: value: Dickenson Mobile Generators CloseDate: value: '2014-04-19T00:00:00.000Z' displayValue: 19/04/2014 StageName: value: Qualification - node: Id: 00658000003ceg8AAA Name: value: Grand Hotels Kitchen Generator CloseDate: value: '2014-04-19T00:00:00.000Z' displayValue: 19/04/2014 StageName: value: Id. Decision Makers - node: Id: 00658000003cegBAAQ Name: value: Grand Hotels Guest Portable Generators CloseDate: value: '2014-04-19T00:00:00.000Z' displayValue: 19/04/2014 StageName: value: Value Proposition - node: Id: 00658000003ceg5AAA Name: value: United Oil Office Portable Generators CloseDate: value: '2014-04-19T00:00:00.000Z' displayValue: 19/04/2014 StageName: value: Negotiation/Review - node: Id: 00658000003ceg9AAA Name: value: United Oil Refinery Generators CloseDate: value: '2023-10-25T00:00:00.000Z' displayValue: 25/10/2023 StageName: value: Negotiation/Review - node: Id: 00658000003cegIAAQ Name: value: United Oil Installations CloseDate: value: '2014-04-19T00:00:00.000Z' displayValue: 19/04/2014 StageName: value: Negotiation/Review - node: Id: 00658000003cegXAAQ Name: value: United Oil Plant Standby Generators CloseDate: value: '2014-04-19T00:00:00.000Z' displayValue: 19/04/2014 StageName: value: Needs Analysis - node: Id: 00658000003cegFAAQ Name: value: Express Logistics Portable Truck Generators CloseDate: value: '2014-04-19T00:00:00.000Z' displayValue: 19/04/2014 StageName: value: Value Proposition Edge10: title: Edge10 required: - node type: object properties: node: $ref: '#/components/schemas/Node10' examples: - node: Id: 00658000003cegYAAQ Name: value: Edge Emergency Generator CloseDate: value: '2014-04-19T00:00:00.000Z' displayValue: 19/04/2014 StageName: value: Id. Decision Makers Node10: title: Node10 required: - Id - Name - CloseDate - StageName type: object properties: Id: type: string example: abc123 Name: $ref: '#/components/schemas/Name' CloseDate: $ref: '#/components/schemas/CloseDate' StageName: $ref: '#/components/schemas/StageName' examples: - Id: 00658000003cegYAAQ Name: value: Edge Emergency Generator CloseDate: value: '2014-04-19T00:00:00.000Z' displayValue: 19/04/2014 StageName: value: Id. Decision Makers CreateAccountSuccess: title: CreateAccountSuccess required: - data - errors type: object properties: data: $ref: '#/components/schemas/Data11' errors: type: array items: type: string description: '' example: [] examples: - data: uiapi: AccountCreate: Record: Id: Name: value: Trailblazer Express errors: [] Data11: title: Data11 required: - uiapi type: object properties: uiapi: $ref: '#/components/schemas/Uiapi11' examples: - uiapi: AccountCreate: Record: Id: Name: value: Trailblazer Express Uiapi11: title: Uiapi11 required: - AccountCreate type: object properties: AccountCreate: $ref: '#/components/schemas/AccountCreate' examples: - AccountCreate: Record: Id: Name: value: Trailblazer Express AccountCreate: title: AccountCreate required: - Record type: object properties: Record: $ref: '#/components/schemas/Record13' examples: - Record: Id: Name: value: Trailblazer Express Record13: title: Record13 required: - Id - Name type: object properties: Id: type: string example: abc123 Name: $ref: '#/components/schemas/Name' examples: - Id: Name: value: Trailblazer Express DeleteAccount: title: DeleteAccount required: - data - errors type: object properties: data: $ref: '#/components/schemas/Data12' errors: type: array items: type: string description: '' example: [] examples: - data: uiapi: AccountDelete: Id: errors: [] Data12: title: Data12 required: - uiapi type: object properties: uiapi: $ref: '#/components/schemas/Uiapi12' examples: - uiapi: AccountDelete: Id: Uiapi12: title: Uiapi12 required: - AccountDelete type: object properties: AccountDelete: $ref: '#/components/schemas/AccountDelete' examples: - AccountDelete: Id: AccountDelete: title: AccountDelete required: - Id type: object properties: Id: type: string example: abc123 examples: - Id: UpateAccountSuccess: title: UpateAccountSuccess required: - data - errors type: object properties: data: $ref: '#/components/schemas/Data13' errors: type: array items: type: string description: '' example: [] examples: - data: uiapi: AccountUpdate: success: true errors: [] Data13: title: Data13 required: - uiapi type: object properties: uiapi: $ref: '#/components/schemas/Uiapi13' examples: - uiapi: AccountUpdate: success: true Uiapi13: title: Uiapi13 required: - AccountUpdate type: object properties: AccountUpdate: $ref: '#/components/schemas/AccountUpdate' examples: - AccountUpdate: success: true AccountUpdate: title: AccountUpdate required: - success type: object properties: success: type: boolean example: true examples: - success: true Envelope1: title: Envelope1 required: - Header - Body type: object properties: Header: allOf: - $ref: '#/components/schemas/Header5' - xml: name: Header namespace: http://schemas.xmlsoap.org/soap/envelope/ prefix: soapenv attribute: false wrapped: false example: example_value Body: allOf: - $ref: '#/components/schemas/Body17' - xml: name: Body namespace: http://schemas.xmlsoap.org/soap/envelope/ prefix: soapenv attribute: false wrapped: false example: example_value xml: name: Envelope namespace: http://schemas.xmlsoap.org/soap/envelope/ prefix: soapenv attribute: false wrapped: false Header5: title: Header5 required: - SessionHeader type: object properties: SessionHeader: allOf: - $ref: '#/components/schemas/SessionHeader1' - xml: name: SessionHeader namespace: http://soap.sforce.com/2006/04/metadata prefix: tns attribute: false wrapped: false example: example_value xml: name: Header namespace: http://schemas.xmlsoap.org/soap/envelope/ prefix: soapenv attribute: false wrapped: false SessionHeader1: title: SessionHeader1 required: - sessionId type: object properties: sessionId: type: string xml: name: sessionId namespace: http://soap.sforce.com/2006/04/metadata prefix: tns attribute: false wrapped: false example: '500123' xml: name: SessionHeader namespace: http://soap.sforce.com/2006/04/metadata prefix: tns attribute: false wrapped: false Body17: title: Body17 required: - describeMetadata type: object properties: describeMetadata: allOf: - $ref: '#/components/schemas/describeMetadata' - xml: name: describeMetadata namespace: http://soap.sforce.com/2006/04/metadata prefix: tns attribute: false wrapped: false example: example_value xml: name: Body namespace: http://schemas.xmlsoap.org/soap/envelope/ prefix: soapenv attribute: false wrapped: false describeMetadata: title: describeMetadata required: - asOfVersion type: object properties: asOfVersion: type: number xml: name: asOfVersion namespace: '' attribute: false wrapped: false example: 42.5 xml: name: describeMetadata namespace: http://soap.sforce.com/2006/04/metadata prefix: tns attribute: false wrapped: false Envelope2: title: Envelope2 required: - Body type: object properties: Body: allOf: - $ref: '#/components/schemas/Body18' - xml: name: Body namespace: http://schemas.xmlsoap.org/soap/envelope/ prefix: soapenv attribute: false wrapped: false example: example_value xml: name: Envelope namespace: http://schemas.xmlsoap.org/soap/envelope/ prefix: soapenv attribute: false wrapped: false Body18: title: Body18 required: - describeMetadataResponse type: object properties: describeMetadataResponse: allOf: - $ref: '#/components/schemas/describeMetadataResponse' - xml: name: describeMetadataResponse namespace: http://soap.sforce.com/2006/04/metadata attribute: false wrapped: false example: example_value xml: name: Body namespace: http://schemas.xmlsoap.org/soap/envelope/ prefix: soapenv attribute: false wrapped: false describeMetadataResponse: title: describeMetadataResponse required: - result type: object properties: result: allOf: - $ref: '#/components/schemas/result3' - xml: name: result namespace: http://soap.sforce.com/2006/04/metadata attribute: false wrapped: false example: example_value xml: name: describeMetadataResponse namespace: http://soap.sforce.com/2006/04/metadata attribute: false wrapped: false result3: title: result3 required: - metadataObjects - organizationNamespace - partialSaveAllowed - testRequired type: object properties: metadataObjects: type: array items: $ref: '#/components/schemas/metadataObjects' description: '' xml: namespace: http://soap.sforce.com/2006/04/metadata attribute: false wrapped: false example: [] organizationNamespace: type: string xml: name: organizationNamespace namespace: http://soap.sforce.com/2006/04/metadata attribute: false wrapped: false example: example_value partialSaveAllowed: type: boolean xml: name: partialSaveAllowed namespace: http://soap.sforce.com/2006/04/metadata attribute: false wrapped: false example: true testRequired: type: boolean xml: name: testRequired namespace: http://soap.sforce.com/2006/04/metadata attribute: false wrapped: false example: true xml: name: result namespace: http://soap.sforce.com/2006/04/metadata attribute: false wrapped: false metadataObjects: title: metadataObjects required: - directoryName - inFolder - metaFile - xmlName type: object properties: directoryName: type: string xml: name: directoryName namespace: http://soap.sforce.com/2006/04/metadata attribute: false wrapped: false example: example_value inFolder: type: boolean xml: name: inFolder namespace: http://soap.sforce.com/2006/04/metadata attribute: false wrapped: false example: true metaFile: type: boolean xml: name: metaFile namespace: http://soap.sforce.com/2006/04/metadata attribute: false wrapped: false example: true suffix: type: string xml: name: suffix namespace: http://soap.sforce.com/2006/04/metadata attribute: false wrapped: false example: example_value xmlName: type: string xml: name: xmlName namespace: http://soap.sforce.com/2006/04/metadata attribute: false wrapped: false example: example_value childXmlNames: type: string xml: name: childXmlNames namespace: http://soap.sforce.com/2006/04/metadata attribute: false wrapped: false example: example_value xml: name: metadataObjects namespace: http://soap.sforce.com/2006/04/metadata attribute: false wrapped: false Envelope3: title: Envelope3 required: - Header - Body type: object properties: Header: allOf: - $ref: '#/components/schemas/Header5' - xml: name: Header namespace: http://schemas.xmlsoap.org/soap/envelope/ prefix: soapenv attribute: false wrapped: false example: example_value Body: allOf: - $ref: '#/components/schemas/Body19' - xml: name: Body namespace: http://schemas.xmlsoap.org/soap/envelope/ prefix: soapenv attribute: false wrapped: false example: example_value xml: name: Envelope namespace: http://schemas.xmlsoap.org/soap/envelope/ prefix: soapenv attribute: false wrapped: false Body19: title: Body19 required: - describeValueType type: object properties: describeValueType: allOf: - $ref: '#/components/schemas/describeValueType' - xml: name: describeValueType namespace: http://soap.sforce.com/2006/04/metadata prefix: tns attribute: false wrapped: false example: example_value xml: name: Body namespace: http://schemas.xmlsoap.org/soap/envelope/ prefix: soapenv attribute: false wrapped: false describeValueType: title: describeValueType required: - type type: object properties: type: type: string xml: name: type namespace: '' attribute: false wrapped: false example: example_value xml: name: describeValueType namespace: http://soap.sforce.com/2006/04/metadata prefix: tns attribute: false wrapped: false Envelope4: title: Envelope4 required: - Body type: object properties: Body: allOf: - $ref: '#/components/schemas/Body20' - xml: name: Body namespace: http://schemas.xmlsoap.org/soap/envelope/ prefix: soapenv attribute: false wrapped: false example: example_value xml: name: Envelope namespace: http://schemas.xmlsoap.org/soap/envelope/ prefix: soapenv attribute: false wrapped: false Body20: title: Body20 required: - describeValueTypeResponse type: object properties: describeValueTypeResponse: allOf: - $ref: '#/components/schemas/describeValueTypeResponse' - xml: name: describeValueTypeResponse namespace: http://soap.sforce.com/2006/04/metadata attribute: false wrapped: false example: example_value xml: name: Body namespace: http://schemas.xmlsoap.org/soap/envelope/ prefix: soapenv attribute: false wrapped: false describeValueTypeResponse: title: describeValueTypeResponse required: - result type: object properties: result: allOf: - $ref: '#/components/schemas/result4' - xml: name: result namespace: http://soap.sforce.com/2006/04/metadata attribute: false wrapped: false example: example_value xml: name: describeValueTypeResponse namespace: http://soap.sforce.com/2006/04/metadata attribute: false wrapped: false result4: title: result4 required: - apiCreatable - apiDeletable - apiReadable - apiUpdatable type: object properties: apiCreatable: type: boolean xml: name: apiCreatable namespace: http://soap.sforce.com/2006/04/metadata attribute: false wrapped: false example: true apiDeletable: type: boolean xml: name: apiDeletable namespace: http://soap.sforce.com/2006/04/metadata attribute: false wrapped: false example: true apiReadable: type: boolean xml: name: apiReadable namespace: http://soap.sforce.com/2006/04/metadata attribute: false wrapped: false example: true apiUpdatable: type: boolean xml: name: apiUpdatable namespace: http://soap.sforce.com/2006/04/metadata attribute: false wrapped: false example: true xml: name: result namespace: http://soap.sforce.com/2006/04/metadata attribute: false wrapped: false Envelope5: title: Envelope5 required: - Header - Body type: object properties: Header: allOf: - $ref: '#/components/schemas/Header5' - xml: name: Header namespace: http://schemas.xmlsoap.org/soap/envelope/ prefix: soapenv attribute: false wrapped: false example: example_value Body: allOf: - $ref: '#/components/schemas/Body21' - xml: name: Body namespace: http://schemas.xmlsoap.org/soap/envelope/ prefix: soapenv attribute: false wrapped: false example: example_value xml: name: Envelope namespace: http://schemas.xmlsoap.org/soap/envelope/ prefix: soapenv attribute: false wrapped: false Body21: title: Body21 required: - listMetadata type: object properties: listMetadata: allOf: - $ref: '#/components/schemas/listMetadata' - xml: name: listMetadata namespace: http://soap.sforce.com/2006/04/metadata prefix: tns attribute: false wrapped: false example: example_value xml: name: Body namespace: http://schemas.xmlsoap.org/soap/envelope/ prefix: soapenv attribute: false wrapped: false listMetadata: title: listMetadata required: - listMetadataQuery - asOfVersion type: object properties: listMetadataQuery: allOf: - $ref: '#/components/schemas/listMetadataQuery' - xml: name: listMetadataQuery namespace: '' attribute: false wrapped: false example: example_value asOfVersion: type: number xml: name: asOfVersion namespace: '' attribute: false wrapped: false example: 42.5 xml: name: listMetadata namespace: http://soap.sforce.com/2006/04/metadata prefix: tns attribute: false wrapped: false listMetadataQuery: title: listMetadataQuery required: - type - folder type: object properties: type: type: string xml: name: type namespace: '' attribute: false wrapped: false example: example_value folder: type: string xml: name: folder namespace: '' attribute: false wrapped: false example: example_value xml: name: listMetadataQuery namespace: '' attribute: false wrapped: false Envelope6: title: Envelope6 required: - Body type: object properties: Body: allOf: - $ref: '#/components/schemas/Body22' - xml: name: Body namespace: http://schemas.xmlsoap.org/soap/envelope/ prefix: soapenv attribute: false wrapped: false example: example_value xml: name: Envelope namespace: http://schemas.xmlsoap.org/soap/envelope/ prefix: soapenv attribute: false wrapped: false Body22: title: Body22 required: - listMetadataResponse type: object properties: listMetadataResponse: allOf: - $ref: '#/components/schemas/listMetadataResponse' - xml: name: listMetadataResponse namespace: http://soap.sforce.com/2006/04/metadata attribute: false wrapped: false example: example_value xml: name: Body namespace: http://schemas.xmlsoap.org/soap/envelope/ prefix: soapenv attribute: false wrapped: false listMetadataResponse: title: listMetadataResponse required: - result type: object properties: result: type: array items: $ref: '#/components/schemas/result5' description: '' xml: namespace: http://soap.sforce.com/2006/04/metadata attribute: false wrapped: false example: [] xml: name: listMetadataResponse namespace: http://soap.sforce.com/2006/04/metadata attribute: false wrapped: false result5: title: result5 required: - createdById - createdByName - createdDate - fileName - fullName - id - lastModifiedById - lastModifiedByName - lastModifiedDate - namespacePrefix - type type: object properties: createdById: type: string xml: name: createdById namespace: http://soap.sforce.com/2006/04/metadata attribute: false wrapped: false example: '500123' createdByName: type: string xml: name: createdByName namespace: http://soap.sforce.com/2006/04/metadata attribute: false wrapped: false example: example_value createdDate: type: string xml: name: createdDate namespace: http://soap.sforce.com/2006/04/metadata attribute: false wrapped: false example: example_value fileName: type: string xml: name: fileName namespace: http://soap.sforce.com/2006/04/metadata attribute: false wrapped: false example: example_value fullName: type: string xml: name: fullName namespace: http://soap.sforce.com/2006/04/metadata attribute: false wrapped: false example: example_value id: type: string xml: name: id namespace: http://soap.sforce.com/2006/04/metadata attribute: false wrapped: false example: abc123 lastModifiedById: type: string xml: name: lastModifiedById namespace: http://soap.sforce.com/2006/04/metadata attribute: false wrapped: false example: '500123' lastModifiedByName: type: string xml: name: lastModifiedByName namespace: http://soap.sforce.com/2006/04/metadata attribute: false wrapped: false example: example_value lastModifiedDate: type: string xml: name: lastModifiedDate namespace: http://soap.sforce.com/2006/04/metadata attribute: false wrapped: false example: example_value namespacePrefix: type: string xml: name: namespacePrefix namespace: http://soap.sforce.com/2006/04/metadata attribute: false wrapped: false example: example_value type: type: string xml: name: type namespace: http://soap.sforce.com/2006/04/metadata attribute: false wrapped: false example: example_value xml: name: result namespace: http://soap.sforce.com/2006/04/metadata attribute: false wrapped: false runExpressionSetRequest: title: runExpressionSetRequest required: - inputs type: object properties: inputs: type: array items: type: object description: '' example: [] examples: - inputs: - {} Status400-EmptyExpressionSetAPIName1: title: Status400-EmptyExpressionSetAPIName1 required: - actionName - errors - isSuccess - outputValues - version type: object properties: actionName: type: string example: example_value errors: type: array items: $ref: '#/components/schemas/Errors7' description: '' example: [] isSuccess: type: boolean example: true outputValues: type: - string - 'null' example: example_value version: type: integer contentEncoding: int32 example: 10 examples: - actionName: ':expressionSetAPIName' errors: - statusCode: MISSING_RECORD message: 'Action name not found: :expressionSetAPIName' fields: [] isSuccess: false outputValues: version: 1 Status400-ExpressionNotFound1: title: Status400-ExpressionNotFound1 required: - actionName - errors - isSuccess - outputValues - version type: object properties: actionName: type: string example: example_value errors: type: array items: $ref: '#/components/schemas/Errors7' description: '' example: [] isSuccess: type: boolean example: true outputValues: type: - string - 'null' example: example_value version: type: integer contentEncoding: int32 example: 10 examples: - actionName: ghfgh errors: - statusCode: MISSING_RECORD message: 'Action name not found: ghfgh' fields: [] isSuccess: false outputValues: version: 1 Status400-InvalidBody1: title: Status400-InvalidBody1 required: - errorCode - message type: object properties: errorCode: type: string example: example_value message: type: string example: example_value examples: - errorCode: BAD_REQUEST message: Invalid Request Body Status200-Successfull: title: Status200-Successfull required: - actionName - errors - isSuccess - outputValues - version type: object properties: actionName: type: string example: example_value errors: type: - string - 'null' example: example_value isSuccess: type: boolean example: true outputValues: $ref: '#/components/schemas/OutputValues' version: type: integer contentEncoding: int32 example: 10 examples: - actionName: myExpressionSet errors: isSuccess: true outputValues: output: 1 version: 1 OutputValues: title: OutputValues required: - output type: object properties: output: type: integer contentEncoding: int32 example: 10 examples: - output: 1 runDecisionMatrixRequest: title: runDecisionMatrixRequest required: - inputs type: object properties: inputs: type: array items: $ref: '#/components/schemas/Inputs1' description: '' example: [] examples: - inputs: - myColumnInput: One Inputs1: title: Inputs1 required: - myColumnInput type: object properties: myColumnInput: type: string example: example_value examples: - myColumnInput: One runDecisionMatrix: title: runDecisionMatrix required: - actionName - errors - isSuccess - outputValues - version type: object properties: actionName: type: string example: example_value errors: type: - string - 'null' example: example_value isSuccess: type: boolean example: true outputValues: $ref: '#/components/schemas/OutputValues1' version: type: integer contentEncoding: int32 example: 10 examples: - actionName: myDecisionMatrix errors: isSuccess: true outputValues: myColumnOutput: '1' version: 1 OutputValues1: title: OutputValues1 required: - myColumnOutput type: object properties: myColumnOutput: type: string example: example_value examples: - myColumnOutput: '1' LaunchFlowRequest: title: LaunchFlowRequest required: - inputs type: object properties: inputs: type: array items: type: object description: '' example: [] examples: - inputs: - {} SObjectCreateRequest: title: SObjectCreateRequest required: - Name type: object properties: Name: type: string example: Example Title examples: - Name: Some value SObjectCreate: title: SObjectCreate required: - id - success - errors type: object properties: id: type: string example: abc123 success: type: boolean example: true errors: type: array items: type: string description: '' example: [] examples: - id: 003J800000DeOXjIAN success: true errors: [] SObjectDescribe: title: SObjectDescribe required: - actionOverrides - activateable - associateEntityType - associateParentEntity - childRelationships - compactLayoutable - createable - custom - customSetting - deepCloneable - defaultImplementation - deletable - deprecatedAndHidden - extendedBy - extendsInterfaces - feedEnabled - fields - hasSubtypes - implementedBy - implementsInterfaces - isInterface - isSubtype - keyPrefix - label - labelPlural - layoutable - listviewable - lookupLayoutable - mergeable - mruEnabled - name - namedLayoutInfos - networkScopeFieldName - queryable - recordTypeInfos - replicateable - retrieveable - searchLayoutable - searchable - sobjectDescribeOption - supportedScopes - triggerable - undeletable - updateable - urls type: object properties: actionOverrides: type: array items: $ref: '#/components/schemas/ActionOverride' description: '' example: [] activateable: type: boolean example: true associateEntityType: type: - string - 'null' example: example_value associateParentEntity: type: - string - 'null' example: example_value childRelationships: type: array items: $ref: '#/components/schemas/ChildRelationship' description: '' example: [] compactLayoutable: type: boolean example: true createable: type: boolean example: true custom: type: boolean example: true customSetting: type: boolean example: true deepCloneable: type: boolean example: true defaultImplementation: type: - string - 'null' example: example_value deletable: type: boolean example: true deprecatedAndHidden: type: boolean example: true extendedBy: type: - string - 'null' example: example_value extendsInterfaces: type: - string - 'null' example: example_value feedEnabled: type: boolean example: true fields: type: array items: $ref: '#/components/schemas/Field9' description: '' example: [] hasSubtypes: type: boolean example: true implementedBy: type: - string - 'null' example: example_value implementsInterfaces: type: - string - 'null' example: example_value isInterface: type: boolean example: true isSubtype: type: boolean example: true keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value layoutable: type: boolean example: true listviewable: type: - string - 'null' example: example_value lookupLayoutable: type: - string - 'null' example: example_value mergeable: type: boolean example: true mruEnabled: type: boolean example: true name: type: string example: Example Title namedLayoutInfos: type: array items: type: string description: '' example: [] networkScopeFieldName: type: - string - 'null' example: example_value queryable: type: boolean example: true recordTypeInfos: type: array items: $ref: '#/components/schemas/RecordTypeInfo' description: '' example: [] replicateable: type: boolean example: true retrieveable: type: boolean example: true searchLayoutable: type: boolean example: true searchable: type: boolean example: true sobjectDescribeOption: type: string example: example_value supportedScopes: type: array items: $ref: '#/components/schemas/SupportedScope' description: '' example: [] triggerable: type: boolean example: true undeletable: type: boolean example: true updateable: type: boolean example: true urls: $ref: '#/components/schemas/Urls4' ActionOverride: title: ActionOverride required: - formFactor - isAvailableInTouch - name - pageId - url type: object properties: formFactor: type: string example: example_value isAvailableInTouch: type: boolean example: true name: type: string example: Example Title pageId: type: string example: '500123' url: type: - string - 'null' example: https://www.example.com examples: - formFactor: LARGE isAvailableInTouch: false name: View pageId: 0M0580000008YfXCAU url: ChildRelationship: title: ChildRelationship required: - cascadeDelete - childSObject - deprecatedAndHidden - field - junctionIdListNames - junctionReferenceTo - relationshipName - restrictedDelete type: object properties: cascadeDelete: type: boolean example: true childSObject: type: string example: example_value deprecatedAndHidden: type: boolean example: true field: type: string example: example_value junctionIdListNames: type: array items: type: string description: '' example: [] junctionReferenceTo: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value restrictedDelete: type: boolean example: true examples: - cascadeDelete: true childSObject: AIInsightValue deprecatedAndHidden: false field: SobjectLookupValueId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: restrictedDelete: false Field9: title: Field9 required: - aggregatable - aiPredictionField - autoNumber - byteLength - calculated - calculatedFormula - cascadeDelete - caseSensitive - compoundFieldName - controllerName - createable - custom - defaultValue - defaultValueFormula - defaultedOnCreate - dependentPicklist - deprecatedAndHidden - digits - displayLocationInDecimal - encrypted - externalId - extraTypeInfo - filterable - filteredLookupInfo - formulaTreatNullNumberAsZero - groupable - highScaleNumber - htmlFormatted - idLookup - inlineHelpText - label - length - mask - maskType - name - nameField - namePointing - nillable - permissionable - picklistValues - polymorphicForeignKey - precision - queryByDistance - referenceTargetField - referenceTo - relationshipName - relationshipOrder - restrictedDelete - restrictedPicklist - scale - searchPrefilterable - soapType - sortable - type - unique - updateable - writeRequiresMasterRead type: object properties: aggregatable: type: boolean example: true aiPredictionField: type: boolean example: true autoNumber: type: boolean example: true byteLength: type: integer contentEncoding: int32 example: 10 calculated: type: boolean example: true calculatedFormula: type: - string - 'null' example: example_value cascadeDelete: type: boolean example: true caseSensitive: type: boolean example: true compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value createable: type: boolean example: true custom: type: boolean example: true defaultValue: oneOf: - type: - string - 'null' - type: boolean - {} example: example_value defaultValueFormula: type: - string - 'null' example: example_value defaultedOnCreate: type: boolean example: true dependentPicklist: type: boolean example: true deprecatedAndHidden: type: boolean example: true digits: type: integer contentEncoding: int32 example: 10 displayLocationInDecimal: type: boolean example: true encrypted: type: boolean example: true externalId: type: boolean example: '500123' extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value formulaTreatNullNumberAsZero: type: boolean example: true groupable: type: boolean example: true highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true idLookup: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 mask: type: - string - 'null' example: example_value maskType: type: - string - 'null' example: example_value name: type: string example: Example Title nameField: type: boolean example: true namePointing: type: boolean example: true nillable: type: boolean example: true permissionable: type: boolean example: true picklistValues: type: array items: oneOf: - $ref: '#/components/schemas/PicklistValue' - allOf: - $ref: '#/components/schemas/PicklistValue31' - examples: - active: true defaultValue: false label: Mr. validFor: value: Mr. description: '' example: [] polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 queryByDistance: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceTo: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value relationshipOrder: type: - string - 'null' example: example_value restrictedDelete: type: boolean example: true restrictedPicklist: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true soapType: type: string example: example_value sortable: type: boolean example: true type: type: string example: example_value unique: type: boolean example: true updateable: type: boolean example: true writeRequiresMasterRead: type: boolean example: true PicklistValue31: title: PicklistValue31 required: - active - defaultValue - label - validFor - value type: object properties: active: type: boolean example: true defaultValue: type: boolean example: true label: type: string example: Example Title validFor: type: - string - 'null' example: example_value value: type: string example: example_value examples: - active: true defaultValue: false label: Mr. validFor: value: Mr. RecordTypeInfo: title: RecordTypeInfo required: - active - available - defaultRecordTypeMapping - developerName - master - name - recordTypeId - urls type: object properties: active: type: boolean example: true available: type: boolean example: true defaultRecordTypeMapping: type: boolean example: true developerName: type: string example: example_value master: type: boolean example: true name: type: string example: Example Title recordTypeId: type: string example: '500123' urls: $ref: '#/components/schemas/Urls3' examples: - active: true available: true defaultRecordTypeMapping: true developerName: Master master: true name: Master recordTypeId: 012000000000000AAA urls: layout: >- /services/data/v58.0/sobjects/Lead/describe/layouts/012000000000000AAA Urls3: title: Urls3 required: - layout type: object properties: layout: type: string example: example_value examples: - layout: >- /services/data/v58.0/sobjects/Lead/describe/layouts/012000000000000AAA Urls4: title: Urls4 required: - compactLayouts - rowTemplate - approvalLayouts - uiDetailTemplate - uiEditTemplate - listviews - describe - uiNewRecord - quickActions - layouts - sobject type: object properties: compactLayouts: type: string example: example_value rowTemplate: type: string example: example_value approvalLayouts: type: string example: example_value uiDetailTemplate: type: string example: example_value uiEditTemplate: type: string example: example_value listviews: type: string example: example_value describe: type: string example: example_value uiNewRecord: type: string example: example_value quickActions: type: string example: example_value layouts: type: string example: example_value sobject: type: string example: example_value examples: - compactLayouts: /services/data/v58.0/sobjects/Lead/describe/compactLayouts rowTemplate: /services/data/v58.0/sobjects/Lead/{ID} approvalLayouts: /services/data/v58.0/sobjects/Lead/describe/approvalLayouts uiDetailTemplate: https://pozil-dev-ed.my.salesforce.com/{ID} uiEditTemplate: https://pozil-dev-ed.my.salesforce.com/{ID}/e listviews: /services/data/v58.0/sobjects/Lead/listviews describe: /services/data/v58.0/sobjects/Lead/describe uiNewRecord: https://pozil-dev-ed.my.salesforce.com/00Q/e quickActions: /services/data/v58.0/sobjects/Lead/quickActions layouts: /services/data/v58.0/sobjects/Lead/describe/layouts sobject: /services/data/v58.0/sobjects/Lead SObjectRowsUpdateRequest: title: SObjectRowsUpdateRequest required: - field API name type: object properties: field API name: type: string example: example_value examples: - field API name: value GenerateOpenAPISchema: title: GenerateOpenAPISchema required: - href type: object properties: href: type: string example: example_value examples: - href: /v59.0/async/specifications/oas3/NTByNEgwMDAwMDAwMDAx RetrieveOpenAPISchema: title: RetrieveOpenAPISchema required: - openapi - info - servers - security - paths - components type: object properties: openapi: type: string example: example_value info: $ref: '#/components/schemas/Info' servers: type: array items: $ref: '#/components/schemas/Server' description: '' example: [] security: type: array items: $ref: '#/components/schemas/Security' description: '' example: [] paths: $ref: '#/components/schemas/Paths' components: $ref: '#/components/schemas/Components' Info: title: Info required: - title - description - version type: object properties: title: type: string example: Example Title description: type: string example: A sample description. version: type: string example: example_value examples: - title: Lightning Platform REST API description: >- REST API provides you with programmatic access to your data in Salesforce. The flexibility and scalability of REST API make it an excellent choice for integrating Salesforce into your applications and for performing complex operations on a large scale. You can use REST API tools to create, manipulate, and search data in Salesforce by sending HTTP requests to endpoints in Salesforce. Depending on where you send requests, you access and operate on different pieces of information, called resources. Resources include records, query results, metadata, and more. version: '60.0' Server: title: Server required: - url type: object properties: url: type: string example: https://www.example.com examples: - url: https://pozil-dev-ed.my.salesforce.com/services/data/v60.0 Security: title: Security type: object properties: bearerAuth: type: array items: type: string description: '' example: [] oAuth2: type: array items: type: string description: '' example: [] openIDConnectDiscovery: type: array items: type: string description: '' example: [] examples: - bearerAuth: [] Paths: title: Paths required: - /sobjects/Contact type: object properties: /sobjects/Contact: $ref: '#/components/schemas/SobjectsContact' SobjectsContact: title: SobjectsContact required: - description - get - post type: object properties: description: type: string example: A sample description. get: $ref: '#/components/schemas/Get' post: $ref: '#/components/schemas/Post' Get: title: Get required: - responses type: object properties: responses: type: object additionalProperties: $ref: '#/components/schemas/m200' example: example_value m200: title: m200 required: - description - content type: object properties: description: type: string example: A sample description. content: $ref: '#/components/schemas/Content' examples: - description: Status Code 200 content: application/json: schema: $ref: '#/components/schemas/SObjectRootInfo' Content: title: Content required: - application/json type: object properties: application/json: $ref: '#/components/schemas/ApplicationJson' examples: - application/json: schema: $ref: '#/components/schemas/SObjectRootInfo' ApplicationJson: title: ApplicationJson required: - schema type: object properties: schema: $ref: '#/components/schemas/Schema' examples: - schema: $ref: '#/components/schemas/SObjectRootInfo' Schema: title: Schema required: - $ref type: object properties: $ref: type: string example: example_value m304: title: m304 required: - description - content type: object properties: description: type: string example: A sample description. content: $ref: '#/components/schemas/Content1' examples: - description: Status Code 304 content: application/json: schema: type: array items: $ref: '#/components/schemas/RestApiError' Content1: title: Content1 required: - application/json type: object properties: application/json: $ref: '#/components/schemas/ApplicationJson1' examples: - application/json: schema: type: array items: $ref: '#/components/schemas/RestApiError' ApplicationJson1: title: ApplicationJson1 required: - schema type: object properties: schema: $ref: '#/components/schemas/Schema1' examples: - schema: type: array items: $ref: '#/components/schemas/RestApiError' Schema1: title: Schema1 required: - type - items type: object properties: type: type: string example: example_value items: $ref: '#/components/schemas/Items' examples: - type: array items: $ref: '#/components/schemas/RestApiError' Items: title: Items required: - $ref type: object properties: $ref: type: string example: example_value Post: title: Post required: - parameters - requestBody - responses type: object properties: parameters: type: array items: $ref: '#/components/schemas/Parameter4' description: '' example: [] requestBody: $ref: '#/components/schemas/RequestBody' responses: type: object additionalProperties: $ref: '#/components/schemas/m200' example: example_value Parameter4: title: Parameter4 required: - name - in - description - required - schema type: object properties: name: type: string example: Example Title in: type: string example: example_value description: type: string example: A sample description. required: type: boolean example: true schema: $ref: '#/components/schemas/Schema10' examples: - name: Content-Type in: header description: >- An optional header, which can only be used with POST, specifying the format for the request and response. Possible choices are: Content-Type: application/json Content-Type: application/xml required: true schema: type: string Schema10: title: Schema10 required: - type type: object properties: type: type: string example: example_value examples: - type: string RequestBody: title: RequestBody required: - content type: object properties: content: $ref: '#/components/schemas/Content' examples: - content: application/json: schema: $ref: '#/components/schemas/ContactSObject' Components: title: Components required: - schemas - securitySchemes type: object properties: schemas: $ref: '#/components/schemas/Schemas' securitySchemes: $ref: '#/components/schemas/SecuritySchemes' examples: - schemas: SObjectRootInfo: type: object properties: objectDescribe: type: object properties: name: type: string label: type: string labelPlural: type: string keyPrefix: type: string custom: type: boolean customSetting: type: boolean activateable: type: boolean createable: type: boolean updateable: type: boolean deletable: type: boolean undeletable: type: boolean mergeable: type: boolean replicateable: type: boolean triggerable: type: boolean queryable: type: boolean retrieveable: type: boolean searchable: type: boolean layoutable: type: boolean feedEnabled: type: boolean mruEnabled: type: boolean hasSubtypes: type: boolean isSubtype: type: boolean dataTranslationEnabled: type: boolean isInterface: type: boolean deepCloneable: type: boolean associateEntityType: type: string associateParentEntity: type: string deprecatedAndHidden: type: boolean urls: type: object additionalProperties: type: string recentItems: type: array items: type: object properties: id: type: string RestApiError: type: object properties: errorCode: type: string message: type: string AccountSObject: type: object properties: Id: type: string IsDeleted: type: boolean description: >- Indicates whether the object has been moved to the Recycle Bin (true) or not (false). Label is Deleted. MasterRecordId: type: string description: >- If this object was deleted as the result of a merge, this field contains the ID of the record that was kept. If this object was deleted for any other reason, or has not been deleted, the value is null. Name: type: string description: >- Required. Label is Account Name. Name of the account. Maximum size is 255 characters. If the account has a record type of Person Account: This value is the concatenation of the FirstName, MiddleName, LastName, and Suffix of the associated person contact. You can't modify this value. Type: type: string description: >- Type of account, for example, Customer, Competitor, or Partner. ParentId: type: string description: ID of the parent object, if any. BillingStreet: type: string description: Street address for the billing address of this account. BillingCity: type: string description: >- Details for the billing address of this account. Maximum size is 40 characters. BillingState: type: string description: >- Details for the billing address of this account. Maximum size is 80 characters. BillingPostalCode: type: string description: >- Details for the billing address of this account. Maximum size is 20 characters. BillingCountry: type: string description: >- Details for the billing address of this account. Maximum size is 80 characters. BillingLatitude: type: number description: >- Used with BillingLongitude to specify the precise geolocation of a billing address. Acceptable values are numbers between –90 and 90 with up to 15 decimal places. See Compound Field Considerations and Limitations for details on geolocation compound fields. BillingLongitude: type: number description: >- Used with BillingLatitude to specify the precise geolocation of a billing address. Acceptable values are numbers between –180 and 180 with up to 15 decimal places. See Compound Field Considerations and Limitations for details on geolocation compound fields. BillingGeocodeAccuracy: type: string description: >- Accuracy level of the geocode for the billing address. See Compound Field Considerations and Limitations for details on geolocation compound fields. BillingAddress: type: object description: >- The compound form of the billing address. Read-only. See Address Compound Fields for details on compound address fields. ShippingStreet: type: string description: >- The street address of the shipping address for this account. Maximum of 255 characters. ShippingCity: type: string description: >- Details of the shipping address for this account. City maximum size is 40 characters ShippingState: type: string description: >- Details of the shipping address for this account. State maximum size is 80 characters. ShippingPostalCode: type: string description: >- Details of the shipping address for this account. Postal code maximum size is 20 characters. ShippingCountry: type: string description: >- Details of the shipping address for this account. Country maximum size is 80 characters. ShippingLatitude: type: number description: >- Used with ShippingLongitude to specify the precise geolocation of a shipping address. Acceptable values are numbers between –90 and 90 with up to 15 decimal places. See Compound Field Considerations and Limitations for details on geolocation compound fields. ShippingLongitude: type: number description: >- Used with ShippingLatitude to specify the precise geolocation of an address. Acceptable values are numbers between –180 and 180 with up to 15 decimal places. See Compound Field Considerations and Limitations for details on geolocation compound fields. ShippingGeocodeAccuracy: type: string description: >- Accuracy level of the geocode for the shipping address. See Compound Field Considerations and Limitations for details on geolocation compound fields. ShippingAddress: type: object description: >- The compound form of the shipping address. Read-only. See Address Compound Fields for details on compound address fields. Phone: type: string description: >- Phone number for this account. Maximum size is 40 characters. Fax: type: string description: Fax number for the account. AccountNumber: type: string description: >- Account number assigned to this account (not the unique, system-generated ID assigned during creation). Maximum size is 40 characters. Website: type: string description: The website of this account. Maximum of 255 characters. PhotoUrl: type: string description: >- Path to be combined with the URL of a Salesforce instance (for example, https://yourInstance.salesforce.com/) to generate a URL to request the social network profile image associated with the account. Generated URL returns an HTTP redirect (code 302) to the social network profile image for the account. Blank if Social Accounts and Contacts isn't enabled for the org or if Social Accounts and Contacts is disabled for the requesting user. Sic: type: string description: >- Standard Industrial Classification code of the company’s main business categorization, for example, 57340 for Electronics. Maximum of 20 characters. This field is available on business accounts, not person accounts. Industry: type: string description: >- An industry associated with this account. Maximum size is 40 characters. AnnualRevenue: type: number description: Estimated annual revenue of the account. NumberOfEmployees: type: integer description: >- Label is Employees. Number of employees working at the company represented by this account. Maximum size is eight digits. Ownership: type: string description: >- Ownership type for the account, for example Private, Public, or Subsidiary. TickerSymbol: type: string description: >- The stock market symbol for this account. Maximum of 20 characters. This field is available on business accounts, not person accounts. Description: type: string description: Text description of the account. Limited to 32,000 KB. Rating: type: string description: >- The account’s prospect rating, for example Hot, Warm, or Cold. Site: type: string description: >- Name of the account’s location, for example Headquarters or London. Label is Account Site. Maximum of 80 characters. OwnerId: type: string description: >- The ID of the user who currently owns this account. Default value is the user logged in to the API to perform the create. If you have set up account teams in your org, updating this field has different consequences depending on your version of the API: For API version 12.0 and later, sharing records are kept, as they are for all objects. For API version before 12.0, sharing records are deleted. For API version 16.0 and later, users must have the “Transfer Record” permission in order to update (transfer) account ownership using this field. CreatedDate: type: string format: date-time CreatedById: type: string LastModifiedDate: type: string format: date-time LastModifiedById: type: string SystemModstamp: type: string format: date-time LastActivityDate: type: string description: >- Value is one of the following, whichever is the most recent: Due date of the most recent event logged against the record. Due date of the most recently closed task associated with the record. format: date LastViewedDate: type: string description: >- The timestamp when the current user last viewed this record or list view. If this value is null, the user might have only accessed this record or list view (LastReferencedDate) but not viewed it. format: date-time LastReferencedDate: type: string description: >- The timestamp when the current user last accessed this record, a record related to this record, or a list view. format: date-time IsPartner: type: boolean description: >- Indicates whether the account has at least one contact enabled to use the org's partner portal (true) or not (false). This field is available if partner relationship management (partner portal) is enabled ORdigitial experiences is enabled and you have partner portal licenses. If you change this field's value from true to false, you can disable up to 15 partner portal users associated with the account and permanently delete all of the account's partner portal roles and groups. You can't restore deleted partner portal roles and groups. Disabling a partner portal user in the Salesforce user interface or the API does not change this field's value from true to false. Even if this field's value is false, you can enable a contact on an account as a partner portal user via the API. This field can be updated in API version 16.0 and later.We recommend that you update up to 50 contacts simultaneously when changing the accounts on contacts enabled for a Customer Portal or partner portal. We also recommend that you make this update after business hours. IsCustomerPortal: type: boolean description: >- Indicates whether the account has at least one contact enabled to use the org's Customer Portal (true) or not (false). This field is available if Customer Portal is enabled OR digital experiences is enabled and you have Customer Portal licenses. If you change this field's value from true to false, you can disable up to 100 Customer Portal users associated with the account and permanently delete all of the account's Customer Portal roles and groups. You can't restore deleted Customer Portal roles and groups. This field can be updated in API version 16.0 and later.We recommend that you update up to 50 contacts simultaneously when changing the accounts on contacts enabled for a Customer Portal or partner portal. We also recommend that you make this update after business hours. ChannelProgramName: type: string description: >- Read only. Name of the channel program the account has enrolled.If this account has enrolled more than one channel program, the oldest channel program name will be displayed. . ChannelProgramLevelName: type: string description: >- Read only. Name of the channel program level the account has enrolled.If this account has enrolled more than one channel program level, the oldest channel program name will be displayed. Jigsaw: type: string description: >- References the ID of a company in Data.com. If an account has a value in this field, it means that the account was imported from Data.com. If the field value is null, the account was not imported from Data.com. Maximum size is 20 characters. Available in API version 22.0 and later. Label is Data.com Key. This field is available on business accounts, not person accounts.The Jigsaw field is exposed in the API to support troubleshooting for import errors and reimporting of corrected data. Do not modify the value in the Jigsaw field. JigsawCompanyId: type: string CleanStatus: type: string description: >- Indicates the record’s clean status as compared with Data.com. Values are: Matched, Different, Acknowledged, NotFound, Inactive, Pending, SelectMatch, or Skipped. Several values for CleanStatus display with different labels on the account record detail page. Matched displays as In Sync Acknowledged displays as Reviewed Pending displays as Not Compared AccountSource: type: string description: >- The source of the account record. For example, Advertisement, Data.com, or Trade Show. The source is selected from a picklist of available values, which are set by an administrator. Each picklist value can have up to 40 characters. DunsNumber: type: string description: >- The Data Universal Numbering System (D-U-N-S) number is a unique, nine-digit number assigned to every business location in the Dun & Bradstreet database that has a unique, separate, and distinct operation. D-U-N-S numbers are used by industries and organizations around the world as a global standard for business identification and tracking. Maximum size is 9 characters. This field is available on business accounts, not person accounts.This field is only available to organizations that use Data.com Prospector or Data.com Clean. Tradestyle: type: string description: >- A name, different from its legal name, that an org may use for conducting business. Similar to “Doing business as” or “DBA”. Maximum length is 255 characters. This field is available on business accounts, not person accounts.This field is only available to organizations that use Data.com Prospector or Data.com Clean. NaicsCode: type: string description: >- The six-digit North American Industry Classification System (NAICS) code is the standard used by business and government to classify business establishments into industries, according to their economic activity for the purpose of collecting, analyzing, and publishing statistical data related to the U.S. business economy. Maximum size is 8 characters. This field is available on business accounts, not person accounts.This field is only available to organizations that use Data.com Prospector or Data.com Clean. NaicsDesc: type: string description: >- A brief description of an org’s line of business, based on its NAICS code. Maximum size is 120 characters. This field is available on business accounts, not person accounts.This field is only available to organizations that use Data.com Prospector or Data.com Clean. YearStarted: type: string description: >- The date when an org was legally established. Maximum length is 4 characters. This field is available on business accounts, not person accounts.This field is only available to organizations that use Data.com Prospector or Data.com Clean. SicDesc: type: string description: >- A brief description of an org’s line of business, based on its SIC code. Maximum length is 80 characters. This field is available on business accounts, not person accounts. DandbCompanyId: type: string CustomerPriority__c: type: string SLA__c: type: string Active__c: type: string NumberofLocations__c: type: number UpsellOpportunity__c: type: string SLASerialNumber__c: type: string SLAExpirationDate__c: type: string format: date Potential_Value__c: type: number Match_Billing_Address__c: type: boolean Number_of_Contacts__c: type: number Region__c: type: string attributes: type: object properties: type: type: string url: type: string description: >- Represents an individual account, which is an organization or person involved with your business (such as customers, competitors, and partners). ErrorInfo: type: object properties: message: type: string errorCode: type: string fields: type: array items: type: string extendedErrorDetails: type: array items: type: object properties: extendedErrorCode: type: string SaveResult: type: object properties: success: type: boolean id: type: string errors: type: array items: type: object properties: message: type: string fields: type: array items: type: string statusCode: type: string extendedErrorDetails: type: array items: type: object properties: extendedErrorCode: type: string warnings: type: array items: type: object properties: message: type: string statusCode: type: string extendedDetails: type: array items: type: object properties: extendedErrorCode: type: string infos: type: array items: type: object properties: message: type: string statusCode: type: string extendedDetails: type: array items: type: object properties: extendedErrorCode: type: string ContactSObject: type: object properties: Id: type: string IsDeleted: type: boolean description: >- Indicates whether the object has been moved to the Recycle Bin (true) or not (false). Label is Deleted. MasterRecordId: type: string description: >- If this record was deleted as the result of a merge, this field contains the ID of the record that remains. If this record was deleted for any other reason, or has not been deleted, the value is null. AccountId: type: string description: >- ID of the account that’s the parent of this contact. We recommend that you update up to 50 contacts simultaneously when changing the accounts on contacts enabled for a Customer Portal or partner portal. We also recommend that you make this update after business hours. LastName: type: string description: Required. Last name of the contact up to 80 characters. FirstName: type: string description: The contact’s first name up to 40 characters. Salutation: type: string description: >- Honorific abbreviation, word, or phrase to be used in front of name in greetings, such as Dr. or Mrs. Name: type: string description: >- Concatenation of FirstName, MiddleName, LastName, and Suffix up to 203 characters, including whitespaces. OtherStreet: type: string description: Street for alternate address. OtherCity: type: string description: Alternate address details. OtherState: type: string description: Alternate address details. OtherPostalCode: type: string description: Alternate address details. OtherCountry: type: string description: Alternate address details. OtherLatitude: type: number description: >- Used with OtherLongitude to specify the precise geolocation of an alternate address. Acceptable values are numbers between –90 and 90 up to 15 decimal places. For details on geolocation compound fields, see . OtherLongitude: type: number description: >- Used with OtherLatitude to specify the precise geolocation of an alternate address. Acceptable values are numbers between –180 and 180 up to 15 decimal places. For details on geolocation compound fields, see . OtherGeocodeAccuracy: type: string description: >- Accuracy level of the geocode for the other address. For details on geolocation compound fields, see . OtherAddress: type: object description: >- The compound form of the other address. Read-only. For details on compound address fields, see Address Compound Fields. MailingStreet: type: string description: Street address for mailing address. MailingCity: type: string description: Mailing address details. MailingState: type: string description: Mailing address details. MailingPostalCode: type: string description: Mailing address details. MailingCountry: type: string description: Mailing address details. MailingLatitude: type: number description: >- Used with MailingLongitude to specify the precise geolocation of a mailing address. Acceptable values are numbers between –90 and 90 up to 15 decimal places. For details on geolocation compound fields, see . MailingLongitude: type: number description: >- Used with MailingLatitude to specify the precise geolocation of a mailing address. Acceptable values are numbers between –180 and 180 up to 15 decimal places. For details on geolocation compound fields, see . MailingGeocodeAccuracy: type: string description: >- Accuracy level of the geocode for the mailing address. For details on geolocation compound field, see . MailingAddress: type: object description: >- The compound form of the mailing address. Read-only. For details on compound address fields, see Address Compound Fields. Phone: type: string description: Telephone number for the contact. Label is Business Phone. Fax: type: string description: The contact’s fax number. Label is Business Fax. MobilePhone: type: string description: Contact’s mobile phone number. HomePhone: type: string description: The contact’s home telephone number. OtherPhone: type: string description: Telephone for alternate address. AssistantPhone: type: string description: The assistant’s telephone number. ReportsToId: type: string description: This field doesn’t appear if IsPersonAccount is true. Email: type: string description: The contact’s email address. Title: type: string description: Title of the contact, such as CEO or Vice President. Department: type: string description: The contact’s department. AssistantName: type: string description: The assistant’s name. LeadSource: type: string description: The lead’s source. Birthdate: type: string description: >- The contact’s birthdate. Filter criteria for report filters, list view filters, and SOQL queries ignore the year portion of the Birthdate field. For example, this SOQL query returns contacts with birthdays later in the year than today:SELECT Name, Birthdate FROM Contact WHERE Birthdate > TODAY format: date Description: type: string description: >- A description of the contact. Label is Contact Description up to 32 KB. OwnerId: type: string description: >- The ID of the owner of the account associated with this contact. CreatedDate: type: string format: date-time CreatedById: type: string LastModifiedDate: type: string format: date-time LastModifiedById: type: string SystemModstamp: type: string format: date-time LastActivityDate: type: string description: >- Value is the most recent of either: Due date of the most recent event logged against the record. Due date of the most recently closed task associated with the record. format: date LastCURequestDate: type: string format: date-time LastCUUpdateDate: type: string format: date-time LastViewedDate: type: string description: >- The timestamp when the current user last viewed this record or list view. If this value is null, the user might have only accessed this record or list view (LastReferencedDate) but not viewed it. format: date-time LastReferencedDate: type: string description: >- The timestamp when the current user last accessed this record, a record related to this record, or a list view. format: date-time EmailBouncedReason: type: string description: >- If bounce management is activated and an email sent to the contact bounces, the reason for the bounce. EmailBouncedDate: type: string description: >- If bounce management is activated and an email sent to the contact bounces, the date and time of the bounce. format: date-time IsEmailBounced: type: boolean description: >- If bounce management is activated and an email is sent to a contact, indicates whether the email bounced (true) or not (false). PhotoUrl: type: string description: >- Path to be combined with the URL of a Salesforce instance (Example: https://yourInstance.salesforce.com/) to generate a URL to request the social network profile image associated with the contact. Generated URL returns an HTTP redirect (code 302) to the social network profile image for the contact. Empty if Social Accounts and Contacts isn't enabled or if Social Accounts and Contacts is disabled for the requesting user. Jigsaw: type: string description: >- References the company’s ID in Data.com. If an account has a value in this field, it means that the account was imported from Data.com. If the field value is null, the account was not imported from Data.com. Maximum size is 20 characters. Available in API version 22.0 and later. Label is Data.com Key.The Jigsaw field is exposed in the API to support troubleshooting for import errors and reimporting of corrected data. Do not modify this value. JigsawContactId: type: string CleanStatus: type: string description: >- Indicates the record’s clean status as compared with Data.com. Values include: Matched, Different, Acknowledged, NotFound, Inactive, Pending, SelectMatch, or Skipped. Several values for CleanStatus appear with different labels on the contact record. Matched appears as In Sync Acknowledged appears as Reviewed Pending appears as Not Compared IndividualId: type: string description: >- ID of the data privacy record associated with this contact. This field is available if Data Protection and Privacy is enabled. attributes: type: object properties: type: type: string url: type: string description: >- Represents a contact, which is a person associated with an account. securitySchemes: openIDConnectDiscovery: type: openIdConnect openIdConnectUrl: https://login.salesforce.com/.well-known/openid-configuration bearerAuth: type: http description: >- Use Session Id or Access Token as valid bearer token to authenticate with Salesforce. Access Token could be retrieved via any supported OAuth2 flows listed or not listed here (e.g. JWT Bearer Token Flow).To obtain a session ID, you can use the SOAP API login() call or through the Salesforce CLI. scheme: bearer oAuth2: type: oauth2 description: >- For more information on all supported OAuth Flows, please see 'https://help.salesforce.com/articleView?id=remoteaccess_oauth_flows.htm&type=5'. For more information on all available scope options, please see 'https://help.salesforce.com/articleView?id=remoteaccess_oauth_tokens_scopes.htm&type=5#oauth_scopes'. flows: implicit: authorizationUrl: https://login.salesforce.com/services/oauth2/authorize scopes: visualforce: >- Allows access to customer-created Visualforce pages only. This scope doesn’t allow access to standard Salesforce UIs. address: >- Allows access to the identity URL service. You can request profile, email, address, or phone individually to get the same result as using id; they are all synonymous. custom_permissions: >- Allows access to the custom permissions in an org associated with the connected app. This scope also shows whether the current user has each permission enabled. openid: >- Allows access to the current, logged in user’s unique identifier for OpenID Connect apps. In the OAuth 2.0 user-agent flow and the OAuth 2.0 web server flow, use the openid scope. In addition to the access token, this scope enables you to receive a signed ID token that conforms to the OpenID Connect specifications. profile: >- Allows access to the identity URL service. You can request profile, email, address, or phone individually to get the same result as using id; they are all synonymous. refresh_token: >- Allows a refresh token to be returned when the requesting client is eligible to receive one. With a refresh token, the app can interact with the user’s data while the user is offline. This token is synonymous with requesting offline_access. wave_api: Access and manage your Wave data. web: >- Allows use of the access_token on the web. This scope also includes visualforce, allowing access to customer-created Visualforce pages. phone: >- Allows access to the identity URL service. You can request profile, email, address, or phone individually to get the same result as using id; they are all synonymous. offline_access: >- Allows a refresh token to be returned when the requesting client is eligible to receive one. With a refresh token, the app can interact with the user’s data while the user is offline. This token is synonymous with requesting offline_access. chatter_api: >- Allows access to Connect REST API resources on behalf of the user. id: >- Allows access to the identity URL service. You can request profile, email, address, or phone individually to get the same result as using id; they are all synonymous. api: >- Allows access to the current, logged-in user’s account using APIs, such as REST API and Bulk API. This scope also includes chatter_api, which allows access to Connect REST API resources. eclair_api: Access and manage your Eclair data. email: >- Allows access to the identity URL service. You can request profile, email, address, or phone individually to get the same result as using id; they are all synonymous. pardot_api: >- Allows access to Pardot API services on behalf of the user. Manage the full extent of accessible services in Pardot. full: >- Allows access to all data accessible by the logged-in user, and encompasses all other scopes. full doesn’t return a refresh token. You must explicitly request the refresh_token scope to get a refresh token. password: tokenUrl: https://login.salesforce.com/services/oauth2/token scopes: api: >- Allows access to the current, logged-in user’s account using APIs, such as REST API and Bulk API. This scope also includes chatter_api, which allows access to Connect REST API resources. authorizationCode: authorizationUrl: https://login.salesforce.com/services/oauth2/authorize tokenUrl: https://login.salesforce.com/services/oauth2/token scopes: visualforce: >- Allows access to customer-created Visualforce pages only. This scope doesn’t allow access to standard Salesforce UIs. address: >- Allows access to the identity URL service. You can request profile, email, address, or phone individually to get the same result as using id; they are all synonymous. custom_permissions: >- Allows access to the custom permissions in an org associated with the connected app. This scope also shows whether the current user has each permission enabled. openid: >- Allows access to the current, logged in user’s unique identifier for OpenID Connect apps. In the OAuth 2.0 user-agent flow and the OAuth 2.0 web server flow, use the openid scope. In addition to the access token, this scope enables you to receive a signed ID token that conforms to the OpenID Connect specifications. profile: >- Allows access to the identity URL service. You can request profile, email, address, or phone individually to get the same result as using id; they are all synonymous. refresh_token: >- Allows a refresh token to be returned when the requesting client is eligible to receive one. With a refresh token, the app can interact with the user’s data while the user is offline. This token is synonymous with requesting offline_access. wave_api: Access and manage your Wave data. web: >- Allows use of the access_token on the web. This scope also includes visualforce, allowing access to customer-created Visualforce pages. phone: >- Allows access to the identity URL service. You can request profile, email, address, or phone individually to get the same result as using id; they are all synonymous. offline_access: >- Allows a refresh token to be returned when the requesting client is eligible to receive one. With a refresh token, the app can interact with the user’s data while the user is offline. This token is synonymous with requesting offline_access. chatter_api: >- Allows access to Connect REST API resources on behalf of the user. id: >- Allows access to the identity URL service. You can request profile, email, address, or phone individually to get the same result as using id; they are all synonymous. api: >- Allows access to the current, logged-in user’s account using APIs, such as REST API and Bulk API. This scope also includes chatter_api, which allows access to Connect REST API resources. eclair_api: Access and manage your Eclair data. email: >- Allows access to the identity URL service. You can request profile, email, address, or phone individually to get the same result as using id; they are all synonymous. pardot_api: >- Allows access to Pardot API services on behalf of the user. Manage the full extent of accessible services in Pardot. full: >- Allows access to all data accessible by the logged-in user, and encompasses all other scopes. full doesn’t return a refresh token. You must explicitly request the refresh_token scope to get a refresh token. Schemas: title: Schemas required: - SObjectRootInfo - RestApiError - AccountSObject - ErrorInfo - SaveResult - ContactSObject type: object properties: SObjectRootInfo: $ref: '#/components/schemas/SObjectRootInfo' RestApiError: $ref: '#/components/schemas/RestApiError' AccountSObject: $ref: '#/components/schemas/AccountSObject' ErrorInfo: $ref: '#/components/schemas/ErrorInfo' SaveResult: $ref: '#/components/schemas/SaveResult' ContactSObject: $ref: '#/components/schemas/ContactSObject' examples: - SObjectRootInfo: type: object properties: objectDescribe: type: object properties: name: type: string label: type: string labelPlural: type: string keyPrefix: type: string custom: type: boolean customSetting: type: boolean activateable: type: boolean createable: type: boolean updateable: type: boolean deletable: type: boolean undeletable: type: boolean mergeable: type: boolean replicateable: type: boolean triggerable: type: boolean queryable: type: boolean retrieveable: type: boolean searchable: type: boolean layoutable: type: boolean feedEnabled: type: boolean mruEnabled: type: boolean hasSubtypes: type: boolean isSubtype: type: boolean dataTranslationEnabled: type: boolean isInterface: type: boolean deepCloneable: type: boolean associateEntityType: type: string associateParentEntity: type: string deprecatedAndHidden: type: boolean urls: type: object additionalProperties: type: string recentItems: type: array items: type: object properties: id: type: string RestApiError: type: object properties: errorCode: type: string message: type: string AccountSObject: type: object properties: Id: type: string IsDeleted: type: boolean description: >- Indicates whether the object has been moved to the Recycle Bin (true) or not (false). Label is Deleted. MasterRecordId: type: string description: >- If this object was deleted as the result of a merge, this field contains the ID of the record that was kept. If this object was deleted for any other reason, or has not been deleted, the value is null. Name: type: string description: >- Required. Label is Account Name. Name of the account. Maximum size is 255 characters. If the account has a record type of Person Account: This value is the concatenation of the FirstName, MiddleName, LastName, and Suffix of the associated person contact. You can't modify this value. Type: type: string description: >- Type of account, for example, Customer, Competitor, or Partner. ParentId: type: string description: ID of the parent object, if any. BillingStreet: type: string description: Street address for the billing address of this account. BillingCity: type: string description: >- Details for the billing address of this account. Maximum size is 40 characters. BillingState: type: string description: >- Details for the billing address of this account. Maximum size is 80 characters. BillingPostalCode: type: string description: >- Details for the billing address of this account. Maximum size is 20 characters. BillingCountry: type: string description: >- Details for the billing address of this account. Maximum size is 80 characters. BillingLatitude: type: number description: >- Used with BillingLongitude to specify the precise geolocation of a billing address. Acceptable values are numbers between –90 and 90 with up to 15 decimal places. See Compound Field Considerations and Limitations for details on geolocation compound fields. BillingLongitude: type: number description: >- Used with BillingLatitude to specify the precise geolocation of a billing address. Acceptable values are numbers between –180 and 180 with up to 15 decimal places. See Compound Field Considerations and Limitations for details on geolocation compound fields. BillingGeocodeAccuracy: type: string description: >- Accuracy level of the geocode for the billing address. See Compound Field Considerations and Limitations for details on geolocation compound fields. BillingAddress: type: object description: >- The compound form of the billing address. Read-only. See Address Compound Fields for details on compound address fields. ShippingStreet: type: string description: >- The street address of the shipping address for this account. Maximum of 255 characters. ShippingCity: type: string description: >- Details of the shipping address for this account. City maximum size is 40 characters ShippingState: type: string description: >- Details of the shipping address for this account. State maximum size is 80 characters. ShippingPostalCode: type: string description: >- Details of the shipping address for this account. Postal code maximum size is 20 characters. ShippingCountry: type: string description: >- Details of the shipping address for this account. Country maximum size is 80 characters. ShippingLatitude: type: number description: >- Used with ShippingLongitude to specify the precise geolocation of a shipping address. Acceptable values are numbers between –90 and 90 with up to 15 decimal places. See Compound Field Considerations and Limitations for details on geolocation compound fields. ShippingLongitude: type: number description: >- Used with ShippingLatitude to specify the precise geolocation of an address. Acceptable values are numbers between –180 and 180 with up to 15 decimal places. See Compound Field Considerations and Limitations for details on geolocation compound fields. ShippingGeocodeAccuracy: type: string description: >- Accuracy level of the geocode for the shipping address. See Compound Field Considerations and Limitations for details on geolocation compound fields. ShippingAddress: type: object description: >- The compound form of the shipping address. Read-only. See Address Compound Fields for details on compound address fields. Phone: type: string description: Phone number for this account. Maximum size is 40 characters. Fax: type: string description: Fax number for the account. AccountNumber: type: string description: >- Account number assigned to this account (not the unique, system-generated ID assigned during creation). Maximum size is 40 characters. Website: type: string description: The website of this account. Maximum of 255 characters. PhotoUrl: type: string description: >- Path to be combined with the URL of a Salesforce instance (for example, https://yourInstance.salesforce.com/) to generate a URL to request the social network profile image associated with the account. Generated URL returns an HTTP redirect (code 302) to the social network profile image for the account. Blank if Social Accounts and Contacts isn't enabled for the org or if Social Accounts and Contacts is disabled for the requesting user. Sic: type: string description: >- Standard Industrial Classification code of the company’s main business categorization, for example, 57340 for Electronics. Maximum of 20 characters. This field is available on business accounts, not person accounts. Industry: type: string description: >- An industry associated with this account. Maximum size is 40 characters. AnnualRevenue: type: number description: Estimated annual revenue of the account. NumberOfEmployees: type: integer description: >- Label is Employees. Number of employees working at the company represented by this account. Maximum size is eight digits. Ownership: type: string description: >- Ownership type for the account, for example Private, Public, or Subsidiary. TickerSymbol: type: string description: >- The stock market symbol for this account. Maximum of 20 characters. This field is available on business accounts, not person accounts. Description: type: string description: Text description of the account. Limited to 32,000 KB. Rating: type: string description: The account’s prospect rating, for example Hot, Warm, or Cold. Site: type: string description: >- Name of the account’s location, for example Headquarters or London. Label is Account Site. Maximum of 80 characters. OwnerId: type: string description: >- The ID of the user who currently owns this account. Default value is the user logged in to the API to perform the create. If you have set up account teams in your org, updating this field has different consequences depending on your version of the API: For API version 12.0 and later, sharing records are kept, as they are for all objects. For API version before 12.0, sharing records are deleted. For API version 16.0 and later, users must have the “Transfer Record” permission in order to update (transfer) account ownership using this field. CreatedDate: type: string format: date-time CreatedById: type: string LastModifiedDate: type: string format: date-time LastModifiedById: type: string SystemModstamp: type: string format: date-time LastActivityDate: type: string description: >- Value is one of the following, whichever is the most recent: Due date of the most recent event logged against the record. Due date of the most recently closed task associated with the record. format: date LastViewedDate: type: string description: >- The timestamp when the current user last viewed this record or list view. If this value is null, the user might have only accessed this record or list view (LastReferencedDate) but not viewed it. format: date-time LastReferencedDate: type: string description: >- The timestamp when the current user last accessed this record, a record related to this record, or a list view. format: date-time IsPartner: type: boolean description: >- Indicates whether the account has at least one contact enabled to use the org's partner portal (true) or not (false). This field is available if partner relationship management (partner portal) is enabled ORdigitial experiences is enabled and you have partner portal licenses. If you change this field's value from true to false, you can disable up to 15 partner portal users associated with the account and permanently delete all of the account's partner portal roles and groups. You can't restore deleted partner portal roles and groups. Disabling a partner portal user in the Salesforce user interface or the API does not change this field's value from true to false. Even if this field's value is false, you can enable a contact on an account as a partner portal user via the API. This field can be updated in API version 16.0 and later.We recommend that you update up to 50 contacts simultaneously when changing the accounts on contacts enabled for a Customer Portal or partner portal. We also recommend that you make this update after business hours. IsCustomerPortal: type: boolean description: >- Indicates whether the account has at least one contact enabled to use the org's Customer Portal (true) or not (false). This field is available if Customer Portal is enabled OR digital experiences is enabled and you have Customer Portal licenses. If you change this field's value from true to false, you can disable up to 100 Customer Portal users associated with the account and permanently delete all of the account's Customer Portal roles and groups. You can't restore deleted Customer Portal roles and groups. This field can be updated in API version 16.0 and later.We recommend that you update up to 50 contacts simultaneously when changing the accounts on contacts enabled for a Customer Portal or partner portal. We also recommend that you make this update after business hours. ChannelProgramName: type: string description: >- Read only. Name of the channel program the account has enrolled.If this account has enrolled more than one channel program, the oldest channel program name will be displayed. . ChannelProgramLevelName: type: string description: >- Read only. Name of the channel program level the account has enrolled.If this account has enrolled more than one channel program level, the oldest channel program name will be displayed. Jigsaw: type: string description: >- References the ID of a company in Data.com. If an account has a value in this field, it means that the account was imported from Data.com. If the field value is null, the account was not imported from Data.com. Maximum size is 20 characters. Available in API version 22.0 and later. Label is Data.com Key. This field is available on business accounts, not person accounts.The Jigsaw field is exposed in the API to support troubleshooting for import errors and reimporting of corrected data. Do not modify the value in the Jigsaw field. JigsawCompanyId: type: string CleanStatus: type: string description: >- Indicates the record’s clean status as compared with Data.com. Values are: Matched, Different, Acknowledged, NotFound, Inactive, Pending, SelectMatch, or Skipped. Several values for CleanStatus display with different labels on the account record detail page. Matched displays as In Sync Acknowledged displays as Reviewed Pending displays as Not Compared AccountSource: type: string description: >- The source of the account record. For example, Advertisement, Data.com, or Trade Show. The source is selected from a picklist of available values, which are set by an administrator. Each picklist value can have up to 40 characters. DunsNumber: type: string description: >- The Data Universal Numbering System (D-U-N-S) number is a unique, nine-digit number assigned to every business location in the Dun & Bradstreet database that has a unique, separate, and distinct operation. D-U-N-S numbers are used by industries and organizations around the world as a global standard for business identification and tracking. Maximum size is 9 characters. This field is available on business accounts, not person accounts.This field is only available to organizations that use Data.com Prospector or Data.com Clean. Tradestyle: type: string description: >- A name, different from its legal name, that an org may use for conducting business. Similar to “Doing business as” or “DBA”. Maximum length is 255 characters. This field is available on business accounts, not person accounts.This field is only available to organizations that use Data.com Prospector or Data.com Clean. NaicsCode: type: string description: >- The six-digit North American Industry Classification System (NAICS) code is the standard used by business and government to classify business establishments into industries, according to their economic activity for the purpose of collecting, analyzing, and publishing statistical data related to the U.S. business economy. Maximum size is 8 characters. This field is available on business accounts, not person accounts.This field is only available to organizations that use Data.com Prospector or Data.com Clean. NaicsDesc: type: string description: >- A brief description of an org’s line of business, based on its NAICS code. Maximum size is 120 characters. This field is available on business accounts, not person accounts.This field is only available to organizations that use Data.com Prospector or Data.com Clean. YearStarted: type: string description: >- The date when an org was legally established. Maximum length is 4 characters. This field is available on business accounts, not person accounts.This field is only available to organizations that use Data.com Prospector or Data.com Clean. SicDesc: type: string description: >- A brief description of an org’s line of business, based on its SIC code. Maximum length is 80 characters. This field is available on business accounts, not person accounts. DandbCompanyId: type: string CustomerPriority__c: type: string SLA__c: type: string Active__c: type: string NumberofLocations__c: type: number UpsellOpportunity__c: type: string SLASerialNumber__c: type: string SLAExpirationDate__c: type: string format: date Potential_Value__c: type: number Match_Billing_Address__c: type: boolean Number_of_Contacts__c: type: number Region__c: type: string attributes: type: object properties: type: type: string url: type: string description: >- Represents an individual account, which is an organization or person involved with your business (such as customers, competitors, and partners). ErrorInfo: type: object properties: message: type: string errorCode: type: string fields: type: array items: type: string extendedErrorDetails: type: array items: type: object properties: extendedErrorCode: type: string SaveResult: type: object properties: success: type: boolean id: type: string errors: type: array items: type: object properties: message: type: string fields: type: array items: type: string statusCode: type: string extendedErrorDetails: type: array items: type: object properties: extendedErrorCode: type: string warnings: type: array items: type: object properties: message: type: string statusCode: type: string extendedDetails: type: array items: type: object properties: extendedErrorCode: type: string infos: type: array items: type: object properties: message: type: string statusCode: type: string extendedDetails: type: array items: type: object properties: extendedErrorCode: type: string ContactSObject: type: object properties: Id: type: string IsDeleted: type: boolean description: >- Indicates whether the object has been moved to the Recycle Bin (true) or not (false). Label is Deleted. MasterRecordId: type: string description: >- If this record was deleted as the result of a merge, this field contains the ID of the record that remains. If this record was deleted for any other reason, or has not been deleted, the value is null. AccountId: type: string description: >- ID of the account that’s the parent of this contact. We recommend that you update up to 50 contacts simultaneously when changing the accounts on contacts enabled for a Customer Portal or partner portal. We also recommend that you make this update after business hours. LastName: type: string description: Required. Last name of the contact up to 80 characters. FirstName: type: string description: The contact’s first name up to 40 characters. Salutation: type: string description: >- Honorific abbreviation, word, or phrase to be used in front of name in greetings, such as Dr. or Mrs. Name: type: string description: >- Concatenation of FirstName, MiddleName, LastName, and Suffix up to 203 characters, including whitespaces. OtherStreet: type: string description: Street for alternate address. OtherCity: type: string description: Alternate address details. OtherState: type: string description: Alternate address details. OtherPostalCode: type: string description: Alternate address details. OtherCountry: type: string description: Alternate address details. OtherLatitude: type: number description: >- Used with OtherLongitude to specify the precise geolocation of an alternate address. Acceptable values are numbers between –90 and 90 up to 15 decimal places. For details on geolocation compound fields, see . OtherLongitude: type: number description: >- Used with OtherLatitude to specify the precise geolocation of an alternate address. Acceptable values are numbers between –180 and 180 up to 15 decimal places. For details on geolocation compound fields, see . OtherGeocodeAccuracy: type: string description: >- Accuracy level of the geocode for the other address. For details on geolocation compound fields, see . OtherAddress: type: object description: >- The compound form of the other address. Read-only. For details on compound address fields, see Address Compound Fields. MailingStreet: type: string description: Street address for mailing address. MailingCity: type: string description: Mailing address details. MailingState: type: string description: Mailing address details. MailingPostalCode: type: string description: Mailing address details. MailingCountry: type: string description: Mailing address details. MailingLatitude: type: number description: >- Used with MailingLongitude to specify the precise geolocation of a mailing address. Acceptable values are numbers between –90 and 90 up to 15 decimal places. For details on geolocation compound fields, see . MailingLongitude: type: number description: >- Used with MailingLatitude to specify the precise geolocation of a mailing address. Acceptable values are numbers between –180 and 180 up to 15 decimal places. For details on geolocation compound fields, see . MailingGeocodeAccuracy: type: string description: >- Accuracy level of the geocode for the mailing address. For details on geolocation compound field, see . MailingAddress: type: object description: >- The compound form of the mailing address. Read-only. For details on compound address fields, see Address Compound Fields. Phone: type: string description: Telephone number for the contact. Label is Business Phone. Fax: type: string description: The contact’s fax number. Label is Business Fax. MobilePhone: type: string description: Contact’s mobile phone number. HomePhone: type: string description: The contact’s home telephone number. OtherPhone: type: string description: Telephone for alternate address. AssistantPhone: type: string description: The assistant’s telephone number. ReportsToId: type: string description: This field doesn’t appear if IsPersonAccount is true. Email: type: string description: The contact’s email address. Title: type: string description: Title of the contact, such as CEO or Vice President. Department: type: string description: The contact’s department. AssistantName: type: string description: The assistant’s name. LeadSource: type: string description: The lead’s source. Birthdate: type: string description: >- The contact’s birthdate. Filter criteria for report filters, list view filters, and SOQL queries ignore the year portion of the Birthdate field. For example, this SOQL query returns contacts with birthdays later in the year than today:SELECT Name, Birthdate FROM Contact WHERE Birthdate > TODAY format: date Description: type: string description: >- A description of the contact. Label is Contact Description up to 32 KB. OwnerId: type: string description: >- The ID of the owner of the account associated with this contact. CreatedDate: type: string format: date-time CreatedById: type: string LastModifiedDate: type: string format: date-time LastModifiedById: type: string SystemModstamp: type: string format: date-time LastActivityDate: type: string description: >- Value is the most recent of either: Due date of the most recent event logged against the record. Due date of the most recently closed task associated with the record. format: date LastCURequestDate: type: string format: date-time LastCUUpdateDate: type: string format: date-time LastViewedDate: type: string description: >- The timestamp when the current user last viewed this record or list view. If this value is null, the user might have only accessed this record or list view (LastReferencedDate) but not viewed it. format: date-time LastReferencedDate: type: string description: >- The timestamp when the current user last accessed this record, a record related to this record, or a list view. format: date-time EmailBouncedReason: type: string description: >- If bounce management is activated and an email sent to the contact bounces, the reason for the bounce. EmailBouncedDate: type: string description: >- If bounce management is activated and an email sent to the contact bounces, the date and time of the bounce. format: date-time IsEmailBounced: type: boolean description: >- If bounce management is activated and an email is sent to a contact, indicates whether the email bounced (true) or not (false). PhotoUrl: type: string description: >- Path to be combined with the URL of a Salesforce instance (Example: https://yourInstance.salesforce.com/) to generate a URL to request the social network profile image associated with the contact. Generated URL returns an HTTP redirect (code 302) to the social network profile image for the contact. Empty if Social Accounts and Contacts isn't enabled or if Social Accounts and Contacts is disabled for the requesting user. Jigsaw: type: string description: >- References the company’s ID in Data.com. If an account has a value in this field, it means that the account was imported from Data.com. If the field value is null, the account was not imported from Data.com. Maximum size is 20 characters. Available in API version 22.0 and later. Label is Data.com Key.The Jigsaw field is exposed in the API to support troubleshooting for import errors and reimporting of corrected data. Do not modify this value. JigsawContactId: type: string CleanStatus: type: string description: >- Indicates the record’s clean status as compared with Data.com. Values include: Matched, Different, Acknowledged, NotFound, Inactive, Pending, SelectMatch, or Skipped. Several values for CleanStatus appear with different labels on the contact record. Matched appears as In Sync Acknowledged appears as Reviewed Pending appears as Not Compared IndividualId: type: string description: >- ID of the data privacy record associated with this contact. This field is available if Data Protection and Privacy is enabled. attributes: type: object properties: type: type: string url: type: string description: >- Represents a contact, which is a person associated with an account. SObjectRootInfo: title: SObjectRootInfo required: - type - properties type: object properties: type: type: string example: example_value properties: $ref: '#/components/schemas/Properties' examples: - type: object properties: objectDescribe: type: object properties: name: type: string label: type: string labelPlural: type: string keyPrefix: type: string custom: type: boolean customSetting: type: boolean activateable: type: boolean createable: type: boolean updateable: type: boolean deletable: type: boolean undeletable: type: boolean mergeable: type: boolean replicateable: type: boolean triggerable: type: boolean queryable: type: boolean retrieveable: type: boolean searchable: type: boolean layoutable: type: boolean feedEnabled: type: boolean mruEnabled: type: boolean hasSubtypes: type: boolean isSubtype: type: boolean dataTranslationEnabled: type: boolean isInterface: type: boolean deepCloneable: type: boolean associateEntityType: type: string associateParentEntity: type: string deprecatedAndHidden: type: boolean urls: type: object additionalProperties: type: string recentItems: type: array items: type: object properties: id: type: string Properties: title: Properties required: - objectDescribe - recentItems type: object properties: objectDescribe: $ref: '#/components/schemas/ObjectDescribe' recentItems: $ref: '#/components/schemas/RecentItems' examples: - objectDescribe: type: object properties: name: type: string label: type: string labelPlural: type: string keyPrefix: type: string custom: type: boolean customSetting: type: boolean activateable: type: boolean createable: type: boolean updateable: type: boolean deletable: type: boolean undeletable: type: boolean mergeable: type: boolean replicateable: type: boolean triggerable: type: boolean queryable: type: boolean retrieveable: type: boolean searchable: type: boolean layoutable: type: boolean feedEnabled: type: boolean mruEnabled: type: boolean hasSubtypes: type: boolean isSubtype: type: boolean dataTranslationEnabled: type: boolean isInterface: type: boolean deepCloneable: type: boolean associateEntityType: type: string associateParentEntity: type: string deprecatedAndHidden: type: boolean urls: type: object additionalProperties: type: string recentItems: type: array items: type: object properties: id: type: string ObjectDescribe: title: ObjectDescribe required: - type - properties type: object properties: type: type: string example: example_value properties: $ref: '#/components/schemas/Properties1' examples: - type: object properties: name: type: string label: type: string labelPlural: type: string keyPrefix: type: string custom: type: boolean customSetting: type: boolean activateable: type: boolean createable: type: boolean updateable: type: boolean deletable: type: boolean undeletable: type: boolean mergeable: type: boolean replicateable: type: boolean triggerable: type: boolean queryable: type: boolean retrieveable: type: boolean searchable: type: boolean layoutable: type: boolean feedEnabled: type: boolean mruEnabled: type: boolean hasSubtypes: type: boolean isSubtype: type: boolean dataTranslationEnabled: type: boolean isInterface: type: boolean deepCloneable: type: boolean associateEntityType: type: string associateParentEntity: type: string deprecatedAndHidden: type: boolean urls: type: object additionalProperties: type: string Properties1: title: Properties1 required: - name - label - labelPlural - keyPrefix - custom - customSetting - activateable - createable - updateable - deletable - undeletable - mergeable - replicateable - triggerable - queryable - retrieveable - searchable - layoutable - feedEnabled - mruEnabled - hasSubtypes - isSubtype - dataTranslationEnabled - isInterface - deepCloneable - associateEntityType - associateParentEntity - deprecatedAndHidden - urls type: object properties: name: $ref: '#/components/schemas/Name13' label: $ref: '#/components/schemas/Label' labelPlural: $ref: '#/components/schemas/LabelPlural' keyPrefix: $ref: '#/components/schemas/KeyPrefix' custom: $ref: '#/components/schemas/Custom' customSetting: $ref: '#/components/schemas/CustomSetting' activateable: $ref: '#/components/schemas/Activateable' createable: $ref: '#/components/schemas/Createable' updateable: $ref: '#/components/schemas/Updateable' deletable: $ref: '#/components/schemas/Deletable' undeletable: $ref: '#/components/schemas/Undeletable' mergeable: $ref: '#/components/schemas/Mergeable' replicateable: $ref: '#/components/schemas/Replicateable' triggerable: $ref: '#/components/schemas/Triggerable' queryable: $ref: '#/components/schemas/Queryable' retrieveable: $ref: '#/components/schemas/Retrieveable' searchable: $ref: '#/components/schemas/Searchable' layoutable: $ref: '#/components/schemas/Layoutable' feedEnabled: $ref: '#/components/schemas/FeedEnabled' mruEnabled: $ref: '#/components/schemas/MruEnabled' hasSubtypes: $ref: '#/components/schemas/HasSubtypes' isSubtype: $ref: '#/components/schemas/IsSubtype' dataTranslationEnabled: $ref: '#/components/schemas/DataTranslationEnabled' isInterface: $ref: '#/components/schemas/IsInterface' deepCloneable: $ref: '#/components/schemas/DeepCloneable' associateEntityType: $ref: '#/components/schemas/AssociateEntityType' associateParentEntity: $ref: '#/components/schemas/AssociateParentEntity' deprecatedAndHidden: $ref: '#/components/schemas/DeprecatedAndHidden' urls: $ref: '#/components/schemas/Urls5' examples: - name: type: string label: type: string labelPlural: type: string keyPrefix: type: string custom: type: boolean customSetting: type: boolean activateable: type: boolean createable: type: boolean updateable: type: boolean deletable: type: boolean undeletable: type: boolean mergeable: type: boolean replicateable: type: boolean triggerable: type: boolean queryable: type: boolean retrieveable: type: boolean searchable: type: boolean layoutable: type: boolean feedEnabled: type: boolean mruEnabled: type: boolean hasSubtypes: type: boolean isSubtype: type: boolean dataTranslationEnabled: type: boolean isInterface: type: boolean deepCloneable: type: boolean associateEntityType: type: string associateParentEntity: type: string deprecatedAndHidden: type: boolean urls: type: object additionalProperties: type: string Name13: title: Name13 required: - type type: object properties: type: type: string example: example_value examples: - type: string Label: title: Label required: - type type: object properties: type: type: string example: example_value examples: - type: string LabelPlural: title: LabelPlural required: - type type: object properties: type: type: string example: example_value examples: - type: string KeyPrefix: title: KeyPrefix required: - type type: object properties: type: type: string example: example_value examples: - type: string Custom: title: Custom required: - type type: object properties: type: type: string example: example_value examples: - type: boolean CustomSetting: title: CustomSetting required: - type type: object properties: type: type: string example: example_value examples: - type: boolean Activateable: title: Activateable required: - type type: object properties: type: type: string example: example_value examples: - type: boolean Createable: title: Createable required: - type type: object properties: type: type: string example: example_value examples: - type: boolean Updateable: title: Updateable required: - type type: object properties: type: type: string example: example_value examples: - type: boolean Deletable: title: Deletable required: - type type: object properties: type: type: string example: example_value examples: - type: boolean Undeletable: title: Undeletable required: - type type: object properties: type: type: string example: example_value examples: - type: boolean Mergeable: title: Mergeable required: - type type: object properties: type: type: string example: example_value examples: - type: boolean Replicateable: title: Replicateable required: - type type: object properties: type: type: string example: example_value examples: - type: boolean Triggerable: title: Triggerable required: - type type: object properties: type: type: string example: example_value examples: - type: boolean Queryable: title: Queryable required: - type type: object properties: type: type: string example: example_value examples: - type: boolean Retrieveable: title: Retrieveable required: - type type: object properties: type: type: string example: example_value examples: - type: boolean Searchable: title: Searchable required: - type type: object properties: type: type: string example: example_value examples: - type: boolean Layoutable: title: Layoutable required: - type type: object properties: type: type: string example: example_value examples: - type: boolean FeedEnabled: title: FeedEnabled required: - type type: object properties: type: type: string example: example_value examples: - type: boolean MruEnabled: title: MruEnabled required: - type type: object properties: type: type: string example: example_value examples: - type: boolean HasSubtypes: title: HasSubtypes required: - type type: object properties: type: type: string example: example_value examples: - type: boolean IsSubtype: title: IsSubtype required: - type type: object properties: type: type: string example: example_value examples: - type: boolean DataTranslationEnabled: title: DataTranslationEnabled required: - type type: object properties: type: type: string example: example_value examples: - type: boolean IsInterface: title: IsInterface required: - type type: object properties: type: type: string example: example_value examples: - type: boolean DeepCloneable: title: DeepCloneable required: - type type: object properties: type: type: string example: example_value examples: - type: boolean AssociateEntityType: title: AssociateEntityType required: - type type: object properties: type: type: string example: example_value examples: - type: string AssociateParentEntity: title: AssociateParentEntity required: - type type: object properties: type: type: string example: example_value examples: - type: string DeprecatedAndHidden: title: DeprecatedAndHidden required: - type type: object properties: type: type: string example: example_value examples: - type: boolean Urls5: title: Urls5 required: - type - additionalProperties type: object properties: type: type: string example: example_value additionalProperties: $ref: '#/components/schemas/AdditionalProperties' examples: - type: object additionalProperties: type: string AdditionalProperties: title: AdditionalProperties required: - type type: object properties: type: type: string example: example_value examples: - type: string RecentItems: title: RecentItems required: - type - items type: object properties: type: type: string example: example_value items: $ref: '#/components/schemas/Items17' examples: - type: array items: type: object properties: id: type: string Items17: title: Items17 required: - type - properties type: object properties: type: type: string example: example_value properties: $ref: '#/components/schemas/Properties2' examples: - type: object properties: id: type: string Properties2: title: Properties2 required: - id type: object properties: id: $ref: '#/components/schemas/Id' examples: - id: type: string Id: title: Id required: - type type: object properties: type: type: string example: example_value examples: - type: string RestApiError: title: RestApiError required: - type - properties type: object properties: type: type: string example: example_value properties: $ref: '#/components/schemas/Properties3' examples: - type: object properties: errorCode: type: string message: type: string Properties3: title: Properties3 required: - errorCode - message type: object properties: errorCode: $ref: '#/components/schemas/ErrorCode' message: $ref: '#/components/schemas/Message' examples: - errorCode: type: string message: type: string ErrorCode: title: ErrorCode required: - type type: object properties: type: type: string example: example_value examples: - type: string Message: title: Message required: - type type: object properties: type: type: string example: example_value examples: - type: string AccountSObject: title: AccountSObject required: - type - properties - description type: object properties: type: type: string example: example_value properties: $ref: '#/components/schemas/Properties4' description: type: string example: A sample description. examples: - type: object properties: Id: type: string IsDeleted: type: boolean description: >- Indicates whether the object has been moved to the Recycle Bin (true) or not (false). Label is Deleted. MasterRecordId: type: string description: >- If this object was deleted as the result of a merge, this field contains the ID of the record that was kept. If this object was deleted for any other reason, or has not been deleted, the value is null. Name: type: string description: >- Required. Label is Account Name. Name of the account. Maximum size is 255 characters. If the account has a record type of Person Account: This value is the concatenation of the FirstName, MiddleName, LastName, and Suffix of the associated person contact. You can't modify this value. Type: type: string description: Type of account, for example, Customer, Competitor, or Partner. ParentId: type: string description: ID of the parent object, if any. BillingStreet: type: string description: Street address for the billing address of this account. BillingCity: type: string description: >- Details for the billing address of this account. Maximum size is 40 characters. BillingState: type: string description: >- Details for the billing address of this account. Maximum size is 80 characters. BillingPostalCode: type: string description: >- Details for the billing address of this account. Maximum size is 20 characters. BillingCountry: type: string description: >- Details for the billing address of this account. Maximum size is 80 characters. BillingLatitude: type: number description: >- Used with BillingLongitude to specify the precise geolocation of a billing address. Acceptable values are numbers between –90 and 90 with up to 15 decimal places. See Compound Field Considerations and Limitations for details on geolocation compound fields. BillingLongitude: type: number description: >- Used with BillingLatitude to specify the precise geolocation of a billing address. Acceptable values are numbers between –180 and 180 with up to 15 decimal places. See Compound Field Considerations and Limitations for details on geolocation compound fields. BillingGeocodeAccuracy: type: string description: >- Accuracy level of the geocode for the billing address. See Compound Field Considerations and Limitations for details on geolocation compound fields. BillingAddress: type: object description: >- The compound form of the billing address. Read-only. See Address Compound Fields for details on compound address fields. ShippingStreet: type: string description: >- The street address of the shipping address for this account. Maximum of 255 characters. ShippingCity: type: string description: >- Details of the shipping address for this account. City maximum size is 40 characters ShippingState: type: string description: >- Details of the shipping address for this account. State maximum size is 80 characters. ShippingPostalCode: type: string description: >- Details of the shipping address for this account. Postal code maximum size is 20 characters. ShippingCountry: type: string description: >- Details of the shipping address for this account. Country maximum size is 80 characters. ShippingLatitude: type: number description: >- Used with ShippingLongitude to specify the precise geolocation of a shipping address. Acceptable values are numbers between –90 and 90 with up to 15 decimal places. See Compound Field Considerations and Limitations for details on geolocation compound fields. ShippingLongitude: type: number description: >- Used with ShippingLatitude to specify the precise geolocation of an address. Acceptable values are numbers between –180 and 180 with up to 15 decimal places. See Compound Field Considerations and Limitations for details on geolocation compound fields. ShippingGeocodeAccuracy: type: string description: >- Accuracy level of the geocode for the shipping address. See Compound Field Considerations and Limitations for details on geolocation compound fields. ShippingAddress: type: object description: >- The compound form of the shipping address. Read-only. See Address Compound Fields for details on compound address fields. Phone: type: string description: Phone number for this account. Maximum size is 40 characters. Fax: type: string description: Fax number for the account. AccountNumber: type: string description: >- Account number assigned to this account (not the unique, system-generated ID assigned during creation). Maximum size is 40 characters. Website: type: string description: The website of this account. Maximum of 255 characters. PhotoUrl: type: string description: >- Path to be combined with the URL of a Salesforce instance (for example, https://yourInstance.salesforce.com/) to generate a URL to request the social network profile image associated with the account. Generated URL returns an HTTP redirect (code 302) to the social network profile image for the account. Blank if Social Accounts and Contacts isn't enabled for the org or if Social Accounts and Contacts is disabled for the requesting user. Sic: type: string description: >- Standard Industrial Classification code of the company’s main business categorization, for example, 57340 for Electronics. Maximum of 20 characters. This field is available on business accounts, not person accounts. Industry: type: string description: >- An industry associated with this account. Maximum size is 40 characters. AnnualRevenue: type: number description: Estimated annual revenue of the account. NumberOfEmployees: type: integer description: >- Label is Employees. Number of employees working at the company represented by this account. Maximum size is eight digits. Ownership: type: string description: >- Ownership type for the account, for example Private, Public, or Subsidiary. TickerSymbol: type: string description: >- The stock market symbol for this account. Maximum of 20 characters. This field is available on business accounts, not person accounts. Description: type: string description: Text description of the account. Limited to 32,000 KB. Rating: type: string description: The account’s prospect rating, for example Hot, Warm, or Cold. Site: type: string description: >- Name of the account’s location, for example Headquarters or London. Label is Account Site. Maximum of 80 characters. OwnerId: type: string description: >- The ID of the user who currently owns this account. Default value is the user logged in to the API to perform the create. If you have set up account teams in your org, updating this field has different consequences depending on your version of the API: For API version 12.0 and later, sharing records are kept, as they are for all objects. For API version before 12.0, sharing records are deleted. For API version 16.0 and later, users must have the “Transfer Record” permission in order to update (transfer) account ownership using this field. CreatedDate: type: string format: date-time CreatedById: type: string LastModifiedDate: type: string format: date-time LastModifiedById: type: string SystemModstamp: type: string format: date-time LastActivityDate: type: string description: >- Value is one of the following, whichever is the most recent: Due date of the most recent event logged against the record. Due date of the most recently closed task associated with the record. format: date LastViewedDate: type: string description: >- The timestamp when the current user last viewed this record or list view. If this value is null, the user might have only accessed this record or list view (LastReferencedDate) but not viewed it. format: date-time LastReferencedDate: type: string description: >- The timestamp when the current user last accessed this record, a record related to this record, or a list view. format: date-time IsPartner: type: boolean description: >- Indicates whether the account has at least one contact enabled to use the org's partner portal (true) or not (false). This field is available if partner relationship management (partner portal) is enabled ORdigitial experiences is enabled and you have partner portal licenses. If you change this field's value from true to false, you can disable up to 15 partner portal users associated with the account and permanently delete all of the account's partner portal roles and groups. You can't restore deleted partner portal roles and groups. Disabling a partner portal user in the Salesforce user interface or the API does not change this field's value from true to false. Even if this field's value is false, you can enable a contact on an account as a partner portal user via the API. This field can be updated in API version 16.0 and later.We recommend that you update up to 50 contacts simultaneously when changing the accounts on contacts enabled for a Customer Portal or partner portal. We also recommend that you make this update after business hours. IsCustomerPortal: type: boolean description: >- Indicates whether the account has at least one contact enabled to use the org's Customer Portal (true) or not (false). This field is available if Customer Portal is enabled OR digital experiences is enabled and you have Customer Portal licenses. If you change this field's value from true to false, you can disable up to 100 Customer Portal users associated with the account and permanently delete all of the account's Customer Portal roles and groups. You can't restore deleted Customer Portal roles and groups. This field can be updated in API version 16.0 and later.We recommend that you update up to 50 contacts simultaneously when changing the accounts on contacts enabled for a Customer Portal or partner portal. We also recommend that you make this update after business hours. ChannelProgramName: type: string description: >- Read only. Name of the channel program the account has enrolled.If this account has enrolled more than one channel program, the oldest channel program name will be displayed. . ChannelProgramLevelName: type: string description: >- Read only. Name of the channel program level the account has enrolled.If this account has enrolled more than one channel program level, the oldest channel program name will be displayed. Jigsaw: type: string description: >- References the ID of a company in Data.com. If an account has a value in this field, it means that the account was imported from Data.com. If the field value is null, the account was not imported from Data.com. Maximum size is 20 characters. Available in API version 22.0 and later. Label is Data.com Key. This field is available on business accounts, not person accounts.The Jigsaw field is exposed in the API to support troubleshooting for import errors and reimporting of corrected data. Do not modify the value in the Jigsaw field. JigsawCompanyId: type: string CleanStatus: type: string description: >- Indicates the record’s clean status as compared with Data.com. Values are: Matched, Different, Acknowledged, NotFound, Inactive, Pending, SelectMatch, or Skipped. Several values for CleanStatus display with different labels on the account record detail page. Matched displays as In Sync Acknowledged displays as Reviewed Pending displays as Not Compared AccountSource: type: string description: >- The source of the account record. For example, Advertisement, Data.com, or Trade Show. The source is selected from a picklist of available values, which are set by an administrator. Each picklist value can have up to 40 characters. DunsNumber: type: string description: >- The Data Universal Numbering System (D-U-N-S) number is a unique, nine-digit number assigned to every business location in the Dun & Bradstreet database that has a unique, separate, and distinct operation. D-U-N-S numbers are used by industries and organizations around the world as a global standard for business identification and tracking. Maximum size is 9 characters. This field is available on business accounts, not person accounts.This field is only available to organizations that use Data.com Prospector or Data.com Clean. Tradestyle: type: string description: >- A name, different from its legal name, that an org may use for conducting business. Similar to “Doing business as” or “DBA”. Maximum length is 255 characters. This field is available on business accounts, not person accounts.This field is only available to organizations that use Data.com Prospector or Data.com Clean. NaicsCode: type: string description: >- The six-digit North American Industry Classification System (NAICS) code is the standard used by business and government to classify business establishments into industries, according to their economic activity for the purpose of collecting, analyzing, and publishing statistical data related to the U.S. business economy. Maximum size is 8 characters. This field is available on business accounts, not person accounts.This field is only available to organizations that use Data.com Prospector or Data.com Clean. NaicsDesc: type: string description: >- A brief description of an org’s line of business, based on its NAICS code. Maximum size is 120 characters. This field is available on business accounts, not person accounts.This field is only available to organizations that use Data.com Prospector or Data.com Clean. YearStarted: type: string description: >- The date when an org was legally established. Maximum length is 4 characters. This field is available on business accounts, not person accounts.This field is only available to organizations that use Data.com Prospector or Data.com Clean. SicDesc: type: string description: >- A brief description of an org’s line of business, based on its SIC code. Maximum length is 80 characters. This field is available on business accounts, not person accounts. DandbCompanyId: type: string CustomerPriority__c: type: string SLA__c: type: string Active__c: type: string NumberofLocations__c: type: number UpsellOpportunity__c: type: string SLASerialNumber__c: type: string SLAExpirationDate__c: type: string format: date Potential_Value__c: type: number Match_Billing_Address__c: type: boolean Number_of_Contacts__c: type: number Region__c: type: string attributes: type: object properties: type: type: string url: type: string description: >- Represents an individual account, which is an organization or person involved with your business (such as customers, competitors, and partners). Properties4: title: Properties4 required: - Id - IsDeleted - MasterRecordId - Name - Type - ParentId - BillingStreet - BillingCity - BillingState - BillingPostalCode - BillingCountry - BillingLatitude - BillingLongitude - BillingGeocodeAccuracy - BillingAddress - ShippingStreet - ShippingCity - ShippingState - ShippingPostalCode - ShippingCountry - ShippingLatitude - ShippingLongitude - ShippingGeocodeAccuracy - ShippingAddress - Phone - Fax - AccountNumber - Website - PhotoUrl - Sic - Industry - AnnualRevenue - NumberOfEmployees - Ownership - TickerSymbol - Description - Rating - Site - OwnerId - CreatedDate - CreatedById - LastModifiedDate - LastModifiedById - SystemModstamp - LastActivityDate - LastViewedDate - LastReferencedDate - IsPartner - IsCustomerPortal - ChannelProgramName - ChannelProgramLevelName - Jigsaw - JigsawCompanyId - CleanStatus - AccountSource - DunsNumber - Tradestyle - NaicsCode - NaicsDesc - YearStarted - SicDesc - DandbCompanyId - CustomerPriority__c - SLA__c - Active__c - NumberofLocations__c - UpsellOpportunity__c - SLASerialNumber__c - SLAExpirationDate__c - Potential_Value__c - Match_Billing_Address__c - Number_of_Contacts__c - Region__c - attributes type: object properties: Id: $ref: '#/components/schemas/Id' IsDeleted: $ref: '#/components/schemas/IsDeleted' MasterRecordId: $ref: '#/components/schemas/MasterRecordId' Name: $ref: '#/components/schemas/Name14' Type: $ref: '#/components/schemas/Type4' ParentId: $ref: '#/components/schemas/ParentId' BillingStreet: $ref: '#/components/schemas/BillingStreet' BillingCity: $ref: '#/components/schemas/BillingCity' BillingState: $ref: '#/components/schemas/BillingState' BillingPostalCode: $ref: '#/components/schemas/BillingPostalCode' BillingCountry: $ref: '#/components/schemas/BillingCountry' BillingLatitude: $ref: '#/components/schemas/BillingLatitude' BillingLongitude: $ref: '#/components/schemas/BillingLongitude' BillingGeocodeAccuracy: $ref: '#/components/schemas/BillingGeocodeAccuracy' BillingAddress: $ref: '#/components/schemas/BillingAddress' ShippingStreet: $ref: '#/components/schemas/ShippingStreet' ShippingCity: $ref: '#/components/schemas/ShippingCity' ShippingState: $ref: '#/components/schemas/ShippingState' ShippingPostalCode: $ref: '#/components/schemas/ShippingPostalCode' ShippingCountry: $ref: '#/components/schemas/ShippingCountry' ShippingLatitude: $ref: '#/components/schemas/ShippingLatitude' ShippingLongitude: $ref: '#/components/schemas/ShippingLongitude' ShippingGeocodeAccuracy: $ref: '#/components/schemas/ShippingGeocodeAccuracy' ShippingAddress: $ref: '#/components/schemas/ShippingAddress' Phone: $ref: '#/components/schemas/Phone' Fax: $ref: '#/components/schemas/Fax' AccountNumber: $ref: '#/components/schemas/AccountNumber' Website: $ref: '#/components/schemas/Website' PhotoUrl: $ref: '#/components/schemas/PhotoUrl' Sic: $ref: '#/components/schemas/Sic' Industry: $ref: '#/components/schemas/Industry' AnnualRevenue: $ref: '#/components/schemas/AnnualRevenue' NumberOfEmployees: $ref: '#/components/schemas/NumberOfEmployees' Ownership: $ref: '#/components/schemas/Ownership' TickerSymbol: $ref: '#/components/schemas/TickerSymbol' Description: $ref: '#/components/schemas/Description3' Rating: $ref: '#/components/schemas/Rating' Site: $ref: '#/components/schemas/Site' OwnerId: $ref: '#/components/schemas/OwnerId' CreatedDate: $ref: '#/components/schemas/CreatedDate' CreatedById: $ref: '#/components/schemas/CreatedById' LastModifiedDate: $ref: '#/components/schemas/LastModifiedDate' LastModifiedById: $ref: '#/components/schemas/LastModifiedById' SystemModstamp: $ref: '#/components/schemas/SystemModstamp' LastActivityDate: $ref: '#/components/schemas/LastActivityDate' LastViewedDate: $ref: '#/components/schemas/LastViewedDate' LastReferencedDate: $ref: '#/components/schemas/LastReferencedDate' IsPartner: $ref: '#/components/schemas/IsPartner' IsCustomerPortal: $ref: '#/components/schemas/IsCustomerPortal' ChannelProgramName: $ref: '#/components/schemas/ChannelProgramName' ChannelProgramLevelName: $ref: '#/components/schemas/ChannelProgramLevelName' Jigsaw: $ref: '#/components/schemas/Jigsaw' JigsawCompanyId: $ref: '#/components/schemas/JigsawCompanyId' CleanStatus: $ref: '#/components/schemas/CleanStatus' AccountSource: $ref: '#/components/schemas/AccountSource' DunsNumber: $ref: '#/components/schemas/DunsNumber' Tradestyle: $ref: '#/components/schemas/Tradestyle' NaicsCode: $ref: '#/components/schemas/NaicsCode' NaicsDesc: $ref: '#/components/schemas/NaicsDesc' YearStarted: $ref: '#/components/schemas/YearStarted' SicDesc: $ref: '#/components/schemas/SicDesc' DandbCompanyId: $ref: '#/components/schemas/DandbCompanyId' CustomerPriority__c: $ref: '#/components/schemas/CustomerPriorityC' SLA__c: $ref: '#/components/schemas/SLAC' Active__c: $ref: '#/components/schemas/ActiveC' NumberofLocations__c: $ref: '#/components/schemas/NumberofLocationsC' UpsellOpportunity__c: $ref: '#/components/schemas/UpsellOpportunityC' SLASerialNumber__c: $ref: '#/components/schemas/SLASerialNumberC' SLAExpirationDate__c: $ref: '#/components/schemas/SLAExpirationDateC' Potential_Value__c: $ref: '#/components/schemas/PotentialValueC' Match_Billing_Address__c: $ref: '#/components/schemas/MatchBillingAddressC' Number_of_Contacts__c: $ref: '#/components/schemas/NumberOfContactsC' Region__c: $ref: '#/components/schemas/RegionC' attributes: $ref: '#/components/schemas/Attributes15' examples: - Id: type: string IsDeleted: type: boolean description: >- Indicates whether the object has been moved to the Recycle Bin (true) or not (false). Label is Deleted. MasterRecordId: type: string description: >- If this object was deleted as the result of a merge, this field contains the ID of the record that was kept. If this object was deleted for any other reason, or has not been deleted, the value is null. Name: type: string description: >- Required. Label is Account Name. Name of the account. Maximum size is 255 characters. If the account has a record type of Person Account: This value is the concatenation of the FirstName, MiddleName, LastName, and Suffix of the associated person contact. You can't modify this value. Type: type: string description: Type of account, for example, Customer, Competitor, or Partner. ParentId: type: string description: ID of the parent object, if any. BillingStreet: type: string description: Street address for the billing address of this account. BillingCity: type: string description: >- Details for the billing address of this account. Maximum size is 40 characters. BillingState: type: string description: >- Details for the billing address of this account. Maximum size is 80 characters. BillingPostalCode: type: string description: >- Details for the billing address of this account. Maximum size is 20 characters. BillingCountry: type: string description: >- Details for the billing address of this account. Maximum size is 80 characters. BillingLatitude: type: number description: >- Used with BillingLongitude to specify the precise geolocation of a billing address. Acceptable values are numbers between –90 and 90 with up to 15 decimal places. See Compound Field Considerations and Limitations for details on geolocation compound fields. BillingLongitude: type: number description: >- Used with BillingLatitude to specify the precise geolocation of a billing address. Acceptable values are numbers between –180 and 180 with up to 15 decimal places. See Compound Field Considerations and Limitations for details on geolocation compound fields. BillingGeocodeAccuracy: type: string description: >- Accuracy level of the geocode for the billing address. See Compound Field Considerations and Limitations for details on geolocation compound fields. BillingAddress: type: object description: >- The compound form of the billing address. Read-only. See Address Compound Fields for details on compound address fields. ShippingStreet: type: string description: >- The street address of the shipping address for this account. Maximum of 255 characters. ShippingCity: type: string description: >- Details of the shipping address for this account. City maximum size is 40 characters ShippingState: type: string description: >- Details of the shipping address for this account. State maximum size is 80 characters. ShippingPostalCode: type: string description: >- Details of the shipping address for this account. Postal code maximum size is 20 characters. ShippingCountry: type: string description: >- Details of the shipping address for this account. Country maximum size is 80 characters. ShippingLatitude: type: number description: >- Used with ShippingLongitude to specify the precise geolocation of a shipping address. Acceptable values are numbers between –90 and 90 with up to 15 decimal places. See Compound Field Considerations and Limitations for details on geolocation compound fields. ShippingLongitude: type: number description: >- Used with ShippingLatitude to specify the precise geolocation of an address. Acceptable values are numbers between –180 and 180 with up to 15 decimal places. See Compound Field Considerations and Limitations for details on geolocation compound fields. ShippingGeocodeAccuracy: type: string description: >- Accuracy level of the geocode for the shipping address. See Compound Field Considerations and Limitations for details on geolocation compound fields. ShippingAddress: type: object description: >- The compound form of the shipping address. Read-only. See Address Compound Fields for details on compound address fields. Phone: type: string description: Phone number for this account. Maximum size is 40 characters. Fax: type: string description: Fax number for the account. AccountNumber: type: string description: >- Account number assigned to this account (not the unique, system-generated ID assigned during creation). Maximum size is 40 characters. Website: type: string description: The website of this account. Maximum of 255 characters. PhotoUrl: type: string description: >- Path to be combined with the URL of a Salesforce instance (for example, https://yourInstance.salesforce.com/) to generate a URL to request the social network profile image associated with the account. Generated URL returns an HTTP redirect (code 302) to the social network profile image for the account. Blank if Social Accounts and Contacts isn't enabled for the org or if Social Accounts and Contacts is disabled for the requesting user. Sic: type: string description: >- Standard Industrial Classification code of the company’s main business categorization, for example, 57340 for Electronics. Maximum of 20 characters. This field is available on business accounts, not person accounts. Industry: type: string description: >- An industry associated with this account. Maximum size is 40 characters. AnnualRevenue: type: number description: Estimated annual revenue of the account. NumberOfEmployees: type: integer description: >- Label is Employees. Number of employees working at the company represented by this account. Maximum size is eight digits. Ownership: type: string description: >- Ownership type for the account, for example Private, Public, or Subsidiary. TickerSymbol: type: string description: >- The stock market symbol for this account. Maximum of 20 characters. This field is available on business accounts, not person accounts. Description: type: string description: Text description of the account. Limited to 32,000 KB. Rating: type: string description: The account’s prospect rating, for example Hot, Warm, or Cold. Site: type: string description: >- Name of the account’s location, for example Headquarters or London. Label is Account Site. Maximum of 80 characters. OwnerId: type: string description: >- The ID of the user who currently owns this account. Default value is the user logged in to the API to perform the create. If you have set up account teams in your org, updating this field has different consequences depending on your version of the API: For API version 12.0 and later, sharing records are kept, as they are for all objects. For API version before 12.0, sharing records are deleted. For API version 16.0 and later, users must have the “Transfer Record” permission in order to update (transfer) account ownership using this field. CreatedDate: type: string format: date-time CreatedById: type: string LastModifiedDate: type: string format: date-time LastModifiedById: type: string SystemModstamp: type: string format: date-time LastActivityDate: type: string description: >- Value is one of the following, whichever is the most recent: Due date of the most recent event logged against the record. Due date of the most recently closed task associated with the record. format: date LastViewedDate: type: string description: >- The timestamp when the current user last viewed this record or list view. If this value is null, the user might have only accessed this record or list view (LastReferencedDate) but not viewed it. format: date-time LastReferencedDate: type: string description: >- The timestamp when the current user last accessed this record, a record related to this record, or a list view. format: date-time IsPartner: type: boolean description: >- Indicates whether the account has at least one contact enabled to use the org's partner portal (true) or not (false). This field is available if partner relationship management (partner portal) is enabled ORdigitial experiences is enabled and you have partner portal licenses. If you change this field's value from true to false, you can disable up to 15 partner portal users associated with the account and permanently delete all of the account's partner portal roles and groups. You can't restore deleted partner portal roles and groups. Disabling a partner portal user in the Salesforce user interface or the API does not change this field's value from true to false. Even if this field's value is false, you can enable a contact on an account as a partner portal user via the API. This field can be updated in API version 16.0 and later.We recommend that you update up to 50 contacts simultaneously when changing the accounts on contacts enabled for a Customer Portal or partner portal. We also recommend that you make this update after business hours. IsCustomerPortal: type: boolean description: >- Indicates whether the account has at least one contact enabled to use the org's Customer Portal (true) or not (false). This field is available if Customer Portal is enabled OR digital experiences is enabled and you have Customer Portal licenses. If you change this field's value from true to false, you can disable up to 100 Customer Portal users associated with the account and permanently delete all of the account's Customer Portal roles and groups. You can't restore deleted Customer Portal roles and groups. This field can be updated in API version 16.0 and later.We recommend that you update up to 50 contacts simultaneously when changing the accounts on contacts enabled for a Customer Portal or partner portal. We also recommend that you make this update after business hours. ChannelProgramName: type: string description: >- Read only. Name of the channel program the account has enrolled.If this account has enrolled more than one channel program, the oldest channel program name will be displayed. . ChannelProgramLevelName: type: string description: >- Read only. Name of the channel program level the account has enrolled.If this account has enrolled more than one channel program level, the oldest channel program name will be displayed. Jigsaw: type: string description: >- References the ID of a company in Data.com. If an account has a value in this field, it means that the account was imported from Data.com. If the field value is null, the account was not imported from Data.com. Maximum size is 20 characters. Available in API version 22.0 and later. Label is Data.com Key. This field is available on business accounts, not person accounts.The Jigsaw field is exposed in the API to support troubleshooting for import errors and reimporting of corrected data. Do not modify the value in the Jigsaw field. JigsawCompanyId: type: string CleanStatus: type: string description: >- Indicates the record’s clean status as compared with Data.com. Values are: Matched, Different, Acknowledged, NotFound, Inactive, Pending, SelectMatch, or Skipped. Several values for CleanStatus display with different labels on the account record detail page. Matched displays as In Sync Acknowledged displays as Reviewed Pending displays as Not Compared AccountSource: type: string description: >- The source of the account record. For example, Advertisement, Data.com, or Trade Show. The source is selected from a picklist of available values, which are set by an administrator. Each picklist value can have up to 40 characters. DunsNumber: type: string description: >- The Data Universal Numbering System (D-U-N-S) number is a unique, nine-digit number assigned to every business location in the Dun & Bradstreet database that has a unique, separate, and distinct operation. D-U-N-S numbers are used by industries and organizations around the world as a global standard for business identification and tracking. Maximum size is 9 characters. This field is available on business accounts, not person accounts.This field is only available to organizations that use Data.com Prospector or Data.com Clean. Tradestyle: type: string description: >- A name, different from its legal name, that an org may use for conducting business. Similar to “Doing business as” or “DBA”. Maximum length is 255 characters. This field is available on business accounts, not person accounts.This field is only available to organizations that use Data.com Prospector or Data.com Clean. NaicsCode: type: string description: >- The six-digit North American Industry Classification System (NAICS) code is the standard used by business and government to classify business establishments into industries, according to their economic activity for the purpose of collecting, analyzing, and publishing statistical data related to the U.S. business economy. Maximum size is 8 characters. This field is available on business accounts, not person accounts.This field is only available to organizations that use Data.com Prospector or Data.com Clean. NaicsDesc: type: string description: >- A brief description of an org’s line of business, based on its NAICS code. Maximum size is 120 characters. This field is available on business accounts, not person accounts.This field is only available to organizations that use Data.com Prospector or Data.com Clean. YearStarted: type: string description: >- The date when an org was legally established. Maximum length is 4 characters. This field is available on business accounts, not person accounts.This field is only available to organizations that use Data.com Prospector or Data.com Clean. SicDesc: type: string description: >- A brief description of an org’s line of business, based on its SIC code. Maximum length is 80 characters. This field is available on business accounts, not person accounts. DandbCompanyId: type: string CustomerPriority__c: type: string SLA__c: type: string Active__c: type: string NumberofLocations__c: type: number UpsellOpportunity__c: type: string SLASerialNumber__c: type: string SLAExpirationDate__c: type: string format: date Potential_Value__c: type: number Match_Billing_Address__c: type: boolean Number_of_Contacts__c: type: number Region__c: type: string attributes: type: object properties: type: type: string url: type: string IsDeleted: title: IsDeleted required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: boolean description: >- Indicates whether the object has been moved to the Recycle Bin (true) or not (false). Label is Deleted. MasterRecordId: title: MasterRecordId required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: >- If this object was deleted as the result of a merge, this field contains the ID of the record that was kept. If this object was deleted for any other reason, or has not been deleted, the value is null. Name14: title: Name14 required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: >- Required. Label is Account Name. Name of the account. Maximum size is 255 characters. If the account has a record type of Person Account: This value is the concatenation of the FirstName, MiddleName, LastName, and Suffix of the associated person contact. You can't modify this value. Type4: title: Type4 required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: Type of account, for example, Customer, Competitor, or Partner. ParentId: title: ParentId required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: ID of the parent object, if any. BillingStreet: title: BillingStreet required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: Street address for the billing address of this account. BillingCity: title: BillingCity required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: >- Details for the billing address of this account. Maximum size is 40 characters. BillingState: title: BillingState required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: >- Details for the billing address of this account. Maximum size is 80 characters. BillingPostalCode: title: BillingPostalCode required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: >- Details for the billing address of this account. Maximum size is 20 characters. BillingCountry: title: BillingCountry required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: >- Details for the billing address of this account. Maximum size is 80 characters. BillingLatitude: title: BillingLatitude required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: number description: >- Used with BillingLongitude to specify the precise geolocation of a billing address. Acceptable values are numbers between –90 and 90 with up to 15 decimal places. See Compound Field Considerations and Limitations for details on geolocation compound fields. BillingLongitude: title: BillingLongitude required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: number description: >- Used with BillingLatitude to specify the precise geolocation of a billing address. Acceptable values are numbers between –180 and 180 with up to 15 decimal places. See Compound Field Considerations and Limitations for details on geolocation compound fields. BillingGeocodeAccuracy: title: BillingGeocodeAccuracy required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: >- Accuracy level of the geocode for the billing address. See Compound Field Considerations and Limitations for details on geolocation compound fields. BillingAddress: title: BillingAddress required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: object description: >- The compound form of the billing address. Read-only. See Address Compound Fields for details on compound address fields. ShippingStreet: title: ShippingStreet required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: >- The street address of the shipping address for this account. Maximum of 255 characters. ShippingCity: title: ShippingCity required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: >- Details of the shipping address for this account. City maximum size is 40 characters ShippingState: title: ShippingState required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: >- Details of the shipping address for this account. State maximum size is 80 characters. ShippingPostalCode: title: ShippingPostalCode required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: >- Details of the shipping address for this account. Postal code maximum size is 20 characters. ShippingCountry: title: ShippingCountry required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: >- Details of the shipping address for this account. Country maximum size is 80 characters. ShippingLatitude: title: ShippingLatitude required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: number description: >- Used with ShippingLongitude to specify the precise geolocation of a shipping address. Acceptable values are numbers between –90 and 90 with up to 15 decimal places. See Compound Field Considerations and Limitations for details on geolocation compound fields. ShippingLongitude: title: ShippingLongitude required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: number description: >- Used with ShippingLatitude to specify the precise geolocation of an address. Acceptable values are numbers between –180 and 180 with up to 15 decimal places. See Compound Field Considerations and Limitations for details on geolocation compound fields. ShippingGeocodeAccuracy: title: ShippingGeocodeAccuracy required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: >- Accuracy level of the geocode for the shipping address. See Compound Field Considerations and Limitations for details on geolocation compound fields. ShippingAddress: title: ShippingAddress required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: object description: >- The compound form of the shipping address. Read-only. See Address Compound Fields for details on compound address fields. Phone: title: Phone required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: Phone number for this account. Maximum size is 40 characters. Fax: title: Fax required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: Fax number for the account. AccountNumber: title: AccountNumber required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: >- Account number assigned to this account (not the unique, system-generated ID assigned during creation). Maximum size is 40 characters. Website: title: Website required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: The website of this account. Maximum of 255 characters. PhotoUrl: title: PhotoUrl required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: >- Path to be combined with the URL of a Salesforce instance (for example, https://yourInstance.salesforce.com/) to generate a URL to request the social network profile image associated with the account. Generated URL returns an HTTP redirect (code 302) to the social network profile image for the account. Blank if Social Accounts and Contacts isn't enabled for the org or if Social Accounts and Contacts is disabled for the requesting user. Sic: title: Sic required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: >- Standard Industrial Classification code of the company’s main business categorization, for example, 57340 for Electronics. Maximum of 20 characters. This field is available on business accounts, not person accounts. Industry: title: Industry required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: >- An industry associated with this account. Maximum size is 40 characters. AnnualRevenue: title: AnnualRevenue required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: number description: Estimated annual revenue of the account. NumberOfEmployees: title: NumberOfEmployees required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: integer description: >- Label is Employees. Number of employees working at the company represented by this account. Maximum size is eight digits. Ownership: title: Ownership required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: >- Ownership type for the account, for example Private, Public, or Subsidiary. TickerSymbol: title: TickerSymbol required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: >- The stock market symbol for this account. Maximum of 20 characters. This field is available on business accounts, not person accounts. Description3: title: Description3 required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: Text description of the account. Limited to 32,000 KB. Rating: title: Rating required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: The account’s prospect rating, for example Hot, Warm, or Cold. Site: title: Site required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: >- Name of the account’s location, for example Headquarters or London. Label is Account Site. Maximum of 80 characters. OwnerId: title: OwnerId required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: >- The ID of the user who currently owns this account. Default value is the user logged in to the API to perform the create. If you have set up account teams in your org, updating this field has different consequences depending on your version of the API: For API version 12.0 and later, sharing records are kept, as they are for all objects. For API version before 12.0, sharing records are deleted. For API version 16.0 and later, users must have the “Transfer Record” permission in order to update (transfer) account ownership using this field. CreatedDate: title: CreatedDate required: - type - format type: object properties: type: type: string example: example_value format: type: string example: example_value examples: - type: string format: date-time CreatedById: title: CreatedById required: - type type: object properties: type: type: string example: example_value examples: - type: string LastModifiedDate: title: LastModifiedDate required: - type - format type: object properties: type: type: string example: example_value format: type: string example: example_value examples: - type: string format: date-time LastModifiedById: title: LastModifiedById required: - type type: object properties: type: type: string example: example_value examples: - type: string SystemModstamp: title: SystemModstamp required: - type - format type: object properties: type: type: string example: example_value format: type: string example: example_value examples: - type: string format: date-time LastActivityDate: title: LastActivityDate required: - type - description - format type: object properties: type: type: string example: example_value description: type: string example: A sample description. format: type: string example: example_value examples: - type: string description: >- Value is one of the following, whichever is the most recent: Due date of the most recent event logged against the record. Due date of the most recently closed task associated with the record. format: date LastViewedDate: title: LastViewedDate required: - type - description - format type: object properties: type: type: string example: example_value description: type: string example: A sample description. format: type: string example: example_value examples: - type: string description: >- The timestamp when the current user last viewed this record or list view. If this value is null, the user might have only accessed this record or list view (LastReferencedDate) but not viewed it. format: date-time LastReferencedDate: title: LastReferencedDate required: - type - description - format type: object properties: type: type: string example: example_value description: type: string example: A sample description. format: type: string example: example_value examples: - type: string description: >- The timestamp when the current user last accessed this record, a record related to this record, or a list view. format: date-time IsPartner: title: IsPartner required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: boolean description: >- Indicates whether the account has at least one contact enabled to use the org's partner portal (true) or not (false). This field is available if partner relationship management (partner portal) is enabled ORdigitial experiences is enabled and you have partner portal licenses. If you change this field's value from true to false, you can disable up to 15 partner portal users associated with the account and permanently delete all of the account's partner portal roles and groups. You can't restore deleted partner portal roles and groups. Disabling a partner portal user in the Salesforce user interface or the API does not change this field's value from true to false. Even if this field's value is false, you can enable a contact on an account as a partner portal user via the API. This field can be updated in API version 16.0 and later.We recommend that you update up to 50 contacts simultaneously when changing the accounts on contacts enabled for a Customer Portal or partner portal. We also recommend that you make this update after business hours. IsCustomerPortal: title: IsCustomerPortal required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: boolean description: >- Indicates whether the account has at least one contact enabled to use the org's Customer Portal (true) or not (false). This field is available if Customer Portal is enabled OR digital experiences is enabled and you have Customer Portal licenses. If you change this field's value from true to false, you can disable up to 100 Customer Portal users associated with the account and permanently delete all of the account's Customer Portal roles and groups. You can't restore deleted Customer Portal roles and groups. This field can be updated in API version 16.0 and later.We recommend that you update up to 50 contacts simultaneously when changing the accounts on contacts enabled for a Customer Portal or partner portal. We also recommend that you make this update after business hours. ChannelProgramName: title: ChannelProgramName required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: >- Read only. Name of the channel program the account has enrolled.If this account has enrolled more than one channel program, the oldest channel program name will be displayed. . ChannelProgramLevelName: title: ChannelProgramLevelName required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: >- Read only. Name of the channel program level the account has enrolled.If this account has enrolled more than one channel program level, the oldest channel program name will be displayed. Jigsaw: title: Jigsaw required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: >- References the ID of a company in Data.com. If an account has a value in this field, it means that the account was imported from Data.com. If the field value is null, the account was not imported from Data.com. Maximum size is 20 characters. Available in API version 22.0 and later. Label is Data.com Key. This field is available on business accounts, not person accounts.The Jigsaw field is exposed in the API to support troubleshooting for import errors and reimporting of corrected data. Do not modify the value in the Jigsaw field. JigsawCompanyId: title: JigsawCompanyId required: - type type: object properties: type: type: string example: example_value examples: - type: string CleanStatus: title: CleanStatus required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: >- Indicates the record’s clean status as compared with Data.com. Values are: Matched, Different, Acknowledged, NotFound, Inactive, Pending, SelectMatch, or Skipped. Several values for CleanStatus display with different labels on the account record detail page. Matched displays as In Sync Acknowledged displays as Reviewed Pending displays as Not Compared AccountSource: title: AccountSource required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: >- The source of the account record. For example, Advertisement, Data.com, or Trade Show. The source is selected from a picklist of available values, which are set by an administrator. Each picklist value can have up to 40 characters. DunsNumber: title: DunsNumber required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: >- The Data Universal Numbering System (D-U-N-S) number is a unique, nine-digit number assigned to every business location in the Dun & Bradstreet database that has a unique, separate, and distinct operation. D-U-N-S numbers are used by industries and organizations around the world as a global standard for business identification and tracking. Maximum size is 9 characters. This field is available on business accounts, not person accounts.This field is only available to organizations that use Data.com Prospector or Data.com Clean. Tradestyle: title: Tradestyle required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: >- A name, different from its legal name, that an org may use for conducting business. Similar to “Doing business as” or “DBA”. Maximum length is 255 characters. This field is available on business accounts, not person accounts.This field is only available to organizations that use Data.com Prospector or Data.com Clean. NaicsCode: title: NaicsCode required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: >- The six-digit North American Industry Classification System (NAICS) code is the standard used by business and government to classify business establishments into industries, according to their economic activity for the purpose of collecting, analyzing, and publishing statistical data related to the U.S. business economy. Maximum size is 8 characters. This field is available on business accounts, not person accounts.This field is only available to organizations that use Data.com Prospector or Data.com Clean. NaicsDesc: title: NaicsDesc required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: >- A brief description of an org’s line of business, based on its NAICS code. Maximum size is 120 characters. This field is available on business accounts, not person accounts.This field is only available to organizations that use Data.com Prospector or Data.com Clean. YearStarted: title: YearStarted required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: >- The date when an org was legally established. Maximum length is 4 characters. This field is available on business accounts, not person accounts.This field is only available to organizations that use Data.com Prospector or Data.com Clean. SicDesc: title: SicDesc required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: >- A brief description of an org’s line of business, based on its SIC code. Maximum length is 80 characters. This field is available on business accounts, not person accounts. DandbCompanyId: title: DandbCompanyId required: - type type: object properties: type: type: string example: example_value examples: - type: string CustomerPriorityC: title: CustomerPriorityC required: - type type: object properties: type: type: string example: example_value examples: - type: string SLAC: title: SLAC required: - type type: object properties: type: type: string example: example_value examples: - type: string ActiveC: title: ActiveC required: - type type: object properties: type: type: string example: example_value examples: - type: string NumberofLocationsC: title: NumberofLocationsC required: - type type: object properties: type: type: string example: example_value examples: - type: number UpsellOpportunityC: title: UpsellOpportunityC required: - type type: object properties: type: type: string example: example_value examples: - type: string SLASerialNumberC: title: SLASerialNumberC required: - type type: object properties: type: type: string example: example_value examples: - type: string SLAExpirationDateC: title: SLAExpirationDateC required: - type - format type: object properties: type: type: string example: example_value format: type: string example: example_value examples: - type: string format: date PotentialValueC: title: PotentialValueC required: - type type: object properties: type: type: string example: example_value examples: - type: number MatchBillingAddressC: title: MatchBillingAddressC required: - type type: object properties: type: type: string example: example_value examples: - type: boolean NumberOfContactsC: title: NumberOfContactsC required: - type type: object properties: type: type: string example: example_value examples: - type: number RegionC: title: RegionC required: - type type: object properties: type: type: string example: example_value examples: - type: string Attributes15: title: Attributes15 required: - type - properties type: object properties: type: type: string example: example_value properties: $ref: '#/components/schemas/Properties5' examples: - type: object properties: type: type: string url: type: string Properties5: title: Properties5 required: - type - url type: object properties: type: $ref: '#/components/schemas/Type5' url: $ref: '#/components/schemas/Url' examples: - type: type: string url: type: string Type5: title: Type5 required: - type type: object properties: type: type: string example: example_value examples: - type: string Url: title: Url required: - type type: object properties: type: type: string example: example_value examples: - type: string ErrorInfo: title: ErrorInfo required: - type - properties type: object properties: type: type: string example: example_value properties: $ref: '#/components/schemas/Properties6' examples: - type: object properties: message: type: string errorCode: type: string fields: type: array items: type: string extendedErrorDetails: type: array items: type: object properties: extendedErrorCode: type: string Properties6: title: Properties6 required: - message - errorCode - fields - extendedErrorDetails type: object properties: message: $ref: '#/components/schemas/Message' errorCode: $ref: '#/components/schemas/ErrorCode' fields: $ref: '#/components/schemas/Fields' extendedErrorDetails: $ref: '#/components/schemas/ExtendedErrorDetails' examples: - message: type: string errorCode: type: string fields: type: array items: type: string extendedErrorDetails: type: array items: type: object properties: extendedErrorCode: type: string Fields: title: Fields required: - type - items type: object properties: type: type: string example: example_value items: $ref: '#/components/schemas/Items18' examples: - type: array items: type: string Items18: title: Items18 required: - type type: object properties: type: type: string example: example_value examples: - type: string ExtendedErrorDetails: title: ExtendedErrorDetails required: - type - items type: object properties: type: type: string example: example_value items: $ref: '#/components/schemas/Items19' examples: - type: array items: type: object properties: extendedErrorCode: type: string Items19: title: Items19 required: - type - properties type: object properties: type: type: string example: example_value properties: $ref: '#/components/schemas/Properties7' examples: - type: object properties: extendedErrorCode: type: string Properties7: title: Properties7 required: - extendedErrorCode type: object properties: extendedErrorCode: $ref: '#/components/schemas/ExtendedErrorCode' examples: - extendedErrorCode: type: string ExtendedErrorCode: title: ExtendedErrorCode required: - type type: object properties: type: type: string example: example_value examples: - type: string SaveResult: title: SaveResult required: - type - properties type: object properties: type: type: string example: example_value properties: $ref: '#/components/schemas/Properties8' examples: - type: object properties: success: type: boolean id: type: string errors: type: array items: type: object properties: message: type: string fields: type: array items: type: string statusCode: type: string extendedErrorDetails: type: array items: type: object properties: extendedErrorCode: type: string warnings: type: array items: type: object properties: message: type: string statusCode: type: string extendedDetails: type: array items: type: object properties: extendedErrorCode: type: string infos: type: array items: type: object properties: message: type: string statusCode: type: string extendedDetails: type: array items: type: object properties: extendedErrorCode: type: string Properties8: title: Properties8 required: - success - id - errors - warnings - infos type: object properties: success: $ref: '#/components/schemas/Success' id: $ref: '#/components/schemas/Id' errors: $ref: '#/components/schemas/Errors12' warnings: $ref: '#/components/schemas/Warnings' infos: $ref: '#/components/schemas/Infos' examples: - success: type: boolean id: type: string errors: type: array items: type: object properties: message: type: string fields: type: array items: type: string statusCode: type: string extendedErrorDetails: type: array items: type: object properties: extendedErrorCode: type: string warnings: type: array items: type: object properties: message: type: string statusCode: type: string extendedDetails: type: array items: type: object properties: extendedErrorCode: type: string infos: type: array items: type: object properties: message: type: string statusCode: type: string extendedDetails: type: array items: type: object properties: extendedErrorCode: type: string Success: title: Success required: - type type: object properties: type: type: string example: example_value examples: - type: boolean Errors12: title: Errors12 required: - type - items type: object properties: type: type: string example: example_value items: $ref: '#/components/schemas/Items20' examples: - type: array items: type: object properties: message: type: string fields: type: array items: type: string statusCode: type: string extendedErrorDetails: type: array items: type: object properties: extendedErrorCode: type: string Items20: title: Items20 required: - type - properties type: object properties: type: type: string example: example_value properties: $ref: '#/components/schemas/Properties9' examples: - type: object properties: message: type: string fields: type: array items: type: string statusCode: type: string extendedErrorDetails: type: array items: type: object properties: extendedErrorCode: type: string Properties9: title: Properties9 required: - message - fields - statusCode - extendedErrorDetails type: object properties: message: $ref: '#/components/schemas/Message' fields: $ref: '#/components/schemas/Fields' statusCode: $ref: '#/components/schemas/StatusCode' extendedErrorDetails: $ref: '#/components/schemas/ExtendedErrorDetails1' examples: - message: type: string fields: type: array items: type: string statusCode: type: string extendedErrorDetails: type: array items: type: object properties: extendedErrorCode: type: string StatusCode: title: StatusCode required: - type type: object properties: type: type: string example: example_value examples: - type: string ExtendedErrorDetails1: title: ExtendedErrorDetails1 required: - type - items type: object properties: type: type: string example: example_value items: $ref: '#/components/schemas/Items22' examples: - type: array items: type: object properties: extendedErrorCode: type: string Items22: title: Items22 required: - type - properties type: object properties: type: type: string example: example_value properties: type: object example: example_value examples: - type: object properties: extendedErrorCode: type: string Warnings: title: Warnings required: - type - items type: object properties: type: type: string example: example_value items: $ref: '#/components/schemas/Items23' examples: - type: array items: type: object properties: message: type: string statusCode: type: string extendedDetails: type: array items: type: object properties: extendedErrorCode: type: string Items23: title: Items23 required: - type - properties type: object properties: type: type: string example: example_value properties: $ref: '#/components/schemas/Properties10' examples: - type: object properties: message: type: string statusCode: type: string extendedDetails: type: array items: type: object properties: extendedErrorCode: type: string Properties10: title: Properties10 required: - message - statusCode - extendedDetails type: object properties: message: $ref: '#/components/schemas/Message' statusCode: $ref: '#/components/schemas/StatusCode' extendedDetails: $ref: '#/components/schemas/ExtendedDetails' examples: - message: type: string statusCode: type: string extendedDetails: type: array items: type: object properties: extendedErrorCode: type: string ExtendedDetails: title: ExtendedDetails required: - type - items type: object properties: type: type: string example: example_value items: $ref: '#/components/schemas/Items22' examples: - type: array items: type: object properties: extendedErrorCode: type: string Infos: title: Infos required: - type - items type: object properties: type: type: string example: example_value items: $ref: '#/components/schemas/Items23' examples: - type: array items: type: object properties: message: type: string statusCode: type: string extendedDetails: type: array items: type: object properties: extendedErrorCode: type: string ContactSObject: title: ContactSObject required: - type - properties - description type: object properties: type: type: string example: example_value properties: $ref: '#/components/schemas/Properties12' description: type: string example: A sample description. examples: - type: object properties: Id: type: string IsDeleted: type: boolean description: >- Indicates whether the object has been moved to the Recycle Bin (true) or not (false). Label is Deleted. MasterRecordId: type: string description: >- If this record was deleted as the result of a merge, this field contains the ID of the record that remains. If this record was deleted for any other reason, or has not been deleted, the value is null. AccountId: type: string description: >- ID of the account that’s the parent of this contact. We recommend that you update up to 50 contacts simultaneously when changing the accounts on contacts enabled for a Customer Portal or partner portal. We also recommend that you make this update after business hours. LastName: type: string description: Required. Last name of the contact up to 80 characters. FirstName: type: string description: The contact’s first name up to 40 characters. Salutation: type: string description: >- Honorific abbreviation, word, or phrase to be used in front of name in greetings, such as Dr. or Mrs. Name: type: string description: >- Concatenation of FirstName, MiddleName, LastName, and Suffix up to 203 characters, including whitespaces. OtherStreet: type: string description: Street for alternate address. OtherCity: type: string description: Alternate address details. OtherState: type: string description: Alternate address details. OtherPostalCode: type: string description: Alternate address details. OtherCountry: type: string description: Alternate address details. OtherLatitude: type: number description: >- Used with OtherLongitude to specify the precise geolocation of an alternate address. Acceptable values are numbers between –90 and 90 up to 15 decimal places. For details on geolocation compound fields, see . OtherLongitude: type: number description: >- Used with OtherLatitude to specify the precise geolocation of an alternate address. Acceptable values are numbers between –180 and 180 up to 15 decimal places. For details on geolocation compound fields, see . OtherGeocodeAccuracy: type: string description: >- Accuracy level of the geocode for the other address. For details on geolocation compound fields, see . OtherAddress: type: object description: >- The compound form of the other address. Read-only. For details on compound address fields, see Address Compound Fields. MailingStreet: type: string description: Street address for mailing address. MailingCity: type: string description: Mailing address details. MailingState: type: string description: Mailing address details. MailingPostalCode: type: string description: Mailing address details. MailingCountry: type: string description: Mailing address details. MailingLatitude: type: number description: >- Used with MailingLongitude to specify the precise geolocation of a mailing address. Acceptable values are numbers between –90 and 90 up to 15 decimal places. For details on geolocation compound fields, see . MailingLongitude: type: number description: >- Used with MailingLatitude to specify the precise geolocation of a mailing address. Acceptable values are numbers between –180 and 180 up to 15 decimal places. For details on geolocation compound fields, see . MailingGeocodeAccuracy: type: string description: >- Accuracy level of the geocode for the mailing address. For details on geolocation compound field, see . MailingAddress: type: object description: >- The compound form of the mailing address. Read-only. For details on compound address fields, see Address Compound Fields. Phone: type: string description: Telephone number for the contact. Label is Business Phone. Fax: type: string description: The contact’s fax number. Label is Business Fax. MobilePhone: type: string description: Contact’s mobile phone number. HomePhone: type: string description: The contact’s home telephone number. OtherPhone: type: string description: Telephone for alternate address. AssistantPhone: type: string description: The assistant’s telephone number. ReportsToId: type: string description: This field doesn’t appear if IsPersonAccount is true. Email: type: string description: The contact’s email address. Title: type: string description: Title of the contact, such as CEO or Vice President. Department: type: string description: The contact’s department. AssistantName: type: string description: The assistant’s name. LeadSource: type: string description: The lead’s source. Birthdate: type: string description: >- The contact’s birthdate. Filter criteria for report filters, list view filters, and SOQL queries ignore the year portion of the Birthdate field. For example, this SOQL query returns contacts with birthdays later in the year than today:SELECT Name, Birthdate FROM Contact WHERE Birthdate > TODAY format: date Description: type: string description: >- A description of the contact. Label is Contact Description up to 32 KB. OwnerId: type: string description: The ID of the owner of the account associated with this contact. CreatedDate: type: string format: date-time CreatedById: type: string LastModifiedDate: type: string format: date-time LastModifiedById: type: string SystemModstamp: type: string format: date-time LastActivityDate: type: string description: >- Value is the most recent of either: Due date of the most recent event logged against the record. Due date of the most recently closed task associated with the record. format: date LastCURequestDate: type: string format: date-time LastCUUpdateDate: type: string format: date-time LastViewedDate: type: string description: >- The timestamp when the current user last viewed this record or list view. If this value is null, the user might have only accessed this record or list view (LastReferencedDate) but not viewed it. format: date-time LastReferencedDate: type: string description: >- The timestamp when the current user last accessed this record, a record related to this record, or a list view. format: date-time EmailBouncedReason: type: string description: >- If bounce management is activated and an email sent to the contact bounces, the reason for the bounce. EmailBouncedDate: type: string description: >- If bounce management is activated and an email sent to the contact bounces, the date and time of the bounce. format: date-time IsEmailBounced: type: boolean description: >- If bounce management is activated and an email is sent to a contact, indicates whether the email bounced (true) or not (false). PhotoUrl: type: string description: >- Path to be combined with the URL of a Salesforce instance (Example: https://yourInstance.salesforce.com/) to generate a URL to request the social network profile image associated with the contact. Generated URL returns an HTTP redirect (code 302) to the social network profile image for the contact. Empty if Social Accounts and Contacts isn't enabled or if Social Accounts and Contacts is disabled for the requesting user. Jigsaw: type: string description: >- References the company’s ID in Data.com. If an account has a value in this field, it means that the account was imported from Data.com. If the field value is null, the account was not imported from Data.com. Maximum size is 20 characters. Available in API version 22.0 and later. Label is Data.com Key.The Jigsaw field is exposed in the API to support troubleshooting for import errors and reimporting of corrected data. Do not modify this value. JigsawContactId: type: string CleanStatus: type: string description: >- Indicates the record’s clean status as compared with Data.com. Values include: Matched, Different, Acknowledged, NotFound, Inactive, Pending, SelectMatch, or Skipped. Several values for CleanStatus appear with different labels on the contact record. Matched appears as In Sync Acknowledged appears as Reviewed Pending appears as Not Compared IndividualId: type: string description: >- ID of the data privacy record associated with this contact. This field is available if Data Protection and Privacy is enabled. attributes: type: object properties: type: type: string url: type: string description: Represents a contact, which is a person associated with an account. Properties12: title: Properties12 required: - Id - IsDeleted - MasterRecordId - AccountId - LastName - FirstName - Salutation - Name - OtherStreet - OtherCity - OtherState - OtherPostalCode - OtherCountry - OtherLatitude - OtherLongitude - OtherGeocodeAccuracy - OtherAddress - MailingStreet - MailingCity - MailingState - MailingPostalCode - MailingCountry - MailingLatitude - MailingLongitude - MailingGeocodeAccuracy - MailingAddress - Phone - Fax - MobilePhone - HomePhone - OtherPhone - AssistantPhone - ReportsToId - Email - Title - Department - AssistantName - LeadSource - Birthdate - Description - OwnerId - CreatedDate - CreatedById - LastModifiedDate - LastModifiedById - SystemModstamp - LastActivityDate - LastCURequestDate - LastCUUpdateDate - LastViewedDate - LastReferencedDate - EmailBouncedReason - EmailBouncedDate - IsEmailBounced - PhotoUrl - Jigsaw - JigsawContactId - CleanStatus - IndividualId - attributes type: object properties: Id: $ref: '#/components/schemas/Id' IsDeleted: $ref: '#/components/schemas/IsDeleted' MasterRecordId: $ref: '#/components/schemas/MasterRecordId' AccountId: $ref: '#/components/schemas/AccountId' LastName: $ref: '#/components/schemas/LastName' FirstName: $ref: '#/components/schemas/FirstName' Salutation: $ref: '#/components/schemas/Salutation' Name: $ref: '#/components/schemas/Name14' OtherStreet: $ref: '#/components/schemas/OtherStreet' OtherCity: $ref: '#/components/schemas/OtherCity' OtherState: $ref: '#/components/schemas/OtherState' OtherPostalCode: $ref: '#/components/schemas/OtherPostalCode' OtherCountry: $ref: '#/components/schemas/OtherCountry' OtherLatitude: $ref: '#/components/schemas/OtherLatitude' OtherLongitude: $ref: '#/components/schemas/OtherLongitude' OtherGeocodeAccuracy: $ref: '#/components/schemas/OtherGeocodeAccuracy' OtherAddress: $ref: '#/components/schemas/OtherAddress' MailingStreet: $ref: '#/components/schemas/MailingStreet' MailingCity: $ref: '#/components/schemas/MailingCity' MailingState: $ref: '#/components/schemas/MailingState' MailingPostalCode: $ref: '#/components/schemas/MailingPostalCode' MailingCountry: $ref: '#/components/schemas/MailingCountry' MailingLatitude: $ref: '#/components/schemas/MailingLatitude' MailingLongitude: $ref: '#/components/schemas/MailingLongitude' MailingGeocodeAccuracy: $ref: '#/components/schemas/MailingGeocodeAccuracy' MailingAddress: $ref: '#/components/schemas/MailingAddress' Phone: $ref: '#/components/schemas/Phone' Fax: $ref: '#/components/schemas/Fax' MobilePhone: $ref: '#/components/schemas/MobilePhone' HomePhone: $ref: '#/components/schemas/HomePhone' OtherPhone: $ref: '#/components/schemas/OtherPhone' AssistantPhone: $ref: '#/components/schemas/AssistantPhone' ReportsToId: $ref: '#/components/schemas/ReportsToId' Email: $ref: '#/components/schemas/Email' Title: $ref: '#/components/schemas/Title' Department: $ref: '#/components/schemas/Department' AssistantName: $ref: '#/components/schemas/AssistantName' LeadSource: $ref: '#/components/schemas/LeadSource' Birthdate: $ref: '#/components/schemas/Birthdate' Description: $ref: '#/components/schemas/Description3' OwnerId: $ref: '#/components/schemas/OwnerId' CreatedDate: $ref: '#/components/schemas/CreatedDate' CreatedById: $ref: '#/components/schemas/CreatedById' LastModifiedDate: $ref: '#/components/schemas/LastModifiedDate' LastModifiedById: $ref: '#/components/schemas/LastModifiedById' SystemModstamp: $ref: '#/components/schemas/SystemModstamp' LastActivityDate: $ref: '#/components/schemas/LastActivityDate' LastCURequestDate: $ref: '#/components/schemas/LastCURequestDate' LastCUUpdateDate: $ref: '#/components/schemas/LastCUUpdateDate' LastViewedDate: $ref: '#/components/schemas/LastViewedDate' LastReferencedDate: $ref: '#/components/schemas/LastReferencedDate' EmailBouncedReason: $ref: '#/components/schemas/EmailBouncedReason' EmailBouncedDate: $ref: '#/components/schemas/EmailBouncedDate' IsEmailBounced: $ref: '#/components/schemas/IsEmailBounced' PhotoUrl: $ref: '#/components/schemas/PhotoUrl' Jigsaw: $ref: '#/components/schemas/Jigsaw' JigsawContactId: $ref: '#/components/schemas/JigsawContactId' CleanStatus: $ref: '#/components/schemas/CleanStatus' IndividualId: $ref: '#/components/schemas/IndividualId' attributes: $ref: '#/components/schemas/Attributes15' examples: - Id: type: string IsDeleted: type: boolean description: >- Indicates whether the object has been moved to the Recycle Bin (true) or not (false). Label is Deleted. MasterRecordId: type: string description: >- If this record was deleted as the result of a merge, this field contains the ID of the record that remains. If this record was deleted for any other reason, or has not been deleted, the value is null. AccountId: type: string description: >- ID of the account that’s the parent of this contact. We recommend that you update up to 50 contacts simultaneously when changing the accounts on contacts enabled for a Customer Portal or partner portal. We also recommend that you make this update after business hours. LastName: type: string description: Required. Last name of the contact up to 80 characters. FirstName: type: string description: The contact’s first name up to 40 characters. Salutation: type: string description: >- Honorific abbreviation, word, or phrase to be used in front of name in greetings, such as Dr. or Mrs. Name: type: string description: >- Concatenation of FirstName, MiddleName, LastName, and Suffix up to 203 characters, including whitespaces. OtherStreet: type: string description: Street for alternate address. OtherCity: type: string description: Alternate address details. OtherState: type: string description: Alternate address details. OtherPostalCode: type: string description: Alternate address details. OtherCountry: type: string description: Alternate address details. OtherLatitude: type: number description: >- Used with OtherLongitude to specify the precise geolocation of an alternate address. Acceptable values are numbers between –90 and 90 up to 15 decimal places. For details on geolocation compound fields, see . OtherLongitude: type: number description: >- Used with OtherLatitude to specify the precise geolocation of an alternate address. Acceptable values are numbers between –180 and 180 up to 15 decimal places. For details on geolocation compound fields, see . OtherGeocodeAccuracy: type: string description: >- Accuracy level of the geocode for the other address. For details on geolocation compound fields, see . OtherAddress: type: object description: >- The compound form of the other address. Read-only. For details on compound address fields, see Address Compound Fields. MailingStreet: type: string description: Street address for mailing address. MailingCity: type: string description: Mailing address details. MailingState: type: string description: Mailing address details. MailingPostalCode: type: string description: Mailing address details. MailingCountry: type: string description: Mailing address details. MailingLatitude: type: number description: >- Used with MailingLongitude to specify the precise geolocation of a mailing address. Acceptable values are numbers between –90 and 90 up to 15 decimal places. For details on geolocation compound fields, see . MailingLongitude: type: number description: >- Used with MailingLatitude to specify the precise geolocation of a mailing address. Acceptable values are numbers between –180 and 180 up to 15 decimal places. For details on geolocation compound fields, see . MailingGeocodeAccuracy: type: string description: >- Accuracy level of the geocode for the mailing address. For details on geolocation compound field, see . MailingAddress: type: object description: >- The compound form of the mailing address. Read-only. For details on compound address fields, see Address Compound Fields. Phone: type: string description: Telephone number for the contact. Label is Business Phone. Fax: type: string description: The contact’s fax number. Label is Business Fax. MobilePhone: type: string description: Contact’s mobile phone number. HomePhone: type: string description: The contact’s home telephone number. OtherPhone: type: string description: Telephone for alternate address. AssistantPhone: type: string description: The assistant’s telephone number. ReportsToId: type: string description: This field doesn’t appear if IsPersonAccount is true. Email: type: string description: The contact’s email address. Title: type: string description: Title of the contact, such as CEO or Vice President. Department: type: string description: The contact’s department. AssistantName: type: string description: The assistant’s name. LeadSource: type: string description: The lead’s source. Birthdate: type: string description: >- The contact’s birthdate. Filter criteria for report filters, list view filters, and SOQL queries ignore the year portion of the Birthdate field. For example, this SOQL query returns contacts with birthdays later in the year than today:SELECT Name, Birthdate FROM Contact WHERE Birthdate > TODAY format: date Description: type: string description: >- A description of the contact. Label is Contact Description up to 32 KB. OwnerId: type: string description: The ID of the owner of the account associated with this contact. CreatedDate: type: string format: date-time CreatedById: type: string LastModifiedDate: type: string format: date-time LastModifiedById: type: string SystemModstamp: type: string format: date-time LastActivityDate: type: string description: >- Value is the most recent of either: Due date of the most recent event logged against the record. Due date of the most recently closed task associated with the record. format: date LastCURequestDate: type: string format: date-time LastCUUpdateDate: type: string format: date-time LastViewedDate: type: string description: >- The timestamp when the current user last viewed this record or list view. If this value is null, the user might have only accessed this record or list view (LastReferencedDate) but not viewed it. format: date-time LastReferencedDate: type: string description: >- The timestamp when the current user last accessed this record, a record related to this record, or a list view. format: date-time EmailBouncedReason: type: string description: >- If bounce management is activated and an email sent to the contact bounces, the reason for the bounce. EmailBouncedDate: type: string description: >- If bounce management is activated and an email sent to the contact bounces, the date and time of the bounce. format: date-time IsEmailBounced: type: boolean description: >- If bounce management is activated and an email is sent to a contact, indicates whether the email bounced (true) or not (false). PhotoUrl: type: string description: >- Path to be combined with the URL of a Salesforce instance (Example: https://yourInstance.salesforce.com/) to generate a URL to request the social network profile image associated with the contact. Generated URL returns an HTTP redirect (code 302) to the social network profile image for the contact. Empty if Social Accounts and Contacts isn't enabled or if Social Accounts and Contacts is disabled for the requesting user. Jigsaw: type: string description: >- References the company’s ID in Data.com. If an account has a value in this field, it means that the account was imported from Data.com. If the field value is null, the account was not imported from Data.com. Maximum size is 20 characters. Available in API version 22.0 and later. Label is Data.com Key.The Jigsaw field is exposed in the API to support troubleshooting for import errors and reimporting of corrected data. Do not modify this value. JigsawContactId: type: string CleanStatus: type: string description: >- Indicates the record’s clean status as compared with Data.com. Values include: Matched, Different, Acknowledged, NotFound, Inactive, Pending, SelectMatch, or Skipped. Several values for CleanStatus appear with different labels on the contact record. Matched appears as In Sync Acknowledged appears as Reviewed Pending appears as Not Compared IndividualId: type: string description: >- ID of the data privacy record associated with this contact. This field is available if Data Protection and Privacy is enabled. attributes: type: object properties: type: type: string url: type: string AccountId: title: AccountId required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: >- ID of the account that’s the parent of this contact. We recommend that you update up to 50 contacts simultaneously when changing the accounts on contacts enabled for a Customer Portal or partner portal. We also recommend that you make this update after business hours. LastName: title: LastName required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: Required. Last name of the contact up to 80 characters. FirstName: title: FirstName required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: The contact’s first name up to 40 characters. Salutation: title: Salutation required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: >- Honorific abbreviation, word, or phrase to be used in front of name in greetings, such as Dr. or Mrs. OtherStreet: title: OtherStreet required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: Street for alternate address. OtherCity: title: OtherCity required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: Alternate address details. OtherState: title: OtherState required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: Alternate address details. OtherPostalCode: title: OtherPostalCode required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: Alternate address details. OtherCountry: title: OtherCountry required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: Alternate address details. OtherLatitude: title: OtherLatitude required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: number description: >- Used with OtherLongitude to specify the precise geolocation of an alternate address. Acceptable values are numbers between –90 and 90 up to 15 decimal places. For details on geolocation compound fields, see . OtherLongitude: title: OtherLongitude required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: number description: >- Used with OtherLatitude to specify the precise geolocation of an alternate address. Acceptable values are numbers between –180 and 180 up to 15 decimal places. For details on geolocation compound fields, see . OtherGeocodeAccuracy: title: OtherGeocodeAccuracy required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: >- Accuracy level of the geocode for the other address. For details on geolocation compound fields, see . OtherAddress: title: OtherAddress required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: object description: >- The compound form of the other address. Read-only. For details on compound address fields, see Address Compound Fields. MailingStreet: title: MailingStreet required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: Street address for mailing address. MailingCity: title: MailingCity required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: Mailing address details. MailingState: title: MailingState required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: Mailing address details. MailingPostalCode: title: MailingPostalCode required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: Mailing address details. MailingCountry: title: MailingCountry required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: Mailing address details. MailingLatitude: title: MailingLatitude required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: number description: >- Used with MailingLongitude to specify the precise geolocation of a mailing address. Acceptable values are numbers between –90 and 90 up to 15 decimal places. For details on geolocation compound fields, see . MailingLongitude: title: MailingLongitude required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: number description: >- Used with MailingLatitude to specify the precise geolocation of a mailing address. Acceptable values are numbers between –180 and 180 up to 15 decimal places. For details on geolocation compound fields, see . MailingGeocodeAccuracy: title: MailingGeocodeAccuracy required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: >- Accuracy level of the geocode for the mailing address. For details on geolocation compound field, see . MailingAddress: title: MailingAddress required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: object description: >- The compound form of the mailing address. Read-only. For details on compound address fields, see Address Compound Fields. MobilePhone: title: MobilePhone required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: Contact’s mobile phone number. HomePhone: title: HomePhone required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: The contact’s home telephone number. OtherPhone: title: OtherPhone required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: Telephone for alternate address. AssistantPhone: title: AssistantPhone required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: The assistant’s telephone number. ReportsToId: title: ReportsToId required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: This field doesn’t appear if IsPersonAccount is true. Email: title: Email required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: The contact’s email address. Title: title: Title required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: Title of the contact, such as CEO or Vice President. Department: title: Department required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: The contact’s department. AssistantName: title: AssistantName required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: The assistant’s name. LeadSource: title: LeadSource required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: The lead’s source. Birthdate: title: Birthdate required: - type - description - format type: object properties: type: type: string example: example_value description: type: string example: A sample description. format: type: string example: example_value examples: - type: string description: >- The contact’s birthdate. Filter criteria for report filters, list view filters, and SOQL queries ignore the year portion of the Birthdate field. For example, this SOQL query returns contacts with birthdays later in the year than today:SELECT Name, Birthdate FROM Contact WHERE Birthdate > TODAY format: date LastCURequestDate: title: LastCURequestDate required: - type - format type: object properties: type: type: string example: example_value format: type: string example: example_value examples: - type: string format: date-time LastCUUpdateDate: title: LastCUUpdateDate required: - type - format type: object properties: type: type: string example: example_value format: type: string example: example_value examples: - type: string format: date-time EmailBouncedReason: title: EmailBouncedReason required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: >- If bounce management is activated and an email sent to the contact bounces, the reason for the bounce. EmailBouncedDate: title: EmailBouncedDate required: - type - description - format type: object properties: type: type: string example: example_value description: type: string example: A sample description. format: type: string example: example_value examples: - type: string description: >- If bounce management is activated and an email sent to the contact bounces, the date and time of the bounce. format: date-time IsEmailBounced: title: IsEmailBounced required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: boolean description: >- If bounce management is activated and an email is sent to a contact, indicates whether the email bounced (true) or not (false). JigsawContactId: title: JigsawContactId required: - type type: object properties: type: type: string example: example_value examples: - type: string IndividualId: title: IndividualId required: - type - description type: object properties: type: type: string example: example_value description: type: string example: A sample description. examples: - type: string description: >- ID of the data privacy record associated with this contact. This field is available if Data Protection and Privacy is enabled. SecuritySchemes: title: SecuritySchemes required: - openIDConnectDiscovery - bearerAuth - oAuth2 type: object properties: openIDConnectDiscovery: $ref: '#/components/schemas/OpenIDConnectDiscovery' bearerAuth: $ref: '#/components/schemas/BearerAuth' oAuth2: $ref: '#/components/schemas/OAuth2' examples: - openIDConnectDiscovery: type: openIdConnect openIdConnectUrl: https://login.salesforce.com/.well-known/openid-configuration bearerAuth: type: http description: >- Use Session Id or Access Token as valid bearer token to authenticate with Salesforce. Access Token could be retrieved via any supported OAuth2 flows listed or not listed here (e.g. JWT Bearer Token Flow).To obtain a session ID, you can use the SOAP API login() call or through the Salesforce CLI. scheme: bearer oAuth2: type: oauth2 description: >- For more information on all supported OAuth Flows, please see 'https://help.salesforce.com/articleView?id=remoteaccess_oauth_flows.htm&type=5'. For more information on all available scope options, please see 'https://help.salesforce.com/articleView?id=remoteaccess_oauth_tokens_scopes.htm&type=5#oauth_scopes'. flows: implicit: authorizationUrl: https://login.salesforce.com/services/oauth2/authorize scopes: visualforce: >- Allows access to customer-created Visualforce pages only. This scope doesn’t allow access to standard Salesforce UIs. address: >- Allows access to the identity URL service. You can request profile, email, address, or phone individually to get the same result as using id; they are all synonymous. custom_permissions: >- Allows access to the custom permissions in an org associated with the connected app. This scope also shows whether the current user has each permission enabled. openid: >- Allows access to the current, logged in user’s unique identifier for OpenID Connect apps. In the OAuth 2.0 user-agent flow and the OAuth 2.0 web server flow, use the openid scope. In addition to the access token, this scope enables you to receive a signed ID token that conforms to the OpenID Connect specifications. profile: >- Allows access to the identity URL service. You can request profile, email, address, or phone individually to get the same result as using id; they are all synonymous. refresh_token: >- Allows a refresh token to be returned when the requesting client is eligible to receive one. With a refresh token, the app can interact with the user’s data while the user is offline. This token is synonymous with requesting offline_access. wave_api: Access and manage your Wave data. web: >- Allows use of the access_token on the web. This scope also includes visualforce, allowing access to customer-created Visualforce pages. phone: >- Allows access to the identity URL service. You can request profile, email, address, or phone individually to get the same result as using id; they are all synonymous. offline_access: >- Allows a refresh token to be returned when the requesting client is eligible to receive one. With a refresh token, the app can interact with the user’s data while the user is offline. This token is synonymous with requesting offline_access. chatter_api: >- Allows access to Connect REST API resources on behalf of the user. id: >- Allows access to the identity URL service. You can request profile, email, address, or phone individually to get the same result as using id; they are all synonymous. api: >- Allows access to the current, logged-in user’s account using APIs, such as REST API and Bulk API. This scope also includes chatter_api, which allows access to Connect REST API resources. eclair_api: Access and manage your Eclair data. email: >- Allows access to the identity URL service. You can request profile, email, address, or phone individually to get the same result as using id; they are all synonymous. pardot_api: >- Allows access to Pardot API services on behalf of the user. Manage the full extent of accessible services in Pardot. full: >- Allows access to all data accessible by the logged-in user, and encompasses all other scopes. full doesn’t return a refresh token. You must explicitly request the refresh_token scope to get a refresh token. password: tokenUrl: https://login.salesforce.com/services/oauth2/token scopes: api: >- Allows access to the current, logged-in user’s account using APIs, such as REST API and Bulk API. This scope also includes chatter_api, which allows access to Connect REST API resources. authorizationCode: authorizationUrl: https://login.salesforce.com/services/oauth2/authorize tokenUrl: https://login.salesforce.com/services/oauth2/token scopes: visualforce: >- Allows access to customer-created Visualforce pages only. This scope doesn’t allow access to standard Salesforce UIs. address: >- Allows access to the identity URL service. You can request profile, email, address, or phone individually to get the same result as using id; they are all synonymous. custom_permissions: >- Allows access to the custom permissions in an org associated with the connected app. This scope also shows whether the current user has each permission enabled. openid: >- Allows access to the current, logged in user’s unique identifier for OpenID Connect apps. In the OAuth 2.0 user-agent flow and the OAuth 2.0 web server flow, use the openid scope. In addition to the access token, this scope enables you to receive a signed ID token that conforms to the OpenID Connect specifications. profile: >- Allows access to the identity URL service. You can request profile, email, address, or phone individually to get the same result as using id; they are all synonymous. refresh_token: >- Allows a refresh token to be returned when the requesting client is eligible to receive one. With a refresh token, the app can interact with the user’s data while the user is offline. This token is synonymous with requesting offline_access. wave_api: Access and manage your Wave data. web: >- Allows use of the access_token on the web. This scope also includes visualforce, allowing access to customer-created Visualforce pages. phone: >- Allows access to the identity URL service. You can request profile, email, address, or phone individually to get the same result as using id; they are all synonymous. offline_access: >- Allows a refresh token to be returned when the requesting client is eligible to receive one. With a refresh token, the app can interact with the user’s data while the user is offline. This token is synonymous with requesting offline_access. chatter_api: >- Allows access to Connect REST API resources on behalf of the user. id: >- Allows access to the identity URL service. You can request profile, email, address, or phone individually to get the same result as using id; they are all synonymous. api: >- Allows access to the current, logged-in user’s account using APIs, such as REST API and Bulk API. This scope also includes chatter_api, which allows access to Connect REST API resources. eclair_api: Access and manage your Eclair data. email: >- Allows access to the identity URL service. You can request profile, email, address, or phone individually to get the same result as using id; they are all synonymous. pardot_api: >- Allows access to Pardot API services on behalf of the user. Manage the full extent of accessible services in Pardot. full: >- Allows access to all data accessible by the logged-in user, and encompasses all other scopes. full doesn’t return a refresh token. You must explicitly request the refresh_token scope to get a refresh token. OpenIDConnectDiscovery: title: OpenIDConnectDiscovery required: - type - openIdConnectUrl type: object properties: type: type: string example: example_value openIdConnectUrl: type: string example: https://www.example.com examples: - type: openIdConnect openIdConnectUrl: https://login.salesforce.com/.well-known/openid-configuration BearerAuth: title: BearerAuth required: - type - description - scheme type: object properties: type: type: string example: example_value description: type: string example: A sample description. scheme: type: string example: example_value examples: - type: http description: >- Use Session Id or Access Token as valid bearer token to authenticate with Salesforce. Access Token could be retrieved via any supported OAuth2 flows listed or not listed here (e.g. JWT Bearer Token Flow).To obtain a session ID, you can use the SOAP API login() call or through the Salesforce CLI. scheme: bearer OAuth2: title: OAuth2 required: - type - description - flows type: object properties: type: type: string example: example_value description: type: string example: A sample description. flows: $ref: '#/components/schemas/Flows' examples: - type: oauth2 description: >- For more information on all supported OAuth Flows, please see 'https://help.salesforce.com/articleView?id=remoteaccess_oauth_flows.htm&type=5'. For more information on all available scope options, please see 'https://help.salesforce.com/articleView?id=remoteaccess_oauth_tokens_scopes.htm&type=5#oauth_scopes'. flows: implicit: authorizationUrl: https://login.salesforce.com/services/oauth2/authorize scopes: visualforce: >- Allows access to customer-created Visualforce pages only. This scope doesn’t allow access to standard Salesforce UIs. address: >- Allows access to the identity URL service. You can request profile, email, address, or phone individually to get the same result as using id; they are all synonymous. custom_permissions: >- Allows access to the custom permissions in an org associated with the connected app. This scope also shows whether the current user has each permission enabled. openid: >- Allows access to the current, logged in user’s unique identifier for OpenID Connect apps. In the OAuth 2.0 user-agent flow and the OAuth 2.0 web server flow, use the openid scope. In addition to the access token, this scope enables you to receive a signed ID token that conforms to the OpenID Connect specifications. profile: >- Allows access to the identity URL service. You can request profile, email, address, or phone individually to get the same result as using id; they are all synonymous. refresh_token: >- Allows a refresh token to be returned when the requesting client is eligible to receive one. With a refresh token, the app can interact with the user’s data while the user is offline. This token is synonymous with requesting offline_access. wave_api: Access and manage your Wave data. web: >- Allows use of the access_token on the web. This scope also includes visualforce, allowing access to customer-created Visualforce pages. phone: >- Allows access to the identity URL service. You can request profile, email, address, or phone individually to get the same result as using id; they are all synonymous. offline_access: >- Allows a refresh token to be returned when the requesting client is eligible to receive one. With a refresh token, the app can interact with the user’s data while the user is offline. This token is synonymous with requesting offline_access. chatter_api: >- Allows access to Connect REST API resources on behalf of the user. id: >- Allows access to the identity URL service. You can request profile, email, address, or phone individually to get the same result as using id; they are all synonymous. api: >- Allows access to the current, logged-in user’s account using APIs, such as REST API and Bulk API. This scope also includes chatter_api, which allows access to Connect REST API resources. eclair_api: Access and manage your Eclair data. email: >- Allows access to the identity URL service. You can request profile, email, address, or phone individually to get the same result as using id; they are all synonymous. pardot_api: >- Allows access to Pardot API services on behalf of the user. Manage the full extent of accessible services in Pardot. full: >- Allows access to all data accessible by the logged-in user, and encompasses all other scopes. full doesn’t return a refresh token. You must explicitly request the refresh_token scope to get a refresh token. password: tokenUrl: https://login.salesforce.com/services/oauth2/token scopes: api: >- Allows access to the current, logged-in user’s account using APIs, such as REST API and Bulk API. This scope also includes chatter_api, which allows access to Connect REST API resources. authorizationCode: authorizationUrl: https://login.salesforce.com/services/oauth2/authorize tokenUrl: https://login.salesforce.com/services/oauth2/token scopes: visualforce: >- Allows access to customer-created Visualforce pages only. This scope doesn’t allow access to standard Salesforce UIs. address: >- Allows access to the identity URL service. You can request profile, email, address, or phone individually to get the same result as using id; they are all synonymous. custom_permissions: >- Allows access to the custom permissions in an org associated with the connected app. This scope also shows whether the current user has each permission enabled. openid: >- Allows access to the current, logged in user’s unique identifier for OpenID Connect apps. In the OAuth 2.0 user-agent flow and the OAuth 2.0 web server flow, use the openid scope. In addition to the access token, this scope enables you to receive a signed ID token that conforms to the OpenID Connect specifications. profile: >- Allows access to the identity URL service. You can request profile, email, address, or phone individually to get the same result as using id; they are all synonymous. refresh_token: >- Allows a refresh token to be returned when the requesting client is eligible to receive one. With a refresh token, the app can interact with the user’s data while the user is offline. This token is synonymous with requesting offline_access. wave_api: Access and manage your Wave data. web: >- Allows use of the access_token on the web. This scope also includes visualforce, allowing access to customer-created Visualforce pages. phone: >- Allows access to the identity URL service. You can request profile, email, address, or phone individually to get the same result as using id; they are all synonymous. offline_access: >- Allows a refresh token to be returned when the requesting client is eligible to receive one. With a refresh token, the app can interact with the user’s data while the user is offline. This token is synonymous with requesting offline_access. chatter_api: >- Allows access to Connect REST API resources on behalf of the user. id: >- Allows access to the identity URL service. You can request profile, email, address, or phone individually to get the same result as using id; they are all synonymous. api: >- Allows access to the current, logged-in user’s account using APIs, such as REST API and Bulk API. This scope also includes chatter_api, which allows access to Connect REST API resources. eclair_api: Access and manage your Eclair data. email: >- Allows access to the identity URL service. You can request profile, email, address, or phone individually to get the same result as using id; they are all synonymous. pardot_api: >- Allows access to Pardot API services on behalf of the user. Manage the full extent of accessible services in Pardot. full: >- Allows access to all data accessible by the logged-in user, and encompasses all other scopes. full doesn’t return a refresh token. You must explicitly request the refresh_token scope to get a refresh token. Flows: title: Flows required: - implicit - password - authorizationCode type: object properties: implicit: $ref: '#/components/schemas/Implicit' password: $ref: '#/components/schemas/Password' authorizationCode: $ref: '#/components/schemas/AuthorizationCode' examples: - implicit: authorizationUrl: https://login.salesforce.com/services/oauth2/authorize scopes: visualforce: >- Allows access to customer-created Visualforce pages only. This scope doesn’t allow access to standard Salesforce UIs. address: >- Allows access to the identity URL service. You can request profile, email, address, or phone individually to get the same result as using id; they are all synonymous. custom_permissions: >- Allows access to the custom permissions in an org associated with the connected app. This scope also shows whether the current user has each permission enabled. openid: >- Allows access to the current, logged in user’s unique identifier for OpenID Connect apps. In the OAuth 2.0 user-agent flow and the OAuth 2.0 web server flow, use the openid scope. In addition to the access token, this scope enables you to receive a signed ID token that conforms to the OpenID Connect specifications. profile: >- Allows access to the identity URL service. You can request profile, email, address, or phone individually to get the same result as using id; they are all synonymous. refresh_token: >- Allows a refresh token to be returned when the requesting client is eligible to receive one. With a refresh token, the app can interact with the user’s data while the user is offline. This token is synonymous with requesting offline_access. wave_api: Access and manage your Wave data. web: >- Allows use of the access_token on the web. This scope also includes visualforce, allowing access to customer-created Visualforce pages. phone: >- Allows access to the identity URL service. You can request profile, email, address, or phone individually to get the same result as using id; they are all synonymous. offline_access: >- Allows a refresh token to be returned when the requesting client is eligible to receive one. With a refresh token, the app can interact with the user’s data while the user is offline. This token is synonymous with requesting offline_access. chatter_api: >- Allows access to Connect REST API resources on behalf of the user. id: >- Allows access to the identity URL service. You can request profile, email, address, or phone individually to get the same result as using id; they are all synonymous. api: >- Allows access to the current, logged-in user’s account using APIs, such as REST API and Bulk API. This scope also includes chatter_api, which allows access to Connect REST API resources. eclair_api: Access and manage your Eclair data. email: >- Allows access to the identity URL service. You can request profile, email, address, or phone individually to get the same result as using id; they are all synonymous. pardot_api: >- Allows access to Pardot API services on behalf of the user. Manage the full extent of accessible services in Pardot. full: >- Allows access to all data accessible by the logged-in user, and encompasses all other scopes. full doesn’t return a refresh token. You must explicitly request the refresh_token scope to get a refresh token. password: tokenUrl: https://login.salesforce.com/services/oauth2/token scopes: api: >- Allows access to the current, logged-in user’s account using APIs, such as REST API and Bulk API. This scope also includes chatter_api, which allows access to Connect REST API resources. authorizationCode: authorizationUrl: https://login.salesforce.com/services/oauth2/authorize tokenUrl: https://login.salesforce.com/services/oauth2/token scopes: visualforce: >- Allows access to customer-created Visualforce pages only. This scope doesn’t allow access to standard Salesforce UIs. address: >- Allows access to the identity URL service. You can request profile, email, address, or phone individually to get the same result as using id; they are all synonymous. custom_permissions: >- Allows access to the custom permissions in an org associated with the connected app. This scope also shows whether the current user has each permission enabled. openid: >- Allows access to the current, logged in user’s unique identifier for OpenID Connect apps. In the OAuth 2.0 user-agent flow and the OAuth 2.0 web server flow, use the openid scope. In addition to the access token, this scope enables you to receive a signed ID token that conforms to the OpenID Connect specifications. profile: >- Allows access to the identity URL service. You can request profile, email, address, or phone individually to get the same result as using id; they are all synonymous. refresh_token: >- Allows a refresh token to be returned when the requesting client is eligible to receive one. With a refresh token, the app can interact with the user’s data while the user is offline. This token is synonymous with requesting offline_access. wave_api: Access and manage your Wave data. web: >- Allows use of the access_token on the web. This scope also includes visualforce, allowing access to customer-created Visualforce pages. phone: >- Allows access to the identity URL service. You can request profile, email, address, or phone individually to get the same result as using id; they are all synonymous. offline_access: >- Allows a refresh token to be returned when the requesting client is eligible to receive one. With a refresh token, the app can interact with the user’s data while the user is offline. This token is synonymous with requesting offline_access. chatter_api: >- Allows access to Connect REST API resources on behalf of the user. id: >- Allows access to the identity URL service. You can request profile, email, address, or phone individually to get the same result as using id; they are all synonymous. api: >- Allows access to the current, logged-in user’s account using APIs, such as REST API and Bulk API. This scope also includes chatter_api, which allows access to Connect REST API resources. eclair_api: Access and manage your Eclair data. email: >- Allows access to the identity URL service. You can request profile, email, address, or phone individually to get the same result as using id; they are all synonymous. pardot_api: >- Allows access to Pardot API services on behalf of the user. Manage the full extent of accessible services in Pardot. full: >- Allows access to all data accessible by the logged-in user, and encompasses all other scopes. full doesn’t return a refresh token. You must explicitly request the refresh_token scope to get a refresh token. Implicit: title: Implicit required: - authorizationUrl - scopes type: object properties: authorizationUrl: type: string example: https://www.example.com scopes: $ref: '#/components/schemas/Scopes' examples: - authorizationUrl: https://login.salesforce.com/services/oauth2/authorize scopes: visualforce: >- Allows access to customer-created Visualforce pages only. This scope doesn’t allow access to standard Salesforce UIs. address: >- Allows access to the identity URL service. You can request profile, email, address, or phone individually to get the same result as using id; they are all synonymous. custom_permissions: >- Allows access to the custom permissions in an org associated with the connected app. This scope also shows whether the current user has each permission enabled. openid: >- Allows access to the current, logged in user’s unique identifier for OpenID Connect apps. In the OAuth 2.0 user-agent flow and the OAuth 2.0 web server flow, use the openid scope. In addition to the access token, this scope enables you to receive a signed ID token that conforms to the OpenID Connect specifications. profile: >- Allows access to the identity URL service. You can request profile, email, address, or phone individually to get the same result as using id; they are all synonymous. refresh_token: >- Allows a refresh token to be returned when the requesting client is eligible to receive one. With a refresh token, the app can interact with the user’s data while the user is offline. This token is synonymous with requesting offline_access. wave_api: Access and manage your Wave data. web: >- Allows use of the access_token on the web. This scope also includes visualforce, allowing access to customer-created Visualforce pages. phone: >- Allows access to the identity URL service. You can request profile, email, address, or phone individually to get the same result as using id; they are all synonymous. offline_access: >- Allows a refresh token to be returned when the requesting client is eligible to receive one. With a refresh token, the app can interact with the user’s data while the user is offline. This token is synonymous with requesting offline_access. chatter_api: Allows access to Connect REST API resources on behalf of the user. id: >- Allows access to the identity URL service. You can request profile, email, address, or phone individually to get the same result as using id; they are all synonymous. api: >- Allows access to the current, logged-in user’s account using APIs, such as REST API and Bulk API. This scope also includes chatter_api, which allows access to Connect REST API resources. eclair_api: Access and manage your Eclair data. email: >- Allows access to the identity URL service. You can request profile, email, address, or phone individually to get the same result as using id; they are all synonymous. pardot_api: >- Allows access to Pardot API services on behalf of the user. Manage the full extent of accessible services in Pardot. full: >- Allows access to all data accessible by the logged-in user, and encompasses all other scopes. full doesn’t return a refresh token. You must explicitly request the refresh_token scope to get a refresh token. Scopes: title: Scopes required: - visualforce - address - custom_permissions - openid - profile - refresh_token - wave_api - web - phone - offline_access - chatter_api - id - api - eclair_api - email - pardot_api - full type: object properties: visualforce: type: string example: example_value address: type: string example: example_value custom_permissions: type: string example: example_value openid: type: string example: '500123' profile: type: string example: example_value refresh_token: type: string example: CAUQAA wave_api: type: string example: example_value web: type: string example: example_value phone: type: string example: example_value offline_access: type: string example: example_value chatter_api: type: string example: example_value id: type: string example: abc123 api: type: string example: example_value eclair_api: type: string example: example_value email: type: string example: user@example.com pardot_api: type: string example: example_value full: type: string example: example_value examples: - visualforce: >- Allows access to customer-created Visualforce pages only. This scope doesn’t allow access to standard Salesforce UIs. address: >- Allows access to the identity URL service. You can request profile, email, address, or phone individually to get the same result as using id; they are all synonymous. custom_permissions: >- Allows access to the custom permissions in an org associated with the connected app. This scope also shows whether the current user has each permission enabled. openid: >- Allows access to the current, logged in user’s unique identifier for OpenID Connect apps. In the OAuth 2.0 user-agent flow and the OAuth 2.0 web server flow, use the openid scope. In addition to the access token, this scope enables you to receive a signed ID token that conforms to the OpenID Connect specifications. profile: >- Allows access to the identity URL service. You can request profile, email, address, or phone individually to get the same result as using id; they are all synonymous. refresh_token: >- Allows a refresh token to be returned when the requesting client is eligible to receive one. With a refresh token, the app can interact with the user’s data while the user is offline. This token is synonymous with requesting offline_access. wave_api: Access and manage your Wave data. web: >- Allows use of the access_token on the web. This scope also includes visualforce, allowing access to customer-created Visualforce pages. phone: >- Allows access to the identity URL service. You can request profile, email, address, or phone individually to get the same result as using id; they are all synonymous. offline_access: >- Allows a refresh token to be returned when the requesting client is eligible to receive one. With a refresh token, the app can interact with the user’s data while the user is offline. This token is synonymous with requesting offline_access. chatter_api: Allows access to Connect REST API resources on behalf of the user. id: >- Allows access to the identity URL service. You can request profile, email, address, or phone individually to get the same result as using id; they are all synonymous. api: >- Allows access to the current, logged-in user’s account using APIs, such as REST API and Bulk API. This scope also includes chatter_api, which allows access to Connect REST API resources. eclair_api: Access and manage your Eclair data. email: >- Allows access to the identity URL service. You can request profile, email, address, or phone individually to get the same result as using id; they are all synonymous. pardot_api: >- Allows access to Pardot API services on behalf of the user. Manage the full extent of accessible services in Pardot. full: >- Allows access to all data accessible by the logged-in user, and encompasses all other scopes. full doesn’t return a refresh token. You must explicitly request the refresh_token scope to get a refresh token. Password: title: Password required: - tokenUrl - scopes type: object properties: tokenUrl: type: string example: https://www.example.com scopes: $ref: '#/components/schemas/Scopes1' examples: - tokenUrl: https://login.salesforce.com/services/oauth2/token scopes: api: >- Allows access to the current, logged-in user’s account using APIs, such as REST API and Bulk API. This scope also includes chatter_api, which allows access to Connect REST API resources. Scopes1: title: Scopes1 required: - api type: object properties: api: type: string example: example_value examples: - api: >- Allows access to the current, logged-in user’s account using APIs, such as REST API and Bulk API. This scope also includes chatter_api, which allows access to Connect REST API resources. AuthorizationCode: title: AuthorizationCode required: - authorizationUrl - tokenUrl - scopes type: object properties: authorizationUrl: type: string example: https://www.example.com tokenUrl: type: string example: https://www.example.com scopes: $ref: '#/components/schemas/Scopes' examples: - authorizationUrl: https://login.salesforce.com/services/oauth2/authorize tokenUrl: https://login.salesforce.com/services/oauth2/token scopes: visualforce: >- Allows access to customer-created Visualforce pages only. This scope doesn’t allow access to standard Salesforce UIs. address: >- Allows access to the identity URL service. You can request profile, email, address, or phone individually to get the same result as using id; they are all synonymous. custom_permissions: >- Allows access to the custom permissions in an org associated with the connected app. This scope also shows whether the current user has each permission enabled. openid: >- Allows access to the current, logged in user’s unique identifier for OpenID Connect apps. In the OAuth 2.0 user-agent flow and the OAuth 2.0 web server flow, use the openid scope. In addition to the access token, this scope enables you to receive a signed ID token that conforms to the OpenID Connect specifications. profile: >- Allows access to the identity URL service. You can request profile, email, address, or phone individually to get the same result as using id; they are all synonymous. refresh_token: >- Allows a refresh token to be returned when the requesting client is eligible to receive one. With a refresh token, the app can interact with the user’s data while the user is offline. This token is synonymous with requesting offline_access. wave_api: Access and manage your Wave data. web: >- Allows use of the access_token on the web. This scope also includes visualforce, allowing access to customer-created Visualforce pages. phone: >- Allows access to the identity URL service. You can request profile, email, address, or phone individually to get the same result as using id; they are all synonymous. offline_access: >- Allows a refresh token to be returned when the requesting client is eligible to receive one. With a refresh token, the app can interact with the user’s data while the user is offline. This token is synonymous with requesting offline_access. chatter_api: Allows access to Connect REST API resources on behalf of the user. id: >- Allows access to the identity URL service. You can request profile, email, address, or phone individually to get the same result as using id; they are all synonymous. api: >- Allows access to the current, logged-in user’s account using APIs, such as REST API and Bulk API. This scope also includes chatter_api, which allows access to Connect REST API resources. eclair_api: Access and manage your Eclair data. email: >- Allows access to the identity URL service. You can request profile, email, address, or phone individually to get the same result as using id; they are all synonymous. pardot_api: >- Allows access to Pardot API services on behalf of the user. Manage the full extent of accessible services in Pardot. full: >- Allows access to all data accessible by the logged-in user, and encompasses all other scopes. full doesn’t return a refresh token. You must explicitly request the refresh_token scope to get a refresh token. GetAppointmentSlotsRequest: title: GetAppointmentSlotsRequest required: - startTime - endTime - workTypeGroupId - workType - accountId - territoryIds - requiredResourceIds - schedulingPolicyId - allowConcurrentScheduling type: object properties: startTime: type: string example: '2026-01-15T10:30:00Z' endTime: type: string example: '2026-01-15T10:30:00Z' workTypeGroupId: type: string example: '500123' workType: type: string example: example_value accountId: type: string example: '500123' territoryIds: type: string example: example_value requiredResourceIds: type: string example: example_value schedulingPolicyId: type: string example: '500123' allowConcurrentScheduling: type: string example: example_value examples: - startTime: string endTime: string workTypeGroupId: string workType: Work Type accountId: string territoryIds: string[] requiredResourceIds: string[] schedulingPolicyId: string allowConcurrentScheduling: boolean GetAppointmentCandidatesRequest: title: GetAppointmentCandidatesRequest required: - startTime - endTime - workTypeGroupId - workType - accountId - territoryIds - requiredResourceIds - schedulingPolicyId - allowConcurrentScheduling type: object properties: startTime: type: string example: '2026-01-15T10:30:00Z' endTime: type: string example: '2026-01-15T10:30:00Z' workTypeGroupId: type: string example: '500123' workType: type: string example: example_value accountId: type: string example: '500123' territoryIds: type: string example: example_value requiredResourceIds: type: string example: example_value schedulingPolicyId: type: string example: '500123' allowConcurrentScheduling: type: string example: example_value examples: - startTime: string endTime: string workTypeGroupId: string workType: Work Type accountId: string territoryIds: string[] requiredResourceIds: string[] schedulingPolicyId: string allowConcurrentScheduling: boolean ProcessApprovalsSubmitRequest: title: ProcessApprovalsSubmitRequest required: - actionType - contextActorId - contextId - comments - nextApproverIds - processDefinitionNameOrId - skipEntryCriteria type: object properties: actionType: type: string example: example_value contextActorId: type: string example: '500123' contextId: type: string example: '500123' comments: type: string example: example_value nextApproverIds: type: string example: example_value processDefinitionNameOrId: type: string example: '500123' skipEntryCriteria: type: string example: example_value examples: - actionType: string contextActorId: ID contextId: ID comments: string nextApproverIds: ID[] processDefinitionNameOrId: string skipEntryCriteria: boolean Version5: title: Version5 required: - label - url - version type: object properties: label: type: string example: Example Title url: type: string example: https://www.example.com version: type: string example: example_value examples: - label: Spring '11 url: /services/data/v21.0 version: '21.0' ResourcesbyVersion: title: ResourcesbyVersion required: - tooling - metadata - eclair - folders - prechatForms - contact-tracing - jsonxform - chatter - payments - tabs - appMenu - quickActions - queryAll - commerce - wave - iot - analytics - search - smartdatadiscovery - identity - composite - parameterizedSearch - fingerprint - theme - nouns - domino - event - serviceTemplates - recent - connect - licensing - limits - process - dedupe - async-queries - query - jobs - match - localizedvalue - mobile - emailConnect - consent - tokenizer - compactLayouts - knowledgeManagement - sobjects - actions - support type: object properties: tooling: type: string example: example_value metadata: type: string example: example_value eclair: type: string example: example_value folders: type: string example: example_value prechatForms: type: string example: example_value contact-tracing: type: string example: example_value jsonxform: type: string example: example_value chatter: type: string example: example_value payments: type: string example: example_value tabs: type: string example: example_value appMenu: type: string example: example_value quickActions: type: string example: example_value queryAll: type: string example: example_value commerce: type: string example: example_value wave: type: string example: example_value iot: type: string example: example_value analytics: type: string example: example_value search: type: string example: example_value smartdatadiscovery: type: string example: example_value identity: type: string example: example_value composite: type: string example: example_value parameterizedSearch: type: string example: example_value fingerprint: type: string example: example_value theme: type: string example: example_value nouns: type: string example: example_value domino: type: string example: example_value event: type: string example: example_value serviceTemplates: type: string example: example_value recent: type: string example: example_value connect: type: string example: example_value licensing: type: string example: example_value limits: type: string example: example_value process: type: string example: example_value dedupe: type: string example: example_value async-queries: type: string example: example_value query: type: string example: example_value jobs: type: string example: example_value match: type: string example: example_value localizedvalue: type: string example: example_value mobile: type: string example: example_value emailConnect: type: string example: user@example.com consent: type: string example: example_value tokenizer: type: string example: CAUQAA compactLayouts: type: string example: example_value knowledgeManagement: type: string example: example_value sobjects: type: string example: example_value actions: type: string example: example_value support: type: string example: example_value examples: - tooling: /services/data/v58.0/tooling metadata: /services/data/v58.0/metadata eclair: /services/data/v58.0/eclair folders: /services/data/v58.0/folders prechatForms: /services/data/v58.0/prechatForms contact-tracing: /services/data/v58.0/contact-tracing jsonxform: /services/data/v58.0/jsonxform chatter: /services/data/v58.0/chatter payments: /services/data/v58.0/payments tabs: /services/data/v58.0/tabs appMenu: /services/data/v58.0/appMenu quickActions: /services/data/v58.0/quickActions queryAll: /services/data/v58.0/queryAll commerce: /services/data/v58.0/commerce wave: /services/data/v58.0/wave iot: /services/data/v58.0/iot analytics: /services/data/v58.0/analytics search: /services/data/v58.0/search smartdatadiscovery: /services/data/v58.0/smartdatadiscovery identity: >- https://login.salesforce.com/id/00DB0000000DFgjMAG/005B0000003TOI6IAO composite: /services/data/v58.0/composite parameterizedSearch: /services/data/v58.0/parameterizedSearch fingerprint: /services/data/v58.0/fingerprint theme: /services/data/v58.0/theme nouns: /services/data/v58.0/nouns domino: /services/data/v58.0/domino event: /services/data/v58.0/event serviceTemplates: /services/data/v58.0/serviceTemplates recent: /services/data/v58.0/recent connect: /services/data/v58.0/connect licensing: /services/data/v58.0/licensing limits: /services/data/v58.0/limits process: /services/data/v58.0/process dedupe: /services/data/v58.0/dedupe async-queries: /services/data/v58.0/async-queries query: /services/data/v58.0/query jobs: /services/data/v58.0/jobs match: /services/data/v58.0/match localizedvalue: /services/data/v58.0/localizedvalue mobile: /services/data/v58.0/mobile emailConnect: /services/data/v58.0/emailConnect consent: /services/data/v58.0/consent tokenizer: /services/data/v58.0/tokenizer compactLayouts: /services/data/v58.0/compactLayouts knowledgeManagement: /services/data/v58.0/knowledgeManagement sobjects: /services/data/v58.0/sobjects actions: /services/data/v58.0/actions support: /services/data/v58.0/support Limits: title: Limits required: - ActiveScratchOrgs - AnalyticsExternalDataSizeMB - ConcurrentAsyncGetReportInstances - ConcurrentEinsteinDataInsightsStoryCreation - ConcurrentEinsteinDiscoveryStoryCreation - ConcurrentSyncReportRuns - DailyAnalyticsDataflowJobExecutions - DailyAnalyticsUploadedFilesSizeMB - DailyApiRequests - DailyAsyncApexExecutions - DailyAsyncApexTests - DailyBulkApiBatches - DailyBulkV2QueryFileStorageMB - DailyBulkV2QueryJobs - DailyDeliveredPlatformEvents - DailyDurableGenericStreamingApiEvents - DailyDurableStreamingApiEvents - DailyEinsteinDataInsightsStoryCreation - DailyEinsteinDiscoveryOptimizationJobRuns - DailyEinsteinDiscoveryPredictAPICalls - DailyEinsteinDiscoveryPredictionsByCDC - DailyEinsteinDiscoveryStoryCreation - DailyFunctionsApiCallLimit - DailyGenericStreamingApiEvents - DailyScratchOrgs - DailyStandardVolumePlatformEvents - DailyStreamingApiEvents - DailyWorkflowEmails - DataStorageMB - DurableStreamingApiConcurrentClients - FileStorageMB - HourlyAsyncReportRuns - HourlyDashboardRefreshes - HourlyDashboardResults - HourlyDashboardStatuses - HourlyLongTermIdMapping - HourlyManagedContentPublicRequests - HourlyODataCallout - HourlyPublishedPlatformEvents - HourlyPublishedStandardVolumePlatformEvents - HourlyShortTermIdMapping - HourlySyncReportRuns - HourlyTimeBasedWorkflow - MassEmail - MonthlyEinsteinDiscoveryStoryCreation - Package2VersionCreates - Package2VersionCreatesWithoutValidation - PermissionSets - PrivateConnectOutboundCalloutHourlyLimitMB - PublishCallbackUsageInApex - SingleEmail - StreamingApiConcurrentClients type: object properties: ActiveScratchOrgs: $ref: '#/components/schemas/ActiveScratchOrgs' AnalyticsExternalDataSizeMB: $ref: '#/components/schemas/AnalyticsExternalDataSizeMB' ConcurrentAsyncGetReportInstances: $ref: '#/components/schemas/ConcurrentAsyncGetReportInstances' ConcurrentEinsteinDataInsightsStoryCreation: $ref: '#/components/schemas/ConcurrentEinsteinDataInsightsStoryCreation' ConcurrentEinsteinDiscoveryStoryCreation: $ref: '#/components/schemas/ConcurrentEinsteinDiscoveryStoryCreation' ConcurrentSyncReportRuns: $ref: '#/components/schemas/ConcurrentSyncReportRuns' DailyAnalyticsDataflowJobExecutions: $ref: '#/components/schemas/DailyAnalyticsDataflowJobExecutions' DailyAnalyticsUploadedFilesSizeMB: $ref: '#/components/schemas/DailyAnalyticsUploadedFilesSizeMB' DailyApiRequests: $ref: '#/components/schemas/DailyApiRequests' DailyAsyncApexExecutions: $ref: '#/components/schemas/DailyAsyncApexExecutions' DailyAsyncApexTests: $ref: '#/components/schemas/DailyAsyncApexTests' DailyBulkApiBatches: $ref: '#/components/schemas/DailyBulkApiBatches' DailyBulkV2QueryFileStorageMB: $ref: '#/components/schemas/DailyBulkV2QueryFileStorageMB' DailyBulkV2QueryJobs: $ref: '#/components/schemas/DailyBulkV2QueryJobs' DailyDeliveredPlatformEvents: $ref: '#/components/schemas/DailyDeliveredPlatformEvents' DailyDurableGenericStreamingApiEvents: $ref: '#/components/schemas/DailyDurableGenericStreamingApiEvents' DailyDurableStreamingApiEvents: $ref: '#/components/schemas/DailyDurableStreamingApiEvents' DailyEinsteinDataInsightsStoryCreation: $ref: '#/components/schemas/DailyEinsteinDataInsightsStoryCreation' DailyEinsteinDiscoveryOptimizationJobRuns: $ref: '#/components/schemas/DailyEinsteinDiscoveryOptimizationJobRuns' DailyEinsteinDiscoveryPredictAPICalls: $ref: '#/components/schemas/DailyEinsteinDiscoveryPredictAPICalls' DailyEinsteinDiscoveryPredictionsByCDC: $ref: '#/components/schemas/DailyEinsteinDiscoveryPredictionsByCDC' DailyEinsteinDiscoveryStoryCreation: $ref: '#/components/schemas/DailyEinsteinDiscoveryStoryCreation' DailyFunctionsApiCallLimit: $ref: '#/components/schemas/DailyFunctionsApiCallLimit' DailyGenericStreamingApiEvents: $ref: '#/components/schemas/DailyGenericStreamingApiEvents' DailyScratchOrgs: $ref: '#/components/schemas/DailyScratchOrgs' DailyStandardVolumePlatformEvents: $ref: '#/components/schemas/DailyStandardVolumePlatformEvents' DailyStreamingApiEvents: $ref: '#/components/schemas/DailyStreamingApiEvents' DailyWorkflowEmails: $ref: '#/components/schemas/DailyWorkflowEmails' DataStorageMB: $ref: '#/components/schemas/DataStorageMB' DurableStreamingApiConcurrentClients: $ref: '#/components/schemas/DurableStreamingApiConcurrentClients' FileStorageMB: $ref: '#/components/schemas/FileStorageMB' HourlyAsyncReportRuns: $ref: '#/components/schemas/HourlyAsyncReportRuns' HourlyDashboardRefreshes: $ref: '#/components/schemas/HourlyDashboardRefreshes' HourlyDashboardResults: $ref: '#/components/schemas/HourlyDashboardResults' HourlyDashboardStatuses: $ref: '#/components/schemas/HourlyDashboardStatuses' HourlyLongTermIdMapping: $ref: '#/components/schemas/HourlyLongTermIdMapping' HourlyManagedContentPublicRequests: $ref: '#/components/schemas/HourlyManagedContentPublicRequests' HourlyODataCallout: $ref: '#/components/schemas/HourlyODataCallout' HourlyPublishedPlatformEvents: $ref: '#/components/schemas/HourlyPublishedPlatformEvents' HourlyPublishedStandardVolumePlatformEvents: $ref: '#/components/schemas/HourlyPublishedStandardVolumePlatformEvents' HourlyShortTermIdMapping: $ref: '#/components/schemas/HourlyShortTermIdMapping' HourlySyncReportRuns: $ref: '#/components/schemas/HourlySyncReportRuns' HourlyTimeBasedWorkflow: $ref: '#/components/schemas/HourlyTimeBasedWorkflow' MassEmail: $ref: '#/components/schemas/MassEmail' MonthlyEinsteinDiscoveryStoryCreation: $ref: '#/components/schemas/MonthlyEinsteinDiscoveryStoryCreation' Package2VersionCreates: $ref: '#/components/schemas/Package2VersionCreates' Package2VersionCreatesWithoutValidation: $ref: '#/components/schemas/Package2VersionCreatesWithoutValidation' PermissionSets: $ref: '#/components/schemas/PermissionSets' PrivateConnectOutboundCalloutHourlyLimitMB: $ref: '#/components/schemas/PrivateConnectOutboundCalloutHourlyLimitMB' PublishCallbackUsageInApex: $ref: '#/components/schemas/PublishCallbackUsageInApex' SingleEmail: $ref: '#/components/schemas/SingleEmail' StreamingApiConcurrentClients: $ref: '#/components/schemas/StreamingApiConcurrentClients' examples: - ActiveScratchOrgs: Max: 3 Remaining: 3 AnalyticsExternalDataSizeMB: Max: 40960 Remaining: 40960 ConcurrentAsyncGetReportInstances: Max: 200 Remaining: 200 ConcurrentEinsteinDataInsightsStoryCreation: Max: 5 Remaining: 5 ConcurrentEinsteinDiscoveryStoryCreation: Max: 2 Remaining: 2 ConcurrentSyncReportRuns: Max: 20 Remaining: 20 DailyAnalyticsDataflowJobExecutions: Max: 60 Remaining: 60 DailyAnalyticsUploadedFilesSizeMB: Max: 51200 Remaining: 51200 DailyApiRequests: Max: 15000 Remaining: 14999 DailyAsyncApexExecutions: Max: 250000 Remaining: 250000 DailyAsyncApexTests: Max: 540 Remaining: 540 DailyBulkApiBatches: Max: 15000 Remaining: 15000 DailyBulkV2QueryFileStorageMB: Max: 976562 Remaining: 976562 DailyBulkV2QueryJobs: Max: 10000 Remaining: 10000 DailyDeliveredPlatformEvents: Max: 10000 Remaining: 10000 DailyDurableGenericStreamingApiEvents: Max: 10000 Remaining: 10000 DailyDurableStreamingApiEvents: Max: 10000 Remaining: 10000 DailyEinsteinDataInsightsStoryCreation: Max: 1000 Remaining: 1000 DailyEinsteinDiscoveryOptimizationJobRuns: Max: 25 Remaining: 25 DailyEinsteinDiscoveryPredictAPICalls: Max: 50000 Remaining: 50000 DailyEinsteinDiscoveryPredictionsByCDC: Max: 500000 Remaining: 500000 DailyEinsteinDiscoveryStoryCreation: Max: 100 Remaining: 100 DailyFunctionsApiCallLimit: Max: 50000 Remaining: 50000 DailyGenericStreamingApiEvents: Max: 10000 Remaining: 10000 DailyScratchOrgs: Max: 6 Remaining: 6 DailyStandardVolumePlatformEvents: Max: 10000 Remaining: 10000 DailyStreamingApiEvents: Max: 10000 Remaining: 10000 DailyWorkflowEmails: Max: 405 Remaining: 405 DataStorageMB: Max: 5 Remaining: 5 DurableStreamingApiConcurrentClients: Max: 20 Remaining: 20 FileStorageMB: Max: 20 Remaining: 20 HourlyAsyncReportRuns: Max: 1200 Remaining: 1200 HourlyDashboardRefreshes: Max: 200 Remaining: 200 HourlyDashboardResults: Max: 5000 Remaining: 5000 HourlyDashboardStatuses: Max: 999999999 Remaining: 999999999 HourlyLongTermIdMapping: Max: 100000 Remaining: 100000 HourlyManagedContentPublicRequests: Max: 50000 Remaining: 50000 HourlyODataCallout: Max: 1000 Remaining: 1000 HourlyPublishedPlatformEvents: Max: 50000 Remaining: 50000 HourlyPublishedStandardVolumePlatformEvents: Max: 1000 Remaining: 1000 HourlyShortTermIdMapping: Max: 100000 Remaining: 100000 HourlySyncReportRuns: Max: 500 Remaining: 500 HourlyTimeBasedWorkflow: Max: 50 Remaining: 50 MassEmail: Max: 10 Remaining: 10 MonthlyEinsteinDiscoveryStoryCreation: Max: 500 Remaining: 500 Package2VersionCreates: Max: 6 Remaining: 6 Package2VersionCreatesWithoutValidation: Max: 500 Remaining: 500 PermissionSets: Max: 1500 Remaining: 1498 CreateCustom: Max: 1000 Remaining: 998 PrivateConnectOutboundCalloutHourlyLimitMB: Max: 0 Remaining: 0 PublishCallbackUsageInApex: Max: 5242880 Remaining: 5242880 SingleEmail: Max: 15 Remaining: 15 StreamingApiConcurrentClients: Max: 20 Remaining: 20 ActiveScratchOrgs: title: ActiveScratchOrgs required: - Max - Remaining type: object properties: Max: type: integer contentEncoding: int32 example: 10 Remaining: type: integer contentEncoding: int32 example: 10 examples: - Max: 3 Remaining: 3 AnalyticsExternalDataSizeMB: title: AnalyticsExternalDataSizeMB required: - Max - Remaining type: object properties: Max: type: integer contentEncoding: int32 example: 10 Remaining: type: integer contentEncoding: int32 example: 10 examples: - Max: 40960 Remaining: 40960 ConcurrentAsyncGetReportInstances: title: ConcurrentAsyncGetReportInstances required: - Max - Remaining type: object properties: Max: type: integer contentEncoding: int32 example: 10 Remaining: type: integer contentEncoding: int32 example: 10 examples: - Max: 200 Remaining: 200 ConcurrentEinsteinDataInsightsStoryCreation: title: ConcurrentEinsteinDataInsightsStoryCreation required: - Max - Remaining type: object properties: Max: type: integer contentEncoding: int32 example: 10 Remaining: type: integer contentEncoding: int32 example: 10 examples: - Max: 5 Remaining: 5 ConcurrentEinsteinDiscoveryStoryCreation: title: ConcurrentEinsteinDiscoveryStoryCreation required: - Max - Remaining type: object properties: Max: type: integer contentEncoding: int32 example: 10 Remaining: type: integer contentEncoding: int32 example: 10 examples: - Max: 2 Remaining: 2 ConcurrentSyncReportRuns: title: ConcurrentSyncReportRuns required: - Max - Remaining type: object properties: Max: type: integer contentEncoding: int32 example: 10 Remaining: type: integer contentEncoding: int32 example: 10 examples: - Max: 20 Remaining: 20 DailyAnalyticsDataflowJobExecutions: title: DailyAnalyticsDataflowJobExecutions required: - Max - Remaining type: object properties: Max: type: integer contentEncoding: int32 example: 10 Remaining: type: integer contentEncoding: int32 example: 10 examples: - Max: 60 Remaining: 60 DailyAnalyticsUploadedFilesSizeMB: title: DailyAnalyticsUploadedFilesSizeMB required: - Max - Remaining type: object properties: Max: type: integer contentEncoding: int32 example: 10 Remaining: type: integer contentEncoding: int32 example: 10 examples: - Max: 51200 Remaining: 51200 DailyApiRequests: title: DailyApiRequests required: - Max - Remaining type: object properties: Max: type: integer contentEncoding: int32 example: 10 Remaining: type: integer contentEncoding: int32 example: 10 examples: - Max: 15000 Remaining: 14999 DailyAsyncApexExecutions: title: DailyAsyncApexExecutions required: - Max - Remaining type: object properties: Max: type: integer contentEncoding: int32 example: 10 Remaining: type: integer contentEncoding: int32 example: 10 examples: - Max: 250000 Remaining: 250000 DailyAsyncApexTests: title: DailyAsyncApexTests required: - Max - Remaining type: object properties: Max: type: integer contentEncoding: int32 example: 10 Remaining: type: integer contentEncoding: int32 example: 10 examples: - Max: 540 Remaining: 540 DailyBulkApiBatches: title: DailyBulkApiBatches required: - Max - Remaining type: object properties: Max: type: integer contentEncoding: int32 example: 10 Remaining: type: integer contentEncoding: int32 example: 10 examples: - Max: 15000 Remaining: 15000 DailyBulkV2QueryFileStorageMB: title: DailyBulkV2QueryFileStorageMB required: - Max - Remaining type: object properties: Max: type: integer contentEncoding: int32 example: 10 Remaining: type: integer contentEncoding: int32 example: 10 examples: - Max: 976562 Remaining: 976562 DailyBulkV2QueryJobs: title: DailyBulkV2QueryJobs required: - Max - Remaining type: object properties: Max: type: integer contentEncoding: int32 example: 10 Remaining: type: integer contentEncoding: int32 example: 10 examples: - Max: 10000 Remaining: 10000 DailyDeliveredPlatformEvents: title: DailyDeliveredPlatformEvents required: - Max - Remaining type: object properties: Max: type: integer contentEncoding: int32 example: 10 Remaining: type: integer contentEncoding: int32 example: 10 examples: - Max: 10000 Remaining: 10000 DailyDurableGenericStreamingApiEvents: title: DailyDurableGenericStreamingApiEvents required: - Max - Remaining type: object properties: Max: type: integer contentEncoding: int32 example: 10 Remaining: type: integer contentEncoding: int32 example: 10 examples: - Max: 10000 Remaining: 10000 DailyDurableStreamingApiEvents: title: DailyDurableStreamingApiEvents required: - Max - Remaining type: object properties: Max: type: integer contentEncoding: int32 example: 10 Remaining: type: integer contentEncoding: int32 example: 10 examples: - Max: 10000 Remaining: 10000 DailyEinsteinDataInsightsStoryCreation: title: DailyEinsteinDataInsightsStoryCreation required: - Max - Remaining type: object properties: Max: type: integer contentEncoding: int32 example: 10 Remaining: type: integer contentEncoding: int32 example: 10 examples: - Max: 1000 Remaining: 1000 DailyEinsteinDiscoveryOptimizationJobRuns: title: DailyEinsteinDiscoveryOptimizationJobRuns required: - Max - Remaining type: object properties: Max: type: integer contentEncoding: int32 example: 10 Remaining: type: integer contentEncoding: int32 example: 10 examples: - Max: 25 Remaining: 25 DailyEinsteinDiscoveryPredictAPICalls: title: DailyEinsteinDiscoveryPredictAPICalls required: - Max - Remaining type: object properties: Max: type: integer contentEncoding: int32 example: 10 Remaining: type: integer contentEncoding: int32 example: 10 examples: - Max: 50000 Remaining: 50000 DailyEinsteinDiscoveryPredictionsByCDC: title: DailyEinsteinDiscoveryPredictionsByCDC required: - Max - Remaining type: object properties: Max: type: integer contentEncoding: int32 example: 10 Remaining: type: integer contentEncoding: int32 example: 10 examples: - Max: 500000 Remaining: 500000 DailyEinsteinDiscoveryStoryCreation: title: DailyEinsteinDiscoveryStoryCreation required: - Max - Remaining type: object properties: Max: type: integer contentEncoding: int32 example: 10 Remaining: type: integer contentEncoding: int32 example: 10 examples: - Max: 100 Remaining: 100 DailyFunctionsApiCallLimit: title: DailyFunctionsApiCallLimit required: - Max - Remaining type: object properties: Max: type: integer contentEncoding: int32 example: 10 Remaining: type: integer contentEncoding: int32 example: 10 examples: - Max: 50000 Remaining: 50000 DailyGenericStreamingApiEvents: title: DailyGenericStreamingApiEvents required: - Max - Remaining type: object properties: Max: type: integer contentEncoding: int32 example: 10 Remaining: type: integer contentEncoding: int32 example: 10 examples: - Max: 10000 Remaining: 10000 DailyScratchOrgs: title: DailyScratchOrgs required: - Max - Remaining type: object properties: Max: type: integer contentEncoding: int32 example: 10 Remaining: type: integer contentEncoding: int32 example: 10 examples: - Max: 6 Remaining: 6 DailyStandardVolumePlatformEvents: title: DailyStandardVolumePlatformEvents required: - Max - Remaining type: object properties: Max: type: integer contentEncoding: int32 example: 10 Remaining: type: integer contentEncoding: int32 example: 10 examples: - Max: 10000 Remaining: 10000 DailyStreamingApiEvents: title: DailyStreamingApiEvents required: - Max - Remaining type: object properties: Max: type: integer contentEncoding: int32 example: 10 Remaining: type: integer contentEncoding: int32 example: 10 examples: - Max: 10000 Remaining: 10000 DailyWorkflowEmails: title: DailyWorkflowEmails required: - Max - Remaining type: object properties: Max: type: integer contentEncoding: int32 example: 10 Remaining: type: integer contentEncoding: int32 example: 10 examples: - Max: 405 Remaining: 405 DataStorageMB: title: DataStorageMB required: - Max - Remaining type: object properties: Max: type: integer contentEncoding: int32 example: 10 Remaining: type: integer contentEncoding: int32 example: 10 examples: - Max: 5 Remaining: 5 DurableStreamingApiConcurrentClients: title: DurableStreamingApiConcurrentClients required: - Max - Remaining type: object properties: Max: type: integer contentEncoding: int32 example: 10 Remaining: type: integer contentEncoding: int32 example: 10 examples: - Max: 20 Remaining: 20 FileStorageMB: title: FileStorageMB required: - Max - Remaining type: object properties: Max: type: integer contentEncoding: int32 example: 10 Remaining: type: integer contentEncoding: int32 example: 10 examples: - Max: 20 Remaining: 20 HourlyAsyncReportRuns: title: HourlyAsyncReportRuns required: - Max - Remaining type: object properties: Max: type: integer contentEncoding: int32 example: 10 Remaining: type: integer contentEncoding: int32 example: 10 examples: - Max: 1200 Remaining: 1200 HourlyDashboardRefreshes: title: HourlyDashboardRefreshes required: - Max - Remaining type: object properties: Max: type: integer contentEncoding: int32 example: 10 Remaining: type: integer contentEncoding: int32 example: 10 examples: - Max: 200 Remaining: 200 HourlyDashboardResults: title: HourlyDashboardResults required: - Max - Remaining type: object properties: Max: type: integer contentEncoding: int32 example: 10 Remaining: type: integer contentEncoding: int32 example: 10 examples: - Max: 5000 Remaining: 5000 HourlyDashboardStatuses: title: HourlyDashboardStatuses required: - Max - Remaining type: object properties: Max: type: integer contentEncoding: int32 example: 10 Remaining: type: integer contentEncoding: int32 example: 10 examples: - Max: 999999999 Remaining: 999999999 HourlyLongTermIdMapping: title: HourlyLongTermIdMapping required: - Max - Remaining type: object properties: Max: type: integer contentEncoding: int32 example: 10 Remaining: type: integer contentEncoding: int32 example: 10 examples: - Max: 100000 Remaining: 100000 HourlyManagedContentPublicRequests: title: HourlyManagedContentPublicRequests required: - Max - Remaining type: object properties: Max: type: integer contentEncoding: int32 example: 10 Remaining: type: integer contentEncoding: int32 example: 10 examples: - Max: 50000 Remaining: 50000 HourlyODataCallout: title: HourlyODataCallout required: - Max - Remaining type: object properties: Max: type: integer contentEncoding: int32 example: 10 Remaining: type: integer contentEncoding: int32 example: 10 examples: - Max: 1000 Remaining: 1000 HourlyPublishedPlatformEvents: title: HourlyPublishedPlatformEvents required: - Max - Remaining type: object properties: Max: type: integer contentEncoding: int32 example: 10 Remaining: type: integer contentEncoding: int32 example: 10 examples: - Max: 50000 Remaining: 50000 HourlyPublishedStandardVolumePlatformEvents: title: HourlyPublishedStandardVolumePlatformEvents required: - Max - Remaining type: object properties: Max: type: integer contentEncoding: int32 example: 10 Remaining: type: integer contentEncoding: int32 example: 10 examples: - Max: 1000 Remaining: 1000 HourlyShortTermIdMapping: title: HourlyShortTermIdMapping required: - Max - Remaining type: object properties: Max: type: integer contentEncoding: int32 example: 10 Remaining: type: integer contentEncoding: int32 example: 10 examples: - Max: 100000 Remaining: 100000 HourlySyncReportRuns: title: HourlySyncReportRuns required: - Max - Remaining type: object properties: Max: type: integer contentEncoding: int32 example: 10 Remaining: type: integer contentEncoding: int32 example: 10 examples: - Max: 500 Remaining: 500 HourlyTimeBasedWorkflow: title: HourlyTimeBasedWorkflow required: - Max - Remaining type: object properties: Max: type: integer contentEncoding: int32 example: 10 Remaining: type: integer contentEncoding: int32 example: 10 examples: - Max: 50 Remaining: 50 MassEmail: title: MassEmail required: - Max - Remaining type: object properties: Max: type: integer contentEncoding: int32 example: 10 Remaining: type: integer contentEncoding: int32 example: 10 examples: - Max: 10 Remaining: 10 MonthlyEinsteinDiscoveryStoryCreation: title: MonthlyEinsteinDiscoveryStoryCreation required: - Max - Remaining type: object properties: Max: type: integer contentEncoding: int32 example: 10 Remaining: type: integer contentEncoding: int32 example: 10 examples: - Max: 500 Remaining: 500 Package2VersionCreates: title: Package2VersionCreates required: - Max - Remaining type: object properties: Max: type: integer contentEncoding: int32 example: 10 Remaining: type: integer contentEncoding: int32 example: 10 examples: - Max: 6 Remaining: 6 Package2VersionCreatesWithoutValidation: title: Package2VersionCreatesWithoutValidation required: - Max - Remaining type: object properties: Max: type: integer contentEncoding: int32 example: 10 Remaining: type: integer contentEncoding: int32 example: 10 examples: - Max: 500 Remaining: 500 PermissionSets: title: PermissionSets required: - Max - Remaining - CreateCustom type: object properties: Max: type: integer contentEncoding: int32 example: 10 Remaining: type: integer contentEncoding: int32 example: 10 CreateCustom: $ref: '#/components/schemas/CreateCustom' examples: - Max: 1500 Remaining: 1498 CreateCustom: Max: 1000 Remaining: 998 CreateCustom: title: CreateCustom required: - Max - Remaining type: object properties: Max: type: integer contentEncoding: int32 example: 10 Remaining: type: integer contentEncoding: int32 example: 10 examples: - Max: 1000 Remaining: 998 PrivateConnectOutboundCalloutHourlyLimitMB: title: PrivateConnectOutboundCalloutHourlyLimitMB required: - Max - Remaining type: object properties: Max: type: integer contentEncoding: int32 example: 10 Remaining: type: integer contentEncoding: int32 example: 10 examples: - Max: 0 Remaining: 0 PublishCallbackUsageInApex: title: PublishCallbackUsageInApex required: - Max - Remaining type: object properties: Max: type: integer contentEncoding: int32 example: 10 Remaining: type: integer contentEncoding: int32 example: 10 examples: - Max: 5242880 Remaining: 5242880 SingleEmail: title: SingleEmail required: - Max - Remaining type: object properties: Max: type: integer contentEncoding: int32 example: 10 Remaining: type: integer contentEncoding: int32 example: 10 examples: - Max: 15 Remaining: 15 StreamingApiConcurrentClients: title: StreamingApiConcurrentClients required: - Max - Remaining type: object properties: Max: type: integer contentEncoding: int32 example: 10 Remaining: type: integer contentEncoding: int32 example: 10 examples: - Max: 20 Remaining: 20 AppMenu: title: AppMenu required: - AppSwitcher - Salesforce1 - NetworkTabs type: object properties: AppSwitcher: type: string example: example_value Salesforce1: type: string example: example_value NetworkTabs: type: string example: example_value examples: - AppSwitcher: /services/data/v58.0/appMenu/AppSwitcher Salesforce1: /services/data/v58.0/appMenu/Salesforce1 NetworkTabs: /services/data/v58.0/appMenu/NetworkTabs Query11: title: Query11 required: - totalSize - done - records type: object properties: totalSize: type: integer contentEncoding: int32 example: 42 done: type: boolean example: true records: type: array items: $ref: '#/components/schemas/Record14' description: '' example: [] Record14: title: Record14 required: - attributes - Id - IsDeleted - MasterRecordId - Name - Type - ParentId - BillingStreet - BillingCity - BillingState - BillingPostalCode - BillingCountry - BillingLatitude - BillingLongitude - BillingGeocodeAccuracy - BillingAddress - ShippingStreet - ShippingCity - ShippingState - ShippingPostalCode - ShippingCountry - ShippingLatitude - ShippingLongitude - ShippingGeocodeAccuracy - ShippingAddress - Phone - Fax - AccountNumber - Website - PhotoUrl - Sic - Industry - AnnualRevenue - NumberOfEmployees - Ownership - TickerSymbol - Description - Rating - Site - OwnerId - CreatedDate - CreatedById - LastModifiedDate - LastModifiedById - SystemModstamp - LastActivityDate - LastViewedDate - LastReferencedDate - IsPartner - IsCustomerPortal - ChannelProgramName - ChannelProgramLevelName - Jigsaw - JigsawCompanyId - CleanStatus - AccountSource - DunsNumber - Tradestyle - NaicsCode - NaicsDesc - YearStarted - SicDesc - DandbCompanyId - CustomerPriority__c - SLA__c - Active__c - NumberofLocations__c - UpsellOpportunity__c - SLASerialNumber__c - SLAExpirationDate__c type: object properties: attributes: $ref: '#/components/schemas/Attributes4' Id: type: string example: abc123 IsDeleted: type: boolean example: true MasterRecordId: type: - string - 'null' example: '500123' Name: type: string example: Example Title Type: type: string example: example_value ParentId: type: - string - 'null' example: '500123' BillingStreet: type: string example: example_value BillingCity: type: string example: example_value BillingState: type: string example: example_value BillingPostalCode: type: - string - 'null' example: example_value BillingCountry: type: - string - 'null' example: 42 BillingLatitude: type: - string - 'null' example: example_value BillingLongitude: type: - string - 'null' example: example_value BillingGeocodeAccuracy: type: - string - 'null' example: example_value BillingAddress: $ref: '#/components/schemas/BillingAddress1' ShippingStreet: type: - string - 'null' example: example_value ShippingCity: type: - string - 'null' example: example_value ShippingState: type: - string - 'null' example: example_value ShippingPostalCode: type: - string - 'null' example: example_value ShippingCountry: type: - string - 'null' example: 42 ShippingLatitude: type: - string - 'null' example: example_value ShippingLongitude: type: - string - 'null' example: example_value ShippingGeocodeAccuracy: type: - string - 'null' example: example_value ShippingAddress: oneOf: - allOf: - oneOf: - {} - $ref: '#/components/schemas/ShippingAddress1' - {} - allOf: - $ref: '#/components/schemas/ShippingAddress11' - examples: - city: Lawrence country: USA geocodeAccuracy: latitude: longitude: postalCode: '66045' state: KS street: 1301 Hoch Drive - {} example: example_value Phone: type: string example: example_value Fax: type: string example: example_value AccountNumber: type: string example: 42 Website: type: string example: example_value PhotoUrl: type: string example: https://www.example.com Sic: type: string example: example_value Industry: type: string example: example_value AnnualRevenue: type: integer contentEncoding: int32 example: 10 NumberOfEmployees: type: integer contentEncoding: int32 example: 10 Ownership: type: string example: example_value TickerSymbol: type: - string - 'null' example: example_value Description: type: - string - 'null' example: A sample description. Rating: type: - string - 'null' example: example_value Site: type: - string - 'null' example: example_value OwnerId: type: string example: '500123' CreatedDate: type: string example: example_value CreatedById: type: string example: '500123' LastModifiedDate: type: string example: example_value LastModifiedById: type: string example: '500123' SystemModstamp: type: string example: example_value LastActivityDate: type: - string - 'null' example: example_value LastViewedDate: type: - string - 'null' example: example_value LastReferencedDate: type: - string - 'null' example: example_value IsPartner: type: boolean example: true IsCustomerPortal: type: boolean example: true ChannelProgramName: type: - string - 'null' example: example_value ChannelProgramLevelName: type: - string - 'null' example: example_value Jigsaw: type: - string - 'null' example: example_value JigsawCompanyId: type: - string - 'null' example: '500123' CleanStatus: type: string example: example_value AccountSource: type: - string - 'null' example: 42 DunsNumber: type: - string - 'null' example: example_value Tradestyle: type: - string - 'null' example: example_value NaicsCode: type: - string - 'null' example: example_value NaicsDesc: type: - string - 'null' example: example_value YearStarted: type: - string - 'null' example: example_value SicDesc: type: - string - 'null' example: example_value DandbCompanyId: type: - string - 'null' example: '500123' CustomerPriority__c: type: - string - 'null' example: example_value SLA__c: type: string example: example_value Active__c: type: - string - 'null' example: example_value NumberofLocations__c: type: integer contentEncoding: int32 example: 10 UpsellOpportunity__c: type: string example: example_value SLASerialNumber__c: type: string example: example_value SLAExpirationDate__c: type: string example: example_value BillingAddress1: title: BillingAddress1 required: - city - country - geocodeAccuracy - latitude - longitude - postalCode - state - street type: object properties: city: type: string example: example_value country: type: - string - 'null' example: 42 geocodeAccuracy: type: - string - 'null' example: example_value latitude: type: - string - 'null' example: example_value longitude: type: - string - 'null' example: example_value postalCode: type: - string - 'null' example: example_value state: type: string example: example_value street: type: string example: example_value examples: - city: Burlington country: USA geocodeAccuracy: latitude: longitude: postalCode: '27215' state: NC street: 525 S. Lexington Ave ShippingAddress1: title: ShippingAddress1 type: object properties: city: type: string example: example_value country: type: string example: 42 geocodeAccuracy: type: - string - 'null' example: example_value latitude: type: - string - 'null' example: example_value longitude: type: - string - 'null' example: example_value postalCode: type: string example: example_value state: type: string example: example_value street: type: string example: example_value ShippingAddress11: title: ShippingAddress11 required: - city - country - geocodeAccuracy - latitude - longitude - postalCode - state - street type: object properties: city: type: - string - 'null' example: example_value country: type: - string - 'null' example: 42 geocodeAccuracy: type: - string - 'null' example: example_value latitude: type: - string - 'null' example: example_value longitude: type: - string - 'null' example: example_value postalCode: type: - string - 'null' example: example_value state: type: - string - 'null' example: example_value street: type: string example: example_value examples: - city: Lawrence country: USA geocodeAccuracy: latitude: longitude: postalCode: '66045' state: KS street: 1301 Hoch Drive ShippingAddress12: title: ShippingAddress12 type: object properties: city: type: - string - 'null' example: example_value country: type: - string - 'null' example: 42 geocodeAccuracy: type: - string - 'null' example: example_value latitude: type: - string - 'null' example: example_value longitude: type: - string - 'null' example: example_value postalCode: type: - string - 'null' example: example_value state: type: - string - 'null' example: example_value street: type: string example: example_value QueryAll: title: QueryAll required: - totalSize - done - records type: object properties: totalSize: type: integer contentEncoding: int32 example: 42 done: type: boolean example: true records: type: array items: $ref: '#/components/schemas/Record15' description: '' example: [] examples: - totalSize: 12 done: true records: - attributes: type: Account url: /services/data/v58.0/sobjects/Account/001B000000UnQ2vIAF Name: Edge Communications - attributes: type: Account url: /services/data/v58.0/sobjects/Account/001B000000UnQ2wIAF Name: Burlington Textiles Corp of America - attributes: type: Account url: /services/data/v58.0/sobjects/Account/001B000000UnQ2xIAF Name: Pyramid Construction Inc. - attributes: type: Account url: /services/data/v58.0/sobjects/Account/001B000000UnQ2yIAF Name: Dickenson plc - attributes: type: Account url: /services/data/v58.0/sobjects/Account/001B000000UnQ2zIAF Name: Grand Hotels & Resorts Ltd - attributes: type: Account url: /services/data/v58.0/sobjects/Account/001B000000UnQ30IAF Name: United Oil & Gas Corp. - attributes: type: Account url: /services/data/v58.0/sobjects/Account/001B000000UnQ31IAF Name: Express Logistics and Transport - attributes: type: Account url: /services/data/v58.0/sobjects/Account/001B000000UnQ32IAF Name: University of Arizona - attributes: type: Account url: /services/data/v58.0/sobjects/Account/001B000000UnQ33IAF Name: United Oil & Gas, UK - attributes: type: Account url: /services/data/v58.0/sobjects/Account/001B000000UnQ34IAF Name: United Oil & Gas, Singapore - attributes: type: Account url: /services/data/v58.0/sobjects/Account/001B000000UnQ35IAF Name: GenePoint - attributes: type: Account url: /services/data/v58.0/sobjects/Account/001B000000UnQ36IAF Name: sForce Record15: title: Record15 required: - attributes - Name type: object properties: attributes: $ref: '#/components/schemas/Attributes4' Name: type: string example: Example Title examples: - attributes: type: Account url: /services/data/v58.0/sobjects/Account/001B000000UnQ2vIAF Name: Edge Communications RecordCount: title: RecordCount required: - sObjects type: object properties: sObjects: type: array items: $ref: '#/components/schemas/SObjects1' description: '' example: [] examples: - sObjects: - count: 12 name: Account - count: 20 name: Contact - count: 22 name: Lead SObjects1: title: SObjects1 required: - count - name type: object properties: count: type: integer contentEncoding: int32 example: 42 name: type: string example: Example Title examples: - count: 12 name: Account Tab: title: Tab required: - colors - custom - iconUrl - icons - label - miniIconUrl - name - sobjectName - url type: object properties: colors: type: array items: $ref: '#/components/schemas/Color' description: '' example: [] custom: type: boolean example: true iconUrl: type: string example: https://www.example.com icons: type: array items: $ref: '#/components/schemas/Icon' description: '' example: [] label: type: string example: Example Title miniIconUrl: type: string example: https://www.example.com name: type: string example: Example Title sobjectName: type: string example: example_value url: type: string example: https://www.example.com examples: - colors: - color: '5867E8' context: primary theme: theme4 - color: 236FBD context: primary theme: theme3 custom: false iconUrl: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/accounts32.png icons: - contentType: image/png height: 32 theme: theme3 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/accounts32.png width: 32 - contentType: image/png height: 16 theme: theme3 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/accounts16.png width: 16 - contentType: image/svg+xml height: 0 theme: theme4 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account.svg width: 0 - contentType: image/png height: 60 theme: theme4 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_60.png width: 60 - contentType: image/png height: 120 theme: theme4 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_120.png width: 120 label: Accounts miniIconUrl: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/accounts16.png name: standard-Account sobjectName: Account url: https://nto-df17-demo-dev-ed.my.salesforce.com/001/o Color: title: Color required: - color - context - theme type: object properties: color: type: string example: example_value context: type: string example: example_value theme: type: string example: example_value examples: - color: '5867E8' context: primary theme: theme4 Icon: title: Icon required: - contentType - height - theme - url - width type: object properties: contentType: type: string example: example_value height: type: integer contentEncoding: int32 example: 10 theme: type: string example: example_value url: type: string example: https://www.example.com width: type: integer contentEncoding: int32 example: 10 examples: - contentType: image/png height: 32 theme: theme3 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/accounts32.png width: 32 Themes: title: Themes required: - themeItems type: object properties: themeItems: type: array items: $ref: '#/components/schemas/ThemeItem' description: '' example: [] examples: - themeItems: - colors: - color: '5867E8' context: primary theme: theme4 - color: 236FBD context: primary theme: theme3 icons: - contentType: image/png height: 32 theme: theme3 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/accounts32.png width: 32 - contentType: image/png height: 16 theme: theme3 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/accounts16.png width: 16 - contentType: image/svg+xml height: 0 theme: theme4 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account.svg width: 0 - contentType: image/png height: 60 theme: theme4 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_60.png width: 60 - contentType: image/png height: 120 theme: theme4 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_120.png width: 120 name: Account - colors: - color: '5867E8' context: primary theme: theme4 - color: '5867E8' context: primary theme: theme3 icons: - contentType: image/png height: 32 theme: theme3 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/account_brand32.png width: 32 - contentType: image/png height: 16 theme: theme3 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/account_brand16.png width: 16 - contentType: image/svg+xml height: 0 theme: theme4 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_brand.svg width: 0 - contentType: image/png height: 60 theme: theme4 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_brand_60.png width: 60 - contentType: image/png height: 120 theme: theme4 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/t4v35/standard/brand_120.png width: 120 name: AccountBrand ThemeItem: title: ThemeItem required: - colors - icons - name type: object properties: colors: type: array items: $ref: '#/components/schemas/Color' description: '' example: [] icons: type: array items: $ref: '#/components/schemas/Icon' description: '' example: [] name: type: string example: Example Title examples: - colors: - color: '5867E8' context: primary theme: theme4 - color: 236FBD context: primary theme: theme3 icons: - contentType: image/png height: 32 theme: theme3 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/accounts32.png width: 32 - contentType: image/png height: 16 theme: theme3 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/accounts16.png width: 16 - contentType: image/svg+xml height: 0 theme: theme4 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account.svg width: 0 - contentType: image/png height: 60 theme: theme4 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_60.png width: 60 - contentType: image/png height: 120 theme: theme4 url: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_120.png width: 120 name: Account Envelope7: title: Envelope7 required: - Header - Body type: object properties: Header: allOf: - $ref: '#/components/schemas/Header8' - xml: name: Header namespace: http://schemas.xmlsoap.org/soap/envelope/ prefix: soapenv attribute: false wrapped: false example: example_value Body: allOf: - $ref: '#/components/schemas/Body23' - xml: name: Body namespace: http://schemas.xmlsoap.org/soap/envelope/ prefix: soapenv attribute: false wrapped: false example: example_value xml: name: Envelope namespace: http://schemas.xmlsoap.org/soap/envelope/ prefix: soapenv attribute: false wrapped: false Header8: title: Header8 required: - SessionHeader type: object properties: SessionHeader: allOf: - $ref: '#/components/schemas/SessionHeader4' - xml: name: SessionHeader namespace: urn:enterprise.soap.sforce.com prefix: urn attribute: false wrapped: false example: example_value xml: name: Header namespace: http://schemas.xmlsoap.org/soap/envelope/ prefix: soapenv attribute: false wrapped: false SessionHeader4: title: SessionHeader4 required: - sessionId type: object properties: sessionId: type: string xml: name: sessionId namespace: urn:enterprise.soap.sforce.com prefix: urn attribute: false wrapped: false example: '500123' xml: name: SessionHeader namespace: urn:enterprise.soap.sforce.com prefix: urn attribute: false wrapped: false Body23: title: Body23 required: - undelete type: object properties: undelete: allOf: - $ref: '#/components/schemas/undelete' - xml: name: undelete namespace: urn:enterprise.soap.sforce.com prefix: urn attribute: false wrapped: false example: example_value xml: name: Body namespace: http://schemas.xmlsoap.org/soap/envelope/ prefix: soapenv attribute: false wrapped: false undelete: title: undelete required: - ids type: object properties: ids: type: string xml: name: ids namespace: urn:enterprise.soap.sforce.com prefix: urn attribute: false wrapped: false example: example_value xml: name: undelete namespace: urn:enterprise.soap.sforce.com prefix: urn attribute: false wrapped: false CreatePaymentMethodRequest: title: CreatePaymentMethodRequest required: - paymentGatewayId - cardPaymentMethod - phone - email - additionalData type: object properties: paymentGatewayId: type: string example: '500123' cardPaymentMethod: $ref: '#/components/schemas/CardPaymentMethod' phone: type: string example: example_value email: type: string example: user@example.com additionalData: $ref: '#/components/schemas/AdditionalData' examples: - paymentGatewayId: '{{defaultPaymentGatewayId}}' cardPaymentMethod: cardHolderName: '{{_userFullName}}' expiryMonth: '11' expiryYear: '2222' cardNumber: '4111111111111111' cvv: '111' cardCategory: CreditCard cardType: VISA startYear: '2013' startMonth: '7' nickName: Default Payment Method accountId: '{{defaultAccountId}}' phone: '4155551212' email: '{{_userEmail}}' additionalData: key1: value1 key2: value2 CardPaymentMethod: title: CardPaymentMethod required: - cardHolderName - expiryMonth - expiryYear - cardNumber - cvv - cardCategory - cardType - startYear - startMonth - nickName - accountId type: object properties: cardHolderName: type: string example: example_value expiryMonth: type: string example: example_value expiryYear: type: string example: example_value cardNumber: type: string example: example_value cvv: type: string example: example_value cardCategory: type: string example: example_value cardType: type: string example: example_value startYear: type: string example: example_value startMonth: type: string example: example_value nickName: type: string example: example_value accountId: type: string example: '500123' examples: - cardHolderName: '{{_userFullName}}' expiryMonth: '11' expiryYear: '2222' cardNumber: '4111111111111111' cvv: '111' cardCategory: CreditCard cardType: VISA startYear: '2013' startMonth: '7' nickName: Default Payment Method accountId: '{{defaultAccountId}}' AdditionalData: title: AdditionalData required: - key1 - key2 type: object properties: key1: type: string example: example_value key2: type: string example: example_value examples: - key1: value1 key2: value2 RequestProductInformationNoBundlesRequest: title: RequestProductInformationNoBundlesRequest required: - productContexts - fields - retrievalType type: object properties: productContexts: type: array items: $ref: '#/components/schemas/ProductContext' description: '' example: [] fields: type: array items: type: string description: '' example: [] retrievalType: type: string example: example_value examples: - productContexts: - product2Id: '{{ClassTrainingProduct}}' productSellingModelId: '{{OneTimePSM}}' - product2Id: '{{VirtualRouterProduct}}' fields: - id - name - IsActive - ProductCode retrievalType: ExcludeChildComponents ProductContext: title: ProductContext required: - product2Id type: object properties: product2Id: type: string example: '500123' productSellingModelId: type: string example: '500123' examples: - product2Id: '{{ClassTrainingProduct}}' productSellingModelId: '{{OneTimePSM}}' RequestProductInformationBundledComponentsRequest: title: RequestProductInformationBundledComponentsRequest required: - productContexts - retrievalType type: object properties: productContexts: type: array items: $ref: '#/components/schemas/ProductContext1' description: '' example: [] retrievalType: type: string example: example_value examples: - productContexts: - product2Id: '{{WorkAnywhereBundleProduct}}' retrievalType: IncludeChildComponents ProductContext1: title: ProductContext1 required: - product2Id type: object properties: product2Id: type: string example: '500123' examples: - product2Id: '{{WorkAnywhereBundleProduct}}' CalculatePriceNewSaleRequest: title: CalculatePriceNewSaleRequest required: - listPricebookId - pricingFlow - graph type: object properties: listPricebookId: type: string example: '500123' pricingFlow: type: string example: example_value graph: $ref: '#/components/schemas/Graph2' examples: - listPricebookId: '{{standardPricebook}}' pricingFlow: GET_PRICE_USING_CONTEXT graph: graphId: '1' records: - referenceId: ref_sales_txn record: attributes: type: SalesTransactionShape CurrencyIsoCode: USD - referenceId: Item_1_Evergreen record: attributes: type: SalesTransactionItemShape SalesTransactionShapeId: '@{ref_sales_txn.Id}' StartDate: '2023-01-01T00:00:00.000Z' ProductId: '{{SLA_BronzeProduct}}' ProductSellingModelId: '{{EvergreenMonthlyPSM}}' Quantity: 3 PricingTransactionType: NewSale CurrencyIsoCode: USD - referenceId: Item_2_Termed record: attributes: type: SalesTransactionItemShape SalesTransactionShapeId: '@{ref_sales_txn.Id}' StartDate: '2023-01-01T00:00:00.000Z' EndDate: '2023-12-31T00:00:00.000Z' ProductId: '{{VirtualRouterProduct}}' ProductSellingModelId: '{{TermMonthlyPSM}}' Quantity: 100 PricingTransactionType: NewSale CurrencyIsoCode: USD Graph2: title: Graph2 required: - graphId - records type: object properties: graphId: type: string example: '500123' records: type: array items: $ref: '#/components/schemas/Record16' description: '' example: [] examples: - graphId: '1' records: - referenceId: ref_sales_txn record: attributes: type: SalesTransactionShape CurrencyIsoCode: USD - referenceId: Item_1_Evergreen record: attributes: type: SalesTransactionItemShape SalesTransactionShapeId: '@{ref_sales_txn.Id}' StartDate: '2023-01-01T00:00:00.000Z' ProductId: '{{SLA_BronzeProduct}}' ProductSellingModelId: '{{EvergreenMonthlyPSM}}' Quantity: 3 PricingTransactionType: NewSale CurrencyIsoCode: USD - referenceId: Item_2_Termed record: attributes: type: SalesTransactionItemShape SalesTransactionShapeId: '@{ref_sales_txn.Id}' StartDate: '2023-01-01T00:00:00.000Z' EndDate: '2023-12-31T00:00:00.000Z' ProductId: '{{VirtualRouterProduct}}' ProductSellingModelId: '{{TermMonthlyPSM}}' Quantity: 100 PricingTransactionType: NewSale CurrencyIsoCode: USD Record16: title: Record16 required: - referenceId - record type: object properties: referenceId: type: string example: '500123' record: $ref: '#/components/schemas/Record17' examples: - referenceId: ref_sales_txn record: attributes: type: SalesTransactionShape CurrencyIsoCode: USD Record17: title: Record17 required: - attributes - CurrencyIsoCode type: object properties: attributes: $ref: '#/components/schemas/Attributes3' CurrencyIsoCode: type: string example: example_value SalesTransactionShapeId: type: string example: '500123' StartDate: type: string example: example_value ProductId: type: string example: '500123' ProductSellingModelId: type: string example: '500123' Quantity: type: number example: 42.5 PricingTransactionType: type: string example: example_value EndDate: type: string example: example_value examples: - attributes: type: SalesTransactionShape CurrencyIsoCode: USD CalculatePriceNewSaleBundlesRequest: title: CalculatePriceNewSaleBundlesRequest required: - listPricebookId - candidatePricebookIds - pricingFlow - graph type: object properties: listPricebookId: type: string example: '500123' candidatePricebookIds: type: array items: type: string description: '' example: [] pricingFlow: type: string example: example_value graph: $ref: '#/components/schemas/Graph3' examples: - listPricebookId: '{{standardPricebook}}' candidatePricebookIds: - '{{standardPricebook}}' pricingFlow: GET_PRICE_USING_CONTEXT graph: graphId: '1' records: - referenceId: ref_sales_txn record: attributes: type: SalesTransactionShape CurrencyIsoCode: USD - referenceId: ref_sales_txn_item1 record: attributes: type: SalesTransactionItemShape SalesTransactionShapeId: '@{ref_sales_txn.Id}' StartDate: '2022-01-01T00:00:00.000Z' ProductId: '{{WorkAnywhereBundleProduct}}' ProductSellingModelId: '{{EvergreenMonthlyPSM}}' Quantity: 10 PricingTransactionType: NewSale CurrencyIsoCode: USD - referenceId: ref_sales_txn_item2 record: attributes: type: SalesTransactionItemShape SalesTransactionShapeId: '@{ref_sales_txn.Id}' StartDate: '2023-01-01T00:00:00.000Z' ProductId: '{{VirtualRouterProduct}}' ProductSellingModelId: '{{EvergreenMonthlyPSM}}' Quantity: 10 PricingTransactionType: NewSale CurrencyIsoCode: USD - referenceId: ref_sales_txn_item3 record: attributes: type: SalesTransactionItemShape SalesTransactionShapeId: '@{ref_sales_txn.Id}' StartDate: '2023-01-01T00:00:00.000Z' ProductId: '{{SLA_BronzeProduct}}' ProductSellingModelId: '{{EvergreenMonthlyPSM}}' Quantity: 10 PricingTransactionType: NewSale CurrencyIsoCode: USD - referenceId: ref_sales_txn_item4 record: attributes: type: SalesTransactionItemShape SalesTransactionShapeId: '@{ref_sales_txn.Id}' StartDate: '2023-01-01T00:00:00.000Z' ProductId: '{{ClassTrainingProduct}}' ProductSellingModelId: '{{OneTimePSM}}' Quantity: 50 PricingTransactionType: NewSale CurrencyIsoCode: USD - referenceId: ref_rel1 record: attributes: type: SalesTrxnItemRelationShape MainSalesTrxnItemShapeId: '@{ref_sales_txn_item1.Id}' AssocSalesTrxnItemShapeId: '@{ref_sales_txn_item2.Id}' MainSalesTrxnItemShapeRole: Bundle AssocSalesTrxnItemShapeRole: BundleComponent AssociatedItemShapePricing: IncludedInBundlePrice - referenceId: ref_rel2 record: attributes: type: SalesTrxnItemRelationShape MainSalesTrxnItemShapeId: '@{ref_sales_txn_item1.Id}' AssocSalesTrxnItemShapeId: '@{ref_sales_txn_item3.Id}' MainSalesTrxnItemShapeRole: Bundle AssocSalesTrxnItemShapeRole: BundleComponent AssociatedItemShapePricing: IncludedInBundlePrice - referenceId: ref_rel3 record: attributes: type: SalesTrxnItemRelationShape MainSalesTrxnItemShapeId: '@{ref_sales_txn_item1.Id}' AssocSalesTrxnItemShapeId: '@{ref_sales_txn_item4.Id}' MainSalesTrxnItemShapeRole: Bundle AssocSalesTrxnItemShapeRole: BundleComponent AssociatedItemShapePricing: NotIncludedInBundlePrice Graph3: title: Graph3 required: - graphId - records type: object properties: graphId: type: string example: '500123' records: type: array items: $ref: '#/components/schemas/Record18' description: '' example: [] examples: - graphId: '1' records: - referenceId: ref_sales_txn record: attributes: type: SalesTransactionShape CurrencyIsoCode: USD - referenceId: ref_sales_txn_item1 record: attributes: type: SalesTransactionItemShape SalesTransactionShapeId: '@{ref_sales_txn.Id}' StartDate: '2022-01-01T00:00:00.000Z' ProductId: '{{WorkAnywhereBundleProduct}}' ProductSellingModelId: '{{EvergreenMonthlyPSM}}' Quantity: 10 PricingTransactionType: NewSale CurrencyIsoCode: USD - referenceId: ref_sales_txn_item2 record: attributes: type: SalesTransactionItemShape SalesTransactionShapeId: '@{ref_sales_txn.Id}' StartDate: '2023-01-01T00:00:00.000Z' ProductId: '{{VirtualRouterProduct}}' ProductSellingModelId: '{{EvergreenMonthlyPSM}}' Quantity: 10 PricingTransactionType: NewSale CurrencyIsoCode: USD - referenceId: ref_sales_txn_item3 record: attributes: type: SalesTransactionItemShape SalesTransactionShapeId: '@{ref_sales_txn.Id}' StartDate: '2023-01-01T00:00:00.000Z' ProductId: '{{SLA_BronzeProduct}}' ProductSellingModelId: '{{EvergreenMonthlyPSM}}' Quantity: 10 PricingTransactionType: NewSale CurrencyIsoCode: USD - referenceId: ref_sales_txn_item4 record: attributes: type: SalesTransactionItemShape SalesTransactionShapeId: '@{ref_sales_txn.Id}' StartDate: '2023-01-01T00:00:00.000Z' ProductId: '{{ClassTrainingProduct}}' ProductSellingModelId: '{{OneTimePSM}}' Quantity: 50 PricingTransactionType: NewSale CurrencyIsoCode: USD - referenceId: ref_rel1 record: attributes: type: SalesTrxnItemRelationShape MainSalesTrxnItemShapeId: '@{ref_sales_txn_item1.Id}' AssocSalesTrxnItemShapeId: '@{ref_sales_txn_item2.Id}' MainSalesTrxnItemShapeRole: Bundle AssocSalesTrxnItemShapeRole: BundleComponent AssociatedItemShapePricing: IncludedInBundlePrice - referenceId: ref_rel2 record: attributes: type: SalesTrxnItemRelationShape MainSalesTrxnItemShapeId: '@{ref_sales_txn_item1.Id}' AssocSalesTrxnItemShapeId: '@{ref_sales_txn_item3.Id}' MainSalesTrxnItemShapeRole: Bundle AssocSalesTrxnItemShapeRole: BundleComponent AssociatedItemShapePricing: IncludedInBundlePrice - referenceId: ref_rel3 record: attributes: type: SalesTrxnItemRelationShape MainSalesTrxnItemShapeId: '@{ref_sales_txn_item1.Id}' AssocSalesTrxnItemShapeId: '@{ref_sales_txn_item4.Id}' MainSalesTrxnItemShapeRole: Bundle AssocSalesTrxnItemShapeRole: BundleComponent AssociatedItemShapePricing: NotIncludedInBundlePrice Record18: title: Record18 required: - referenceId - record type: object properties: referenceId: type: string example: '500123' record: $ref: '#/components/schemas/Record19' examples: - referenceId: ref_sales_txn record: attributes: type: SalesTransactionShape CurrencyIsoCode: USD Record19: title: Record19 required: - attributes type: object properties: attributes: $ref: '#/components/schemas/Attributes3' CurrencyIsoCode: type: string example: example_value SalesTransactionShapeId: type: string example: '500123' StartDate: type: string example: example_value ProductId: type: string example: '500123' ProductSellingModelId: type: string example: '500123' Quantity: type: number example: 42.5 PricingTransactionType: type: string example: example_value MainSalesTrxnItemShapeId: type: string example: '500123' AssocSalesTrxnItemShapeId: type: string example: '500123' MainSalesTrxnItemShapeRole: type: string example: example_value AssocSalesTrxnItemShapeRole: type: string example: example_value AssociatedItemShapePricing: type: string example: example_value examples: - attributes: type: SalesTransactionShape CurrencyIsoCode: USD CalculatePriceNewSalewithDiscountsRequest: title: CalculatePriceNewSalewithDiscountsRequest required: - listPricebookId - pricingFlow - graph type: object properties: listPricebookId: type: string example: '500123' pricingFlow: type: string example: example_value graph: $ref: '#/components/schemas/Graph4' examples: - listPricebookId: '{{standardPricebook}}' pricingFlow: GET_PRICE_USING_CONTEXT graph: graphId: '1' records: - referenceId: ref_sales_txn record: attributes: type: SalesTransactionShape CurrencyIsoCode: USD - referenceId: Item_1_Evergreen record: attributes: type: SalesTransactionItemShape SalesTransactionShapeId: '@{ref_sales_txn.Id}' StartDate: '2023-01-01T00:00:00.000Z' ProductId: '{{SLA_BronzeProduct}}' ProductSellingModelId: '{{EvergreenMonthlyPSM}}' Quantity: 3 PricingTransactionType: NewSale CurrencyIsoCode: USD - referenceId: Item_2_Termed record: attributes: type: SalesTransactionItemShape SalesTransactionShapeId: '@{ref_sales_txn.Id}' StartDate: '2023-01-01T00:00:00.000Z' EndDate: '2024-01-01T00:00:00.000Z' ProductId: '{{VirtualRouterProduct}}' ProductSellingModelId: '{{TermMonthlyPSM}}' Quantity: 100 PricingTransactionType: NewSale CurrencyIsoCode: USD - referenceId: Order_Level_Discount record: attributes: type: PriceAdjustmentGroupShape SalesTransactionShapeId: '@{ref_sales_txn.Id}' AdjustmentType: AdjustmentPercentage AdjustmentValue: -20 AdjustmentSource: Discretionary - referenceId: Line_Level_Discount record: attributes: type: PriceAdjustmentItemShape SalesTransactionItemShapeId: '@{Item_1_Evergreen.Id}' AdjustmentType: AdjustmentAmount AdjustmentValue: -10 AdjustmentSource: Discretionary AdjustmentAmountScope: Unit Graph4: title: Graph4 required: - graphId - records type: object properties: graphId: type: string example: '500123' records: type: array items: $ref: '#/components/schemas/Record20' description: '' example: [] examples: - graphId: '1' records: - referenceId: ref_sales_txn record: attributes: type: SalesTransactionShape CurrencyIsoCode: USD - referenceId: Item_1_Evergreen record: attributes: type: SalesTransactionItemShape SalesTransactionShapeId: '@{ref_sales_txn.Id}' StartDate: '2023-01-01T00:00:00.000Z' ProductId: '{{SLA_BronzeProduct}}' ProductSellingModelId: '{{EvergreenMonthlyPSM}}' Quantity: 3 PricingTransactionType: NewSale CurrencyIsoCode: USD - referenceId: Item_2_Termed record: attributes: type: SalesTransactionItemShape SalesTransactionShapeId: '@{ref_sales_txn.Id}' StartDate: '2023-01-01T00:00:00.000Z' EndDate: '2024-01-01T00:00:00.000Z' ProductId: '{{VirtualRouterProduct}}' ProductSellingModelId: '{{TermMonthlyPSM}}' Quantity: 100 PricingTransactionType: NewSale CurrencyIsoCode: USD - referenceId: Order_Level_Discount record: attributes: type: PriceAdjustmentGroupShape SalesTransactionShapeId: '@{ref_sales_txn.Id}' AdjustmentType: AdjustmentPercentage AdjustmentValue: -20 AdjustmentSource: Discretionary - referenceId: Line_Level_Discount record: attributes: type: PriceAdjustmentItemShape SalesTransactionItemShapeId: '@{Item_1_Evergreen.Id}' AdjustmentType: AdjustmentAmount AdjustmentValue: -10 AdjustmentSource: Discretionary AdjustmentAmountScope: Unit Record20: title: Record20 required: - referenceId - record type: object properties: referenceId: type: string example: '500123' record: $ref: '#/components/schemas/Record21' examples: - referenceId: ref_sales_txn record: attributes: type: SalesTransactionShape CurrencyIsoCode: USD Record21: title: Record21 required: - attributes type: object properties: attributes: $ref: '#/components/schemas/Attributes3' CurrencyIsoCode: type: string example: example_value SalesTransactionShapeId: type: string example: '500123' StartDate: type: string example: example_value ProductId: type: string example: '500123' ProductSellingModelId: type: string example: '500123' Quantity: type: number example: 42.5 PricingTransactionType: type: string example: example_value EndDate: type: string example: example_value AdjustmentType: type: string example: example_value AdjustmentValue: type: integer contentEncoding: int32 example: 10 AdjustmentSource: type: string example: example_value SalesTransactionItemShapeId: type: string example: '500123' AdjustmentAmountScope: type: string example: example_value examples: - attributes: type: SalesTransactionShape CurrencyIsoCode: USD CreateorUpdateQuoteRequest: title: CreateorUpdateQuoteRequest required: - pricingPref - graph type: object properties: pricingPref: type: string example: example_value graph: $ref: '#/components/schemas/Graph5' examples: - pricingPref: skip graph: graphId: refQuoteGraph records: - referenceId: refQuote record: attributes: type: Quote method: POST Name: Quote_{{$randomCompanyName}} Pricebook2Id: '{{standardPricebook}}' - referenceId: refQuoteLineItem1 record: attributes: type: QuoteLineItem method: POST QuoteId: '@{refQuote.id}' PricebookEntryId: '{{VirtualRouterTermedPBE}}' Product2Id: '{{VirtualRouterProduct}}' Quantity: 5 UnitPrice: 35 PeriodBoundary: Anniversary BillingFrequency: Monthly StartDate: '2023-01-01T00:00:00.000Z' EndDate: '2024-01-01T00:00:00.000Z' - referenceId: refQuoteLineItem2 record: attributes: type: QuoteLineItem method: POST QuoteId: '@{refQuote.id}' PricebookEntryId: '{{SLABronzeEvergrnMonthPBE}}' Product2Id: '{{SLA_BronzeProduct}}' Quantity: 1 UnitPrice: 10 PeriodBoundary: DayOfPeriod PeriodBoundaryDay: 4 BillingFrequency: Monthly StartDate: '2023-01-01T00:00:00.000Z' Graph5: title: Graph5 required: - graphId - records type: object properties: graphId: type: string example: '500123' records: type: array items: $ref: '#/components/schemas/Record22' description: '' example: [] examples: - graphId: refQuoteGraph records: - referenceId: refQuote record: attributes: type: Quote method: POST Name: Quote_{{$randomCompanyName}} Pricebook2Id: '{{standardPricebook}}' - referenceId: refQuoteLineItem1 record: attributes: type: QuoteLineItem method: POST QuoteId: '@{refQuote.id}' PricebookEntryId: '{{VirtualRouterTermedPBE}}' Product2Id: '{{VirtualRouterProduct}}' Quantity: 5 UnitPrice: 35 PeriodBoundary: Anniversary BillingFrequency: Monthly StartDate: '2023-01-01T00:00:00.000Z' EndDate: '2024-01-01T00:00:00.000Z' - referenceId: refQuoteLineItem2 record: attributes: type: QuoteLineItem method: POST QuoteId: '@{refQuote.id}' PricebookEntryId: '{{SLABronzeEvergrnMonthPBE}}' Product2Id: '{{SLA_BronzeProduct}}' Quantity: 1 UnitPrice: 10 PeriodBoundary: DayOfPeriod PeriodBoundaryDay: 4 BillingFrequency: Monthly StartDate: '2023-01-01T00:00:00.000Z' Record22: title: Record22 required: - referenceId - record type: object properties: referenceId: type: string example: '500123' record: $ref: '#/components/schemas/Record23' examples: - referenceId: refQuote record: attributes: type: Quote method: POST Name: Quote_{{$randomCompanyName}} Pricebook2Id: '{{standardPricebook}}' Record23: title: Record23 required: - attributes type: object properties: attributes: $ref: '#/components/schemas/Attributes22' Name: type: string example: Example Title Pricebook2Id: type: string example: '500123' QuoteId: type: string example: '500123' PricebookEntryId: type: string example: '500123' Product2Id: type: string example: '500123' Quantity: type: number example: 42.5 UnitPrice: type: number example: 42.5 PeriodBoundary: type: string example: example_value BillingFrequency: type: string example: example_value StartDate: type: string example: example_value EndDate: type: string example: example_value PeriodBoundaryDay: type: integer contentEncoding: int32 example: 10 examples: - attributes: type: Quote method: POST Name: Quote_{{$randomCompanyName}} Pricebook2Id: '{{standardPricebook}}' Attributes22: title: Attributes22 required: - type - method type: object properties: type: type: string example: example_value method: type: string example: example_value examples: - type: Quote method: POST CreateOrderOne-TimeRequest: title: CreateOrderOne-TimeRequest required: - allOrNone - compositeRequest type: object properties: allOrNone: type: boolean example: true compositeRequest: type: array items: $ref: '#/components/schemas/CompositeRequest4' description: '' example: [] examples: - allOrNone: true compositeRequest: - method: POST url: /services/data/v64.0/sobjects/Order referenceId: refOrder body: AccountId: '{{defaultAccount}}' EffectiveDate: '2022-01-01T00:00:00.000Z' Pricebook2Id: '{{standardPricebook}}' BillToContactId: '{{defaultBillToContact}}' Status: Draft - method: POST url: /services/data/v64.0/sobjects/AppUsageAssignment referenceId: refAppTag body: AppUsageType: SubscriptionManagement RecordId: '@{refOrder.id}' - method: POST url: /services/data/v64.0/sobjects/OrderAction referenceId: refOrderAction body: OrderId: '@{refOrder.id}' Type: New Sale - method: POST url: /services/data/v64.0/sobjects/OrderItem referenceId: refOrderItem body: OrderId: '@{refOrder.id}' OrderActionId: '@{refOrderAction.id}' PricebookEntryId: '{{ClassTrainingOneTimePBE}}' Quantity: 2 UnitPrice: 25 NetUnitPrice: 25 TotalLineAmount: 50 TaxTreatmentId: '{{defaultTaxTreatment}}' CompositeRequest4: title: CompositeRequest4 required: - method - url - referenceId - body type: object properties: method: type: string example: example_value url: type: string example: https://www.example.com referenceId: type: string example: '500123' body: $ref: '#/components/schemas/Body24' examples: - method: POST url: /services/data/v64.0/sobjects/Order referenceId: refOrder body: AccountId: '{{defaultAccount}}' EffectiveDate: '2022-01-01T00:00:00.000Z' Pricebook2Id: '{{standardPricebook}}' BillToContactId: '{{defaultBillToContact}}' Status: Draft Body24: title: Body24 type: object properties: AccountId: type: string example: '500123' EffectiveDate: type: string example: example_value Pricebook2Id: type: string example: '500123' BillToContactId: type: string example: '500123' Status: type: string example: example_value AppUsageType: type: string example: example_value RecordId: type: string example: '500123' OrderId: type: string example: '500123' Type: type: string example: example_value OrderActionId: type: string example: '500123' PricebookEntryId: type: string example: '500123' Quantity: type: number example: 42.5 UnitPrice: type: number example: 42.5 NetUnitPrice: type: number example: 42.5 TotalLineAmount: type: number example: 42 TaxTreatmentId: type: string example: '500123' examples: - AccountId: '{{defaultAccount}}' EffectiveDate: '2022-01-01T00:00:00.000Z' Pricebook2Id: '{{standardPricebook}}' BillToContactId: '{{defaultBillToContact}}' Status: Draft CreateOrderWithBundleRequest: title: CreateOrderWithBundleRequest required: - allOrNone - compositeRequest type: object properties: allOrNone: type: boolean example: true compositeRequest: type: array items: $ref: '#/components/schemas/CompositeRequest5' description: '' example: [] examples: - allOrNone: true compositeRequest: - method: POST url: /services/data/v57.0/sobjects/Order referenceId: refOrder body: AccountId: '{{defaultAccount}}' EffectiveDate: '2023-01-01T00:00:00.000Z' Pricebook2Id: '{{standardPricebook}}' BillToContactId: '{{defaultBillToContact}}' Status: Draft - method: POST url: /services/data/v57.0/sobjects/AppUsageAssignment referenceId: refAppTag body: AppUsageType: SubscriptionManagement RecordId: '@{refOrder.id}' - method: POST url: /services/data/v57.0/sobjects/OrderAction referenceId: refOrderAction body: OrderId: '@{refOrder.id}' Type: New Sale - method: POST url: /services/data/v57.0/sobjects/OrderItem referenceId: refWorkAnywhereBundle body: OrderId: '@{refOrder.id}' OrderActionId: '@{refOrderAction.id}' PricebookEntryId: '{{WorkAnywhereBundlePBE}}' ServiceDate: '2023-01-01T00:00:00.000Z' Quantity: 1 UnitPrice: 10000 NetUnitPrice: 10000 TotalLineAmount: 10000 PeriodBoundary: AlignToCalendar BillingFrequency2: Monthly - method: POST url: /services/data/v57.0/sobjects/OrderItem referenceId: refVirtualRouter body: OrderId: '@{refOrder.id}' OrderActionId: '@{refOrderAction.id}' PricebookEntryId: '{{VirtualRouterEvergrnPBE}}' ServiceDate: '2023-01-01T00:00:00.000Z' Quantity: 100 UnitPrice: 0 NetUnitPrice: 0 TotalLineAmount: 0 PeriodBoundary: AlignToCalendar BillingFrequency2: Monthly - method: POST url: /services/data/v57.0/sobjects/OrderItem referenceId: refBronzeSLA body: OrderId: '@{refOrder.id}' OrderActionId: '@{refOrderAction.id}' PricebookEntryId: '{{SLABronzeEvergrnMonthPBE}}' ServiceDate: '2023-01-01T00:00:00.000Z' Quantity: 3 UnitPrice: 0 NetUnitPrice: 0 TotalLineAmount: 0 PeriodBoundary: AlignToCalendar BillingFrequency2: Monthly - method: POST url: /services/data/v57.0/sobjects/OrderItemRelationship referenceId: refOrderItemRelationship1 body: ProductRelationshipTypeId: '{{BundleProductRelationshipType}}' MainOrderItemId: '@{refWorkAnywhereBundle.id}' AssociatedOrderItemId: '@{refVirtualRouter.id}' AssociatedOrderItemPricing: IncludedInBundlePrice AssociatedQuantScaleMethod: Proportional - method: POST url: /services/data/v57.0/sobjects/OrderItemRelationship referenceId: refOrderItemRelationship2 body: ProductRelationshipTypeId: '{{BundleProductRelationshipType}}' MainOrderItemId: '@{refWorkAnywhereBundle.id}' AssociatedOrderItemId: '@{refBronzeSLA.id}' AssociatedOrderItemPricing: IncludedInBundlePrice AssociatedQuantScaleMethod: Constant CompositeRequest5: title: CompositeRequest5 required: - method - url - referenceId - body type: object properties: method: type: string example: example_value url: type: string example: https://www.example.com referenceId: type: string example: '500123' body: $ref: '#/components/schemas/Body25' examples: - method: POST url: /services/data/v57.0/sobjects/Order referenceId: refOrder body: AccountId: '{{defaultAccount}}' EffectiveDate: '2023-01-01T00:00:00.000Z' Pricebook2Id: '{{standardPricebook}}' BillToContactId: '{{defaultBillToContact}}' Status: Draft Body25: title: Body25 type: object properties: AccountId: type: string example: '500123' EffectiveDate: type: string example: example_value Pricebook2Id: type: string example: '500123' BillToContactId: type: string example: '500123' Status: type: string example: example_value AppUsageType: type: string example: example_value RecordId: type: string example: '500123' OrderId: type: string example: '500123' Type: type: string example: example_value OrderActionId: type: string example: '500123' PricebookEntryId: type: string example: '500123' ServiceDate: type: string example: example_value Quantity: type: integer contentEncoding: int32 example: 10 UnitPrice: type: integer contentEncoding: int32 example: 10 NetUnitPrice: type: integer contentEncoding: int32 example: 10 TotalLineAmount: type: integer contentEncoding: int32 example: 42 PeriodBoundary: type: string example: example_value BillingFrequency2: type: string example: example_value ProductRelationshipTypeId: type: string example: '500123' MainOrderItemId: type: string example: '500123' AssociatedOrderItemId: type: string example: '500123' AssociatedOrderItemPricing: type: string example: example_value AssociatedQuantScaleMethod: type: string example: example_value examples: - AccountId: '{{defaultAccount}}' EffectiveDate: '2023-01-01T00:00:00.000Z' Pricebook2Id: '{{standardPricebook}}' BillToContactId: '{{defaultBillToContact}}' Status: Draft CreateOrderEvergreenTermedRequest: title: CreateOrderEvergreenTermedRequest required: - allOrNone - compositeRequest type: object properties: allOrNone: type: boolean example: true compositeRequest: type: array items: $ref: '#/components/schemas/CompositeRequest6' description: '' example: [] examples: - allOrNone: true compositeRequest: - method: POST url: /services/data/v64.0/sobjects/Order referenceId: refOrder body: AccountId: '{{defaultAccount}}' EffectiveDate: '2022-01-01T00:00:00.000Z' Pricebook2Id: '{{standardPricebook}}' BillToContactId: '{{defaultBillToContact}}' Status: Draft - method: POST url: /services/data/v64.0/sobjects/AppUsageAssignment referenceId: refAppTag body: AppUsageType: SubscriptionManagement RecordId: '@{refOrder.id}' - method: POST url: /services/data/v64.0/sobjects/OrderAction referenceId: refOrderAction body: OrderId: '@{refOrder.id}' Type: New Sale - method: POST url: /services/data/v64.0/sobjects/OrderItem referenceId: Item_1_Evergreen body: OrderId: '@{refOrder.id}' OrderActionId: '@{refOrderAction.id}' PricebookEntryId: '{{VirtualRouterEvergrnPBE}}' Quantity: 2 UnitPrice: 25 NetUnitPrice: 25 TotalLineAmount: 50 PeriodBoundary: Anniversary BillingFrequency2: Monthly ServiceDate: '2022-02-01T00:00:00.000Z' TaxTreatmentId: '{{defaultTaxTreatment}}' - method: POST url: /services/data/v64.0/sobjects/OrderItem referenceId: Item_2_termed body: OrderId: '@{refOrder.id}' OrderActionId: '@{refOrderAction.id}' PricebookEntryId: '{{VirtualRouterTermedPBE}}' Quantity: 10 UnitPrice: 50 NetUnitPrice: 50 TotalLineAmount: 500 PeriodBoundary: Anniversary BillingFrequency2: Monthly PricingTermCount: 12 ServiceDate: '2022-02-01T00:00:00.000Z' EndDate: '2023-01-01T00:00:00.000Z' TaxTreatmentId: '{{defaultTaxTreatment}}' CompositeRequest6: title: CompositeRequest6 required: - method - url - referenceId - body type: object properties: method: type: string example: example_value url: type: string example: https://www.example.com referenceId: type: string example: '500123' body: $ref: '#/components/schemas/Body26' examples: - method: POST url: /services/data/v64.0/sobjects/Order referenceId: refOrder body: AccountId: '{{defaultAccount}}' EffectiveDate: '2022-01-01T00:00:00.000Z' Pricebook2Id: '{{standardPricebook}}' BillToContactId: '{{defaultBillToContact}}' Status: Draft Body26: title: Body26 type: object properties: AccountId: type: string example: '500123' EffectiveDate: type: string example: example_value Pricebook2Id: type: string example: '500123' BillToContactId: type: string example: '500123' Status: type: string example: example_value AppUsageType: type: string example: example_value RecordId: type: string example: '500123' OrderId: type: string example: '500123' Type: type: string example: example_value OrderActionId: type: string example: '500123' PricebookEntryId: type: string example: '500123' Quantity: type: number example: 42.5 UnitPrice: type: number example: 42.5 NetUnitPrice: type: number example: 42.5 TotalLineAmount: type: number example: 42 PeriodBoundary: type: string example: example_value BillingFrequency2: type: string example: example_value ServiceDate: type: string example: example_value TaxTreatmentId: type: string example: '500123' PricingTermCount: type: number example: 42 EndDate: type: string example: example_value examples: - AccountId: '{{defaultAccount}}' EffectiveDate: '2022-01-01T00:00:00.000Z' Pricebook2Id: '{{standardPricebook}}' BillToContactId: '{{defaultBillToContact}}' Status: Draft CreateOrderFromQuoteRequest: title: CreateOrderFromQuoteRequest required: - inputs type: object properties: inputs: type: array items: $ref: '#/components/schemas/Inputs2' description: '' example: [] examples: - inputs: - quoteRecordId: '{{currentQuote}}' Inputs2: title: Inputs2 required: - quoteRecordId type: object properties: quoteRecordId: type: string example: '500123' examples: - quoteRecordId: '{{currentQuote}}' CreateAssetFromOrderRequest: title: CreateAssetFromOrderRequest required: - inputs type: object properties: inputs: type: array items: $ref: '#/components/schemas/Inputs3' description: '' example: [] examples: - inputs: - orderId: '{{currentOrder}}' Inputs3: title: Inputs3 required: - orderId type: object properties: orderId: type: string example: '500123' examples: - orderId: '{{currentOrder}}' InitiateCancellationRequest: title: InitiateCancellationRequest required: - assetIds - cancellationDate - cancellationOutputType type: object properties: assetIds: $ref: '#/components/schemas/AssetIds' cancellationDate: type: string example: example_value cancellationOutputType: type: string example: example_value examples: - assetIds: assetIdArray: - '{{assetID}}' cancellationDate: '2023-08-21T00:00:00.000Z' cancellationOutputType: order AssetIds: title: AssetIds required: - assetIdArray type: object properties: assetIdArray: type: array items: type: string description: '' example: [] examples: - assetIdArray: - '{{assetID}}' InitiateRenewalRequest: title: InitiateRenewalRequest required: - assetIds type: object properties: assetIds: $ref: '#/components/schemas/AssetIds' examples: - assetIds: assetIdArray: - '{{assetID}}' InitiateAmendQuantityRequest: title: InitiateAmendQuantityRequest required: - assetIds - startDate - quantityChange - amendmentOutputType type: object properties: assetIds: $ref: '#/components/schemas/AssetIds' startDate: type: string example: example_value quantityChange: type: integer contentEncoding: int32 example: 10 amendmentOutputType: type: string example: example_value examples: - assetIds: assetIdArray: - '{{assetID}}' startDate: '2023-08-18T00:00:00.000Z' quantityChange: 5 amendmentOutputType: order ListSandboxes: title: ListSandboxes required: - size - totalSize - done - queryLocator - entityTypeName - records type: object properties: size: type: integer contentEncoding: int32 example: 10 totalSize: type: integer contentEncoding: int32 example: 42 done: type: boolean example: true queryLocator: type: - string - 'null' example: example_value entityTypeName: type: string example: example_value records: type: array items: $ref: '#/components/schemas/Record24' description: '' example: [] examples: - size: 1 totalSize: 1 done: true queryLocator: entityTypeName: SandboxInfo records: - attributes: type: SandboxInfo url: >- /services/data/v59.0/tooling/sobjects/SandboxInfo/0GQ4H000000CxSzWAK Id: 0GQ4H000000CxSzWAK SandboxName: devSandbox LicenseType: DEVELOPER AutoActivate: false Record24: title: Record24 required: - attributes - Id - SandboxName - LicenseType - AutoActivate type: object properties: attributes: $ref: '#/components/schemas/Attributes4' Id: type: string example: abc123 SandboxName: type: string example: example_value LicenseType: type: string example: example_value AutoActivate: type: boolean example: true examples: - attributes: type: SandboxInfo url: >- /services/data/v59.0/tooling/sobjects/SandboxInfo/0GQ4H000000CxSzWAK Id: 0GQ4H000000CxSzWAK SandboxName: devSandbox LicenseType: DEVELOPER AutoActivate: false CreateCloneSandboxRequest: title: CreateCloneSandboxRequest required: - SandboxName - LicenseType - TemplateId - HistoryDays - CopyChatter - AutoActivate - ApexClassId - Description - SourceId type: object properties: SandboxName: type: string example: example_value LicenseType: type: string example: example_value TemplateId: type: - string - 'null' example: '500123' HistoryDays: type: integer contentEncoding: int32 example: 10 CopyChatter: type: boolean example: true AutoActivate: type: boolean example: true ApexClassId: type: - string - 'null' example: '500123' Description: type: string example: A sample description. SourceId: type: - string - 'null' example: '500123' examples: - SandboxName: devSandbox LicenseType: DEVELOPER TemplateId: HistoryDays: 0 CopyChatter: false AutoActivate: false ApexClassId: Description: My new fresh sandbox SourceId: CreateSandbox: title: CreateSandbox required: - id - success - errors - warnings - infos type: object properties: id: type: string example: abc123 success: type: boolean example: true errors: type: array items: type: string description: '' example: [] warnings: type: array items: type: string description: '' example: [] infos: type: array items: type: string description: '' example: [] examples: - id: 0GQ4H000000CxSzWAK success: true errors: [] warnings: [] infos: [] GetSandbox: title: GetSandbox required: - attributes - Id - IsDeleted - CreatedDate - CreatedById - LastModifiedDate - LastModifiedById - SystemModstamp - SandboxName - LicenseType - TemplateId - HistoryDays - CopyChatter - AutoActivate - ApexClassId - Description - SourceId type: object properties: attributes: $ref: '#/components/schemas/Attributes4' Id: type: string example: abc123 IsDeleted: type: boolean example: true CreatedDate: type: string example: example_value CreatedById: type: string example: '500123' LastModifiedDate: type: string example: example_value LastModifiedById: type: string example: '500123' SystemModstamp: type: string example: example_value SandboxName: type: string example: example_value LicenseType: type: string example: example_value TemplateId: type: - string - 'null' example: '500123' HistoryDays: type: integer contentEncoding: int32 example: 10 CopyChatter: type: boolean example: true AutoActivate: type: boolean example: true ApexClassId: type: - string - 'null' example: '500123' Description: type: string example: A sample description. SourceId: type: - string - 'null' example: '500123' examples: - attributes: type: SandboxInfo url: >- /services/data/v59.0/tooling/sobjects/SandboxInfo/0GQ4H000000CxSzWAK Id: 0GQ4H000000CxSzWAK IsDeleted: false CreatedDate: 2023-12-11T10:44:58.000+0000 CreatedById: 00558000000yFyDAAU LastModifiedDate: 2023-12-11T10:44:58.000+0000 LastModifiedById: 00558000000yFyDAAU SystemModstamp: 2023-12-11T10:44:58.000+0000 SandboxName: devSandbox LicenseType: DEVELOPER TemplateId: HistoryDays: 0 CopyChatter: false AutoActivate: false ApexClassId: Description: My new fresh sandbox SourceId: GetSandboxStatus: title: GetSandboxStatus required: - size - totalSize - done - queryLocator - entityTypeName - records type: object properties: size: type: integer contentEncoding: int32 example: 10 totalSize: type: integer contentEncoding: int32 example: 42 done: type: boolean example: true queryLocator: type: - string - 'null' example: example_value entityTypeName: type: string example: example_value records: type: array items: $ref: '#/components/schemas/Record25' description: '' example: [] examples: - size: 2 totalSize: 2 done: true queryLocator: entityTypeName: SandboxProcess records: - attributes: type: SandboxProcess url: >- /services/data/v59.0/tooling/sobjects/SandboxProcess/0GR4H000000D2pCWAS SandboxName: devSandbox Status: Processing StartDate: 2023-12-13T12:33:56.000+0000 - attributes: type: SandboxProcess url: >- /services/data/v59.0/tooling/sobjects/SandboxProcess/0GR4H000000D2p7WAC SandboxName: devSandbox Status: Completed StartDate: 2023-12-11T10:44:58.000+0000 Record25: title: Record25 required: - attributes - SandboxName - Status - StartDate type: object properties: attributes: $ref: '#/components/schemas/Attributes4' SandboxName: type: string example: example_value Status: type: string example: example_value StartDate: type: string example: example_value examples: - attributes: type: SandboxProcess url: >- /services/data/v59.0/tooling/sobjects/SandboxProcess/0GR4H000000D2pCWAS SandboxName: devSandbox Status: Processing StartDate: 2023-12-13T12:33:56.000+0000 RefreshSandboxRequest: title: RefreshSandboxRequest required: - LicenseType - AutoActivate type: object properties: LicenseType: type: string example: example_value AutoActivate: type: boolean example: true examples: - LicenseType: DEVELOPER AutoActivate: true ToolingExecuteAnonymous: title: ToolingExecuteAnonymous required: - line - column - compiled - success - compileProblem - exceptionStackTrace - exceptionMessage type: object properties: line: type: integer contentEncoding: int32 example: 10 column: type: integer contentEncoding: int32 example: 10 compiled: type: boolean example: true success: type: boolean example: true compileProblem: type: - string - 'null' example: example_value exceptionStackTrace: type: - string - 'null' example: example_value exceptionMessage: type: - string - 'null' example: example_value examples: - line: -1 column: -1 compiled: true success: true compileProblem: exceptionStackTrace: exceptionMessage: ToolingQuery: title: ToolingQuery required: - size - totalSize - done - queryLocator - entityTypeName - records type: object properties: size: type: integer contentEncoding: int32 example: 10 totalSize: type: integer contentEncoding: int32 example: 42 done: type: boolean example: true queryLocator: type: - string - 'null' example: example_value entityTypeName: type: string example: example_value records: type: array items: $ref: '#/components/schemas/Record15' description: '' example: [] examples: - size: 38 totalSize: 38 done: true queryLocator: entityTypeName: ApexClass records: - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p4H00000A4kfqQAB Name: GenericEventPostMock - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p4H00000A4kfrQAB Name: StreamingMonitorController - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p4H00000A4kfsQAB Name: StreamingMonitorControllerTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p58000009UEeJAAW Name: MyController - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p58000009UDoMAAW Name: ProcessingController - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p4H000009PEFIQA4 Name: PrepareSandbox - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p4H00000A0zYxQAJ Name: PrepareSandboxTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqEAAQ Name: MyProfilePageController - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090uh7AAA Name: InTheArea - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wq6AAA Name: SiteLoginController - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wq7AAA Name: SiteLoginControllerTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wq8AAA Name: SiteRegisterController - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wq9AAA Name: SiteRegisterControllerTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqAAAQ Name: ChangePasswordController - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqBAAQ Name: ChangePasswordControllerTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqCAAQ Name: ForgotPasswordController - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqDAAQ Name: ForgotPasswordControllerTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqFAAQ Name: MyProfilePageControllerTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqOAAQ Name: CommunitiesLoginController - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqPAAQ Name: CommunitiesLoginControllerTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqQAAQ Name: CommunitiesLandingController - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqRAAQ Name: CommunitiesLandingControllerTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqSAAQ Name: CommunitiesSelfRegController - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqTAAQ Name: CommunitiesSelfRegControllerTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqUAAQ Name: CommunitiesSelfRegConfirmController - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqVAAQ Name: CommunitiesSelfRegConfirmControllerTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqcAAA Name: LightningSelfRegisterController - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqdAAA Name: LightningForgotPasswordController - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqeAAA Name: LightningLoginFormController - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqfAAA Name: LightningLoginFormControllerTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqgAAA Name: LightningForgotPasswordControllerTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqhAAA Name: LightningSelfRegisterControllerTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wrUAAQ Name: SigninController - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090sf4AAA Name: trailheadAPIChallenge - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p4H00000ANdnqQAD Name: AccountTriggerHelperTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p4H00000ANdnpQAD Name: AccountTriggerHelper - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p4H000009aIwvQAE Name: MicrobatchSelfRegControllerTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p4H000009aIwuQAE Name: MicrobatchSelfRegController ToolingRunTestsSync: title: ToolingRunTestsSync required: - apexLogId - codeCoverage - codeCoverageWarnings - failures - flowCoverage - flowCoverageWarnings - numFailures - numTestsRun - successes - totalTime type: object properties: apexLogId: type: string example: '500123' codeCoverage: type: array items: $ref: '#/components/schemas/CodeCoverage' description: '' example: [] codeCoverageWarnings: type: array items: $ref: '#/components/schemas/CodeCoverageWarning' description: '' example: [] failures: type: array items: type: string description: '' example: [] flowCoverage: type: array items: type: string description: '' example: [] flowCoverageWarnings: type: array items: type: string description: '' example: [] numFailures: type: integer contentEncoding: int32 example: 10 numTestsRun: type: integer contentEncoding: int32 example: 10 successes: type: array items: $ref: '#/components/schemas/Success1' description: '' example: [] totalTime: type: integer contentEncoding: int32 example: 1700000000000 examples: - apexLogId: 07L4H00000SpGroUAF codeCoverage: - id: 01q4H000000WjD8QAK locationsNotCovered: - {} - {} name: StateTrigger namespace: numLocations: 2 numLocationsNotCovered: 2 type: Trigger - id: 01q58000000RLTyAAO locationsNotCovered: - {} - {} - {} name: RestrictContactByName namespace: numLocations: 3 numLocationsNotCovered: 3 type: Trigger - id: 01q58000000RLBhAAO locationsNotCovered: - {} - {} - {} - {} - {} - {} name: ClosedOpportunityTrigger namespace: numLocations: 6 numLocationsNotCovered: 6 type: Trigger - id: 01p4H000009PEFIQA4 locationsNotCovered: - {} - {} name: PrepareSandbox namespace: numLocations: 22 numLocationsNotCovered: 2 type: Class codeCoverageWarnings: - id: 01q4H000000WjD8QAK message: >- Test coverage of selected Apex Trigger is 0%, at least 1% test coverage is required name: StateTrigger namespace: - id: 01q58000000RLTyAAO message: >- Test coverage of selected Apex Trigger is 0%, at least 1% test coverage is required name: RestrictContactByName namespace: - id: 01q58000000RLBhAAO message: >- Test coverage of selected Apex Trigger is 0%, at least 1% test coverage is required name: ClosedOpportunityTrigger namespace: - id: 01q4H000000WjD8QAK message: >- Average test coverage across all Apex Classes and Triggers is 60%, at least 75% test coverage is required. name: namespace: '' failures: [] flowCoverage: [] flowCoverageWarnings: [] numFailures: 0 numTestsRun: 1 successes: - id: 01p4H00000A0zYxQAJ methodName: runApexClass_should_work name: PrepareSandboxTest namespace: seeAllData: false time: 1088 totalTime: 1261 CodeCoverage: title: CodeCoverage required: - id - locationsNotCovered - name - namespace - numLocations - numLocationsNotCovered - type type: object properties: id: type: string example: abc123 locationsNotCovered: type: array items: type: object description: '' example: [] name: type: string example: Example Title namespace: type: - string - 'null' example: example_value numLocations: type: integer contentEncoding: int32 example: 10 numLocationsNotCovered: type: integer contentEncoding: int32 example: 10 type: type: string example: example_value examples: - id: 01q4H000000WjD8QAK locationsNotCovered: - {} - {} name: StateTrigger namespace: numLocations: 2 numLocationsNotCovered: 2 type: Trigger CodeCoverageWarning: title: CodeCoverageWarning required: - id - message - name - namespace type: object properties: id: type: string example: abc123 message: type: string example: example_value name: type: - string - 'null' example: Example Title namespace: type: - string - 'null' example: example_value examples: - id: 01q4H000000WjD8QAK message: >- Test coverage of selected Apex Trigger is 0%, at least 1% test coverage is required name: StateTrigger namespace: Success1: title: Success1 required: - id - methodName - name - namespace - seeAllData - time type: object properties: id: type: string example: abc123 methodName: type: string example: example_value name: type: string example: Example Title namespace: type: - string - 'null' example: example_value seeAllData: type: boolean example: true time: type: integer contentEncoding: int32 example: 1700000000000 examples: - id: 01p4H00000A0zYxQAJ methodName: runApexClass_should_work name: PrepareSandboxTest namespace: seeAllData: false time: 1088 ToolingSearch: title: ToolingSearch required: - searchRecords type: object properties: searchRecords: type: array items: $ref: '#/components/schemas/SearchRecord' description: '' example: [] examples: - searchRecords: - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqcAAA Name: LightningSelfRegisterController - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqhAAA Name: LightningSelfRegisterControllerTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wq9AAA Name: SiteRegisterControllerTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p4H00000A0zYxQAJ Name: PrepareSandboxTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqTAAQ Name: CommunitiesSelfRegControllerTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p4H000009aIwvQAE Name: MicrobatchSelfRegControllerTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p4H000009PEFIQA4 Name: PrepareSandbox - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqRAAQ Name: CommunitiesLandingControllerTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqFAAQ Name: MyProfilePageControllerTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqDAAQ Name: ForgotPasswordControllerTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wq7AAA Name: SiteLoginControllerTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p4H00000ANdnqQAD Name: AccountTriggerHelperTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqgAAA Name: LightningForgotPasswordControllerTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqfAAA Name: LightningLoginFormControllerTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqeAAA Name: LightningLoginFormController - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqVAAQ Name: CommunitiesSelfRegConfirmControllerTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqPAAQ Name: CommunitiesLoginControllerTest - attributes: type: ApexClass url: >- /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqBAAQ Name: ChangePasswordControllerTest SearchRecord: title: SearchRecord required: - attributes - Name type: object properties: attributes: $ref: '#/components/schemas/Attributes4' Name: type: string example: Example Title examples: - attributes: type: ApexClass url: /services/data/v59.0/tooling/sobjects/ApexClass/01p580000090wqcAAA Name: LightningSelfRegisterController GetToolingDescribe: title: GetToolingDescribe required: - encoding - maxBatchSize - sobjects type: object properties: encoding: type: string example: example_value maxBatchSize: type: integer contentEncoding: int32 example: 10 sobjects: type: array items: $ref: '#/components/schemas/Sobjects2' description: '' example: [] examples: - encoding: UTF-8 maxBatchSize: 200 sobjects: - activateable: false associateEntityType: associateParentEntity: createable: true custom: false customSetting: false deepCloneable: false deletable: true deprecatedAndHidden: false feedEnabled: false hasSubtypes: false isInterface: false isSubtype: false keyPrefix: 0Pp label: AI Application labelPlural: AI Applications layoutable: false mergeable: false mruEnabled: false name: AIApplication queryable: true replicateable: false retrieveable: true searchable: false triggerable: false undeletable: false updateable: true urls: rowTemplate: /services/data/v59.0/tooling/sobjects/AIApplication/{ID} describe: /services/data/v59.0/tooling/sobjects/AIApplication/describe sobject: /services/data/v59.0/tooling/sobjects/AIApplication - activateable: false associateEntityType: associateParentEntity: createable: true custom: false customSetting: false deepCloneable: false deletable: true deprecatedAndHidden: false feedEnabled: false hasSubtypes: false isInterface: false isSubtype: false keyPrefix: 6S9 label: AI Application config labelPlural: AI Application configs layoutable: false mergeable: false mruEnabled: false name: AIApplicationConfig queryable: true replicateable: false retrieveable: true searchable: false triggerable: false undeletable: false updateable: true urls: rowTemplate: /services/data/v59.0/tooling/sobjects/AIApplicationConfig/{ID} describe: >- /services/data/v59.0/tooling/sobjects/AIApplicationConfig/describe sobject: /services/data/v59.0/tooling/sobjects/AIApplicationConfig - activateable: false associateEntityType: associateParentEntity: createable: true custom: false customSetting: false deepCloneable: false deletable: true deprecatedAndHidden: false feedEnabled: false hasSubtypes: false isInterface: false isSubtype: false keyPrefix: 0HE label: Entity labelPlural: Entity layoutable: false mergeable: false mruEnabled: false name: AIReplyRecommendationsSettings queryable: true replicateable: false retrieveable: true searchable: false triggerable: false undeletable: false updateable: true urls: rowTemplate: >- /services/data/v59.0/tooling/sobjects/AIReplyRecommendationsSettings/{ID} describe: >- /services/data/v59.0/tooling/sobjects/AIReplyRecommendationsSettings/describe sobject: >- /services/data/v59.0/tooling/sobjects/AIReplyRecommendationsSettings - activateable: false associateEntityType: associateParentEntity: createable: false custom: false customSetting: false deepCloneable: false deletable: false deprecatedAndHidden: false feedEnabled: false hasSubtypes: false isInterface: false isSubtype: false keyPrefix: 0Dx label: Access Control Policy labelPlural: Access Control Policies layoutable: false mergeable: false mruEnabled: false name: AccessControlPolicy queryable: true replicateable: false retrieveable: true searchable: false triggerable: true undeletable: false updateable: false urls: rowTemplate: /services/data/v59.0/tooling/sobjects/AccessControlPolicy/{ID} describe: >- /services/data/v59.0/tooling/sobjects/AccessControlPolicy/describe sobject: /services/data/v59.0/tooling/sobjects/AccessControlPolicy - activateable: false associateEntityType: associateParentEntity: createable: true custom: false customSetting: false deepCloneable: false deletable: true deprecatedAndHidden: false feedEnabled: false hasSubtypes: false isInterface: false isSubtype: false keyPrefix: 0HE label: Entity labelPlural: Entity layoutable: false mergeable: false mruEnabled: false name: AccountIntelligenceSettings queryable: true replicateable: false retrieveable: true searchable: false triggerable: false undeletable: false updateable: true urls: rowTemplate: >- /services/data/v59.0/tooling/sobjects/AccountIntelligenceSettings/{ID} describe: >- /services/data/v59.0/tooling/sobjects/AccountIntelligenceSettings/describe sobject: >- /services/data/v59.0/tooling/sobjects/AccountIntelligenceSettings - activateable: false associateEntityType: associateParentEntity: createable: true custom: false customSetting: false deepCloneable: false deletable: true deprecatedAndHidden: false feedEnabled: false hasSubtypes: false isInterface: false isSubtype: false keyPrefix: 0HE label: Entity labelPlural: Entity layoutable: false mergeable: false mruEnabled: false name: AccountSettings queryable: true replicateable: false retrieveable: true searchable: false triggerable: false undeletable: false updateable: true urls: rowTemplate: /services/data/v59.0/tooling/sobjects/AccountSettings/{ID} describe: /services/data/v59.0/tooling/sobjects/AccountSettings/describe sobject: /services/data/v59.0/tooling/sobjects/AccountSettings - activateable: false associateEntityType: associateParentEntity: createable: true custom: false customSetting: false deepCloneable: false deletable: true deprecatedAndHidden: false feedEnabled: false hasSubtypes: false isInterface: false isSubtype: false keyPrefix: 11i label: ActionLauncherItemDef labelPlural: ActionLauncherItemDefs layoutable: false mergeable: false mruEnabled: false name: ActionLauncherItemDef queryable: true replicateable: false retrieveable: true searchable: false triggerable: false undeletable: false updateable: true urls: rowTemplate: >- /services/data/v59.0/tooling/sobjects/ActionLauncherItemDef/{ID} describe: >- /services/data/v59.0/tooling/sobjects/ActionLauncherItemDef/describe sobject: /services/data/v59.0/tooling/sobjects/ActionLauncherItemDef - activateable: false associateEntityType: associateParentEntity: createable: true custom: false customSetting: false deepCloneable: false deletable: true deprecatedAndHidden: false feedEnabled: false hasSubtypes: false isInterface: false isSubtype: false keyPrefix: 0HE label: Entity labelPlural: Entity layoutable: false mergeable: false mruEnabled: false name: ActionsSettings queryable: true replicateable: false retrieveable: true searchable: false triggerable: false undeletable: false updateable: true urls: rowTemplate: /services/data/v59.0/tooling/sobjects/ActionsSettings/{ID} describe: /services/data/v59.0/tooling/sobjects/ActionsSettings/describe sobject: /services/data/v59.0/tooling/sobjects/ActionsSettings - activateable: false associateEntityType: associateParentEntity: createable: true custom: false customSetting: false deepCloneable: false deletable: true deprecatedAndHidden: false feedEnabled: false hasSubtypes: false isInterface: false isSubtype: false keyPrefix: 0HE label: Entity labelPlural: Entity layoutable: false mergeable: false mruEnabled: false name: ActivitiesSettings queryable: true replicateable: false retrieveable: true searchable: false triggerable: false undeletable: false updateable: true urls: rowTemplate: /services/data/v59.0/tooling/sobjects/ActivitiesSettings/{ID} describe: >- /services/data/v59.0/tooling/sobjects/ActivitiesSettings/describe sobject: /services/data/v59.0/tooling/sobjects/ActivitiesSettings Sobjects2: title: Sobjects2 required: - activateable - associateEntityType - associateParentEntity - createable - custom - customSetting - deepCloneable - deletable - deprecatedAndHidden - feedEnabled - hasSubtypes - isInterface - isSubtype - keyPrefix - label - labelPlural - layoutable - mergeable - mruEnabled - name - queryable - replicateable - retrieveable - searchable - triggerable - undeletable - updateable - urls type: object properties: activateable: type: boolean example: true associateEntityType: type: - string - 'null' example: example_value associateParentEntity: type: - string - 'null' example: example_value createable: type: boolean example: true custom: type: boolean example: true customSetting: type: boolean example: true deepCloneable: type: boolean example: true deletable: type: boolean example: true deprecatedAndHidden: type: boolean example: true feedEnabled: type: boolean example: true hasSubtypes: type: boolean example: true isInterface: type: boolean example: true isSubtype: type: boolean example: true keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value layoutable: type: boolean example: true mergeable: type: boolean example: true mruEnabled: type: boolean example: true name: type: string example: Example Title queryable: type: boolean example: true replicateable: type: boolean example: true retrieveable: type: boolean example: true searchable: type: boolean example: true triggerable: type: boolean example: true undeletable: type: boolean example: true updateable: type: boolean example: true urls: $ref: '#/components/schemas/Urls2' examples: - activateable: false associateEntityType: associateParentEntity: createable: true custom: false customSetting: false deepCloneable: false deletable: true deprecatedAndHidden: false feedEnabled: false hasSubtypes: false isInterface: false isSubtype: false keyPrefix: 0Pp label: AI Application labelPlural: AI Applications layoutable: false mergeable: false mruEnabled: false name: AIApplication queryable: true replicateable: false retrieveable: true searchable: false triggerable: false undeletable: false updateable: true urls: rowTemplate: /services/data/v59.0/tooling/sobjects/AIApplication/{ID} describe: /services/data/v59.0/tooling/sobjects/AIApplication/describe sobject: /services/data/v59.0/tooling/sobjects/AIApplication GetToolingMetadataSObject: title: GetToolingMetadataSObject required: - objectDescribe - recentItems type: object properties: objectDescribe: $ref: '#/components/schemas/ObjectDescribe1' recentItems: type: array items: type: string description: '' example: [] examples: - objectDescribe: activateable: false associateEntityType: associateParentEntity: createable: true custom: false customSetting: false deepCloneable: false deletable: true deprecatedAndHidden: false feedEnabled: false hasSubtypes: false isInterface: false isSubtype: false keyPrefix: 01p label: Apex Class labelPlural: Apex Classes layoutable: true mergeable: false mruEnabled: true name: ApexClass queryable: true replicateable: true retrieveable: true searchable: true triggerable: false undeletable: false updateable: true urls: compactLayouts: >- /services/data/v59.0/tooling/sobjects/ApexClass/describe/compactLayouts rowTemplate: /services/data/v59.0/tooling/sobjects/ApexClass/{ID} describe: /services/data/v59.0/tooling/sobjects/ApexClass/describe layouts: /services/data/v59.0/tooling/sobjects/ApexClass/describe/layouts sobject: /services/data/v59.0/tooling/sobjects/ApexClass recentItems: [] ObjectDescribe1: title: ObjectDescribe1 required: - activateable - associateEntityType - associateParentEntity - createable - custom - customSetting - deepCloneable - deletable - deprecatedAndHidden - feedEnabled - hasSubtypes - isInterface - isSubtype - keyPrefix - label - labelPlural - layoutable - mergeable - mruEnabled - name - queryable - replicateable - retrieveable - searchable - triggerable - undeletable - updateable - urls type: object properties: activateable: type: boolean example: true associateEntityType: type: - string - 'null' example: example_value associateParentEntity: type: - string - 'null' example: example_value createable: type: boolean example: true custom: type: boolean example: true customSetting: type: boolean example: true deepCloneable: type: boolean example: true deletable: type: boolean example: true deprecatedAndHidden: type: boolean example: true feedEnabled: type: boolean example: true hasSubtypes: type: boolean example: true isInterface: type: boolean example: true isSubtype: type: boolean example: true keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value layoutable: type: boolean example: true mergeable: type: boolean example: true mruEnabled: type: boolean example: true name: type: string example: Example Title queryable: type: boolean example: true replicateable: type: boolean example: true retrieveable: type: boolean example: true searchable: type: boolean example: true triggerable: type: boolean example: true undeletable: type: boolean example: true updateable: type: boolean example: true urls: $ref: '#/components/schemas/Urls7' examples: - activateable: false associateEntityType: associateParentEntity: createable: true custom: false customSetting: false deepCloneable: false deletable: true deprecatedAndHidden: false feedEnabled: false hasSubtypes: false isInterface: false isSubtype: false keyPrefix: 01p label: Apex Class labelPlural: Apex Classes layoutable: true mergeable: false mruEnabled: true name: ApexClass queryable: true replicateable: true retrieveable: true searchable: true triggerable: false undeletable: false updateable: true urls: compactLayouts: >- /services/data/v59.0/tooling/sobjects/ApexClass/describe/compactLayouts rowTemplate: /services/data/v59.0/tooling/sobjects/ApexClass/{ID} describe: /services/data/v59.0/tooling/sobjects/ApexClass/describe layouts: /services/data/v59.0/tooling/sobjects/ApexClass/describe/layouts sobject: /services/data/v59.0/tooling/sobjects/ApexClass Urls7: title: Urls7 required: - compactLayouts - rowTemplate - describe - layouts - sobject type: object properties: compactLayouts: type: string example: example_value rowTemplate: type: string example: example_value describe: type: string example: example_value layouts: type: string example: example_value sobject: type: string example: example_value examples: - compactLayouts: >- /services/data/v59.0/tooling/sobjects/ApexClass/describe/compactLayouts rowTemplate: /services/data/v59.0/tooling/sobjects/ApexClass/{ID} describe: /services/data/v59.0/tooling/sobjects/ApexClass/describe layouts: /services/data/v59.0/tooling/sobjects/ApexClass/describe/layouts sobject: /services/data/v59.0/tooling/sobjects/ApexClass GetToolingDescribeSObject: title: GetToolingDescribeSObject required: - actionOverrides - activateable - associateEntityType - associateParentEntity - childRelationships - compactLayoutable - createable - custom - customSetting - deepCloneable - defaultImplementation - deletable - deprecatedAndHidden - extendedBy - extendsInterfaces - feedEnabled - fields - hasSubtypes - implementedBy - implementsInterfaces - isInterface - isSubtype - keyPrefix - label - labelPlural - layoutable - listviewable - lookupLayoutable - mergeable - mruEnabled - name - namedLayoutInfos - networkScopeFieldName - queryable - recordTypeInfos - replicateable - retrieveable - searchLayoutable - searchable - sobjectDescribeOption - supportedScopes - triggerable - undeletable - updateable - urls type: object properties: actionOverrides: type: array items: type: string description: '' example: [] activateable: type: boolean example: true associateEntityType: type: - string - 'null' example: example_value associateParentEntity: type: - string - 'null' example: example_value childRelationships: type: array items: $ref: '#/components/schemas/ChildRelationship' description: '' example: [] compactLayoutable: type: boolean example: true createable: type: boolean example: true custom: type: boolean example: true customSetting: type: boolean example: true deepCloneable: type: boolean example: true defaultImplementation: type: - string - 'null' example: example_value deletable: type: boolean example: true deprecatedAndHidden: type: boolean example: true extendedBy: type: - string - 'null' example: example_value extendsInterfaces: type: - string - 'null' example: example_value feedEnabled: type: boolean example: true fields: type: array items: $ref: '#/components/schemas/Fields2' description: '' example: [] hasSubtypes: type: boolean example: true implementedBy: type: - string - 'null' example: example_value implementsInterfaces: type: - string - 'null' example: example_value isInterface: type: boolean example: true isSubtype: type: boolean example: true keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value layoutable: type: boolean example: true listviewable: type: - string - 'null' example: example_value lookupLayoutable: type: - string - 'null' example: example_value mergeable: type: boolean example: true mruEnabled: type: boolean example: true name: type: string example: Example Title namedLayoutInfos: type: array items: type: string description: '' example: [] networkScopeFieldName: type: - string - 'null' example: example_value queryable: type: boolean example: true recordTypeInfos: type: array items: type: string description: '' example: [] replicateable: type: boolean example: true retrieveable: type: boolean example: true searchLayoutable: type: boolean example: true searchable: type: boolean example: true sobjectDescribeOption: type: string example: example_value supportedScopes: type: array items: $ref: '#/components/schemas/SupportedScope' description: '' example: [] triggerable: type: boolean example: true undeletable: type: boolean example: true updateable: type: boolean example: true urls: $ref: '#/components/schemas/Urls8' Fields2: title: Fields2 required: - aggregatable - aiPredictionField - autoNumber - byteLength - calculated - calculatedFormula - cascadeDelete - caseSensitive - compoundFieldName - controllerName - createable - custom - defaultValue - defaultValueFormula - defaultedOnCreate - dependentPicklist - deprecatedAndHidden - digits - displayLocationInDecimal - encrypted - externalId - extraTypeInfo - filterable - filteredLookupInfo - formulaTreatNullNumberAsZero - groupable - highScaleNumber - htmlFormatted - idLookup - inlineHelpText - label - length - mask - maskType - name - nameField - namePointing - nillable - permissionable - picklistValues - polymorphicForeignKey - precision - queryByDistance - referenceTargetField - referenceTo - relationshipName - relationshipOrder - restrictedDelete - restrictedPicklist - scale - searchPrefilterable - soapType - sortable - type - unique - updateable - writeRequiresMasterRead type: object properties: aggregatable: type: boolean example: true aiPredictionField: type: boolean example: true autoNumber: type: boolean example: true byteLength: type: integer contentEncoding: int32 example: 10 calculated: type: boolean example: true calculatedFormula: type: - string - 'null' example: example_value cascadeDelete: type: boolean example: true caseSensitive: type: boolean example: true compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value createable: type: boolean example: true custom: type: boolean example: true defaultValue: oneOf: - type: - string - 'null' - type: boolean - {} example: example_value defaultValueFormula: type: - string - 'null' example: example_value defaultedOnCreate: type: boolean example: true dependentPicklist: type: boolean example: true deprecatedAndHidden: type: boolean example: true digits: type: integer contentEncoding: int32 example: 10 displayLocationInDecimal: type: boolean example: true encrypted: type: boolean example: true externalId: type: boolean example: '500123' extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value formulaTreatNullNumberAsZero: type: boolean example: true groupable: type: boolean example: true highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true idLookup: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 mask: type: - string - 'null' example: example_value maskType: type: - string - 'null' example: example_value name: type: string example: Example Title nameField: type: boolean example: true namePointing: type: boolean example: true nillable: type: boolean example: true permissionable: type: boolean example: true picklistValues: type: array items: oneOf: - $ref: '#/components/schemas/PicklistValue' - allOf: - $ref: '#/components/schemas/PicklistValue31' - examples: - active: true defaultValue: false label: Inactive validFor: value: Inactive description: '' example: [] polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 queryByDistance: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceTo: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value relationshipOrder: type: - string - 'null' example: example_value restrictedDelete: type: boolean example: true restrictedPicklist: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true soapType: type: string example: example_value sortable: type: boolean example: true type: type: string example: example_value unique: type: boolean example: true updateable: type: boolean example: true writeRequiresMasterRead: type: boolean example: true Urls8: title: Urls8 required: - compactLayouts - rowTemplate - uiDetailTemplate - uiEditTemplate - describe - uiNewRecord - layouts - sobject type: object properties: compactLayouts: type: string example: example_value rowTemplate: type: string example: example_value uiDetailTemplate: type: string example: example_value uiEditTemplate: type: string example: example_value describe: type: string example: example_value uiNewRecord: type: string example: example_value layouts: type: string example: example_value sobject: type: string example: example_value examples: - compactLayouts: >- /services/data/v59.0/tooling/sobjects/ApexClass/describe/compactLayouts rowTemplate: /services/data/v59.0/tooling/sobjects/ApexClass/{ID} uiDetailTemplate: https://pozil-dev-ed.my.salesforce.com/{ID} uiEditTemplate: https://pozil-dev-ed.my.salesforce.com/{ID}/e describe: /services/data/v59.0/tooling/sobjects/ApexClass/describe uiNewRecord: https://pozil-dev-ed.my.salesforce.com/01p/e layouts: /services/data/v59.0/tooling/sobjects/ApexClass/describe/layouts sobject: /services/data/v59.0/tooling/sobjects/ApexClass PostToolingSObjectRequest: title: PostToolingSObjectRequest required: - Name type: object properties: Name: type: string example: Example Title examples: - Name: test AccessRecords: title: AccessRecords required: - attributes - Id - NamespacePrefix - Name - ApiVersion - Status - IsValid - BodyCrc - Body - LengthWithoutComments - CreatedDate - CreatedById - LastModifiedDate - LastModifiedById - SystemModstamp - ManageableState - SymbolTable - Metadata - FullName type: object properties: attributes: $ref: '#/components/schemas/Attributes4' Id: type: string example: abc123 NamespacePrefix: type: string example: example_value Name: type: string example: Example Title ApiVersion: type: integer contentEncoding: int32 example: 10 Status: type: string example: example_value IsValid: type: boolean example: '500123' BodyCrc: type: integer contentEncoding: int32 example: 10 Body: type: string example: example_value LengthWithoutComments: type: integer contentEncoding: int32 example: 10 CreatedDate: type: string example: example_value CreatedById: type: string example: '500123' LastModifiedDate: type: string example: example_value LastModifiedById: type: string example: '500123' SystemModstamp: type: string example: example_value ManageableState: type: string example: example_value SymbolTable: $ref: '#/components/schemas/SymbolTable' Metadata: $ref: '#/components/schemas/Metadata17' FullName: type: string example: example_value examples: - attributes: type: ApexClass url: /services/data/v59.0/tooling/sobjects/ApexClass/01p4H00000A4kfqQAB Id: 01p4H00000A4kfqQAB NamespacePrefix: smon Name: GenericEventPostMock ApiVersion: 59 Status: Active IsValid: false BodyCrc: -1 Body: > /* This file is generated and isn't the actual source code for this managed global class. This read-only file shows the class's global constructors, methods, variables, and properties. To enable code to compile, all methods return null. */ global class GenericEventPostMock implements System.HttpCalloutMock { global GenericEventPostMock(Integer statusCode) { } global System.HttpResponse respond(System.HttpRequest req) { return null; } } LengthWithoutComments: -1 CreatedDate: 2023-11-20T08:03:40.000+0000 CreatedById: 00558000000yFyDAAU LastModifiedDate: 2023-11-20T08:03:40.000+0000 LastModifiedById: 00558000000yFyDAAU SystemModstamp: 2023-11-26T14:10:11.000+0000 ManageableState: installed SymbolTable: constructors: - annotations: [] location: column: 12 line: 5 modifiers: - global name: GenericEventPostMock parameters: - name: statusCode type: Integer references: [] type: externalReferences: [] id: smon.GenericEventPostMock innerClasses: [] interfaces: - System.HttpCalloutMock key: smon.GenericEventPostMock methods: - annotations: [] location: column: 25 line: 9 modifiers: - global name: respond parameters: - name: req type: System.HttpRequest references: [] returnType: System.HttpResponse type: name: GenericEventPostMock namespace: smon parentClass: '' properties: [] tableDeclaration: annotations: - name: IsTest location: column: 14 line: 2 modifiers: - testMethod - global name: GenericEventPostMock references: [] type: smon.GenericEventPostMock variables: [] Metadata: apiVersion: 59 packageVersions: [] status: Active urls: FullName: smon__GenericEventPostMock SymbolTable: title: SymbolTable required: - constructors - externalReferences - id - innerClasses - interfaces - key - methods - name - namespace - parentClass - properties - tableDeclaration - variables type: object properties: constructors: type: array items: $ref: '#/components/schemas/Constructor' description: '' example: [] externalReferences: type: array items: type: string description: '' example: [] id: type: string example: abc123 innerClasses: type: array items: type: string description: '' example: [] interfaces: type: array items: type: string description: '' example: [] key: type: string example: example_value methods: type: array items: $ref: '#/components/schemas/Method' description: '' example: [] name: type: string example: Example Title namespace: type: string example: example_value parentClass: type: string example: example_value properties: type: array items: type: string description: '' example: [] tableDeclaration: $ref: '#/components/schemas/TableDeclaration' variables: type: array items: type: string description: '' example: [] examples: - constructors: - annotations: [] location: column: 12 line: 5 modifiers: - global name: GenericEventPostMock parameters: - name: statusCode type: Integer references: [] type: externalReferences: [] id: smon.GenericEventPostMock innerClasses: [] interfaces: - System.HttpCalloutMock key: smon.GenericEventPostMock methods: - annotations: [] location: column: 25 line: 9 modifiers: - global name: respond parameters: - name: req type: System.HttpRequest references: [] returnType: System.HttpResponse type: name: GenericEventPostMock namespace: smon parentClass: '' properties: [] tableDeclaration: annotations: - name: IsTest location: column: 14 line: 2 modifiers: - testMethod - global name: GenericEventPostMock references: [] type: smon.GenericEventPostMock variables: [] Constructor: title: Constructor required: - annotations - location - modifiers - name - parameters - references - type type: object properties: annotations: type: array items: type: string description: '' example: [] location: $ref: '#/components/schemas/Location' modifiers: type: array items: type: string description: '' example: [] name: type: string example: Example Title parameters: type: array items: $ref: '#/components/schemas/Parameter5' description: '' example: [] references: type: array items: type: string description: '' example: [] type: type: - string - 'null' example: example_value examples: - annotations: [] location: column: 12 line: 5 modifiers: - global name: GenericEventPostMock parameters: - name: statusCode type: Integer references: [] type: Location: title: Location required: - column - line type: object properties: column: type: integer contentEncoding: int32 example: 10 line: type: integer contentEncoding: int32 example: 10 examples: - column: 12 line: 5 Parameter5: title: Parameter5 required: - name - type type: object properties: name: type: string example: Example Title type: type: string example: example_value examples: - name: statusCode type: Integer Method: title: Method required: - annotations - location - modifiers - name - parameters - references - returnType - type type: object properties: annotations: type: array items: type: string description: '' example: [] location: $ref: '#/components/schemas/Location' modifiers: type: array items: type: string description: '' example: [] name: type: string example: Example Title parameters: type: array items: $ref: '#/components/schemas/Parameter5' description: '' example: [] references: type: array items: type: string description: '' example: [] returnType: type: string example: example_value type: type: - string - 'null' example: example_value examples: - annotations: [] location: column: 25 line: 9 modifiers: - global name: respond parameters: - name: req type: System.HttpRequest references: [] returnType: System.HttpResponse type: TableDeclaration: title: TableDeclaration required: - annotations - location - modifiers - name - references - type type: object properties: annotations: type: array items: $ref: '#/components/schemas/Annotation' description: '' example: [] location: $ref: '#/components/schemas/Location' modifiers: type: array items: type: string description: '' example: [] name: type: string example: Example Title references: type: array items: type: string description: '' example: [] type: type: string example: example_value examples: - annotations: - name: IsTest location: column: 14 line: 2 modifiers: - testMethod - global name: GenericEventPostMock references: [] type: smon.GenericEventPostMock Annotation: title: Annotation required: - name type: object properties: name: type: string example: Example Title examples: - name: IsTest Metadata17: title: Metadata17 required: - apiVersion - packageVersions - status - urls type: object properties: apiVersion: type: integer contentEncoding: int32 example: 10 packageVersions: type: array items: type: string description: '' example: [] status: type: string example: example_value urls: type: - string - 'null' example: https://www.example.com examples: - apiVersion: 59 packageVersions: [] status: Active urls: GetRecordDataandObjectMetadata: title: GetRecordDataandObjectMetadata required: - eTag - layoutUserStates - layouts - objectInfos - records type: object properties: eTag: type: string example: example_value layoutUserStates: $ref: '#/components/schemas/LayoutUserStates' layouts: $ref: '#/components/schemas/Layouts' objectInfos: $ref: '#/components/schemas/ObjectInfos' records: $ref: '#/components/schemas/Records' LayoutUserStates: title: LayoutUserStates required: - 00hB0000000JrBRIA0 type: object properties: 00hB0000000JrBRIA0: $ref: '#/components/schemas/00hB0000000JrBRIA0' examples: - 00hB0000000JrBRIA0: id: 00hB0000000JrBRIA0 sectionUserStates: 01BB0000002rP3IMAU: collapsed: false id: 01BB0000002rP3IMAU 01BB0000002rP3JMAU: collapsed: false id: 01BB0000002rP3JMAU 01BB0000002rP3LMAU: collapsed: false id: 01BB0000002rP3LMAU 01BB0000002rP3MMAU: collapsed: false id: 01BB0000002rP3MMAU 01BB0000002rP3NMAU: collapsed: false id: 01BB0000002rP3NMAU 00hB0000000JrBRIA0: title: 00hB0000000JrBRIA0 required: - id - sectionUserStates type: object properties: id: type: string example: abc123 sectionUserStates: $ref: '#/components/schemas/SectionUserStates' examples: - id: 00hB0000000JrBRIA0 sectionUserStates: 01BB0000002rP3IMAU: collapsed: false id: 01BB0000002rP3IMAU 01BB0000002rP3JMAU: collapsed: false id: 01BB0000002rP3JMAU 01BB0000002rP3LMAU: collapsed: false id: 01BB0000002rP3LMAU 01BB0000002rP3MMAU: collapsed: false id: 01BB0000002rP3MMAU 01BB0000002rP3NMAU: collapsed: false id: 01BB0000002rP3NMAU SectionUserStates: title: SectionUserStates required: - 01BB0000002rP3IMAU - 01BB0000002rP3JMAU - 01BB0000002rP3LMAU - 01BB0000002rP3MMAU - 01BB0000002rP3NMAU type: object properties: 01BB0000002rP3IMAU: $ref: '#/components/schemas/01BB0000002rP3IMAU' 01BB0000002rP3JMAU: $ref: '#/components/schemas/01BB0000002rP3JMAU' 01BB0000002rP3LMAU: $ref: '#/components/schemas/01BB0000002rP3LMAU' 01BB0000002rP3MMAU: $ref: '#/components/schemas/01BB0000002rP3MMAU' 01BB0000002rP3NMAU: $ref: '#/components/schemas/01BB0000002rP3NMAU' examples: - 01BB0000002rP3IMAU: collapsed: false id: 01BB0000002rP3IMAU 01BB0000002rP3JMAU: collapsed: false id: 01BB0000002rP3JMAU 01BB0000002rP3LMAU: collapsed: false id: 01BB0000002rP3LMAU 01BB0000002rP3MMAU: collapsed: false id: 01BB0000002rP3MMAU 01BB0000002rP3NMAU: collapsed: false id: 01BB0000002rP3NMAU 01BB0000002rP3IMAU: title: 01BB0000002rP3IMAU required: - collapsed - id type: object properties: collapsed: type: boolean example: true id: type: string example: abc123 examples: - collapsed: false id: 01BB0000002rP3IMAU 01BB0000002rP3JMAU: title: 01BB0000002rP3JMAU required: - collapsed - id type: object properties: collapsed: type: boolean example: true id: type: string example: abc123 examples: - collapsed: false id: 01BB0000002rP3JMAU 01BB0000002rP3LMAU: title: 01BB0000002rP3LMAU required: - collapsed - id type: object properties: collapsed: type: boolean example: true id: type: string example: abc123 examples: - collapsed: false id: 01BB0000002rP3LMAU 01BB0000002rP3MMAU: title: 01BB0000002rP3MMAU required: - collapsed - id type: object properties: collapsed: type: boolean example: true id: type: string example: abc123 examples: - collapsed: false id: 01BB0000002rP3MMAU 01BB0000002rP3NMAU: title: 01BB0000002rP3NMAU required: - collapsed - id type: object properties: collapsed: type: boolean example: true id: type: string example: abc123 examples: - collapsed: false id: 01BB0000002rP3NMAU Layouts: title: Layouts required: - Lead type: object properties: Lead: $ref: '#/components/schemas/Lead' Lead: title: Lead required: - 012000000000000AAA type: object properties: 012000000000000AAA: $ref: '#/components/schemas/012000000000000AAA' 012000000000000AAA: title: 012000000000000AAA required: - Full type: object properties: Full: $ref: '#/components/schemas/Full' Full: title: Full required: - View type: object properties: View: $ref: '#/components/schemas/View' View: title: View required: - eTag - id - layoutType - mode - objectApiName - recordTypeId - saveOptions - sections type: object properties: eTag: type: string example: example_value id: type: string example: abc123 layoutType: type: string example: example_value mode: type: string example: example_value objectApiName: type: string example: example_value recordTypeId: type: string example: '500123' saveOptions: type: array items: type: string description: '' example: [] sections: type: array items: $ref: '#/components/schemas/Section' description: '' example: [] Section: title: Section required: - collapsible - columns - heading - id - layoutRows - rows - useHeading type: object properties: collapsible: type: boolean example: true columns: type: integer contentEncoding: int32 example: 10 heading: type: string example: example_value id: type: string example: abc123 layoutRows: type: array items: $ref: '#/components/schemas/LayoutRow' description: '' example: [] rows: type: integer contentEncoding: int32 example: 10 useHeading: type: boolean example: true LayoutRow: title: LayoutRow required: - layoutItems type: object properties: layoutItems: type: array items: $ref: '#/components/schemas/LayoutItem' description: '' example: [] examples: - layoutItems: - editableForNew: false editableForUpdate: false label: Lead Owner layoutComponents: - apiName: OwnerId componentType: Field label: Owner ID lookupIdApiName: OwnerId required: false sortable: false - editableForNew: true editableForUpdate: true label: Phone layoutComponents: - apiName: Phone componentType: Field label: Phone lookupIdApiName: required: false sortable: false LayoutItem: title: LayoutItem required: - editableForNew - editableForUpdate - label - layoutComponents - lookupIdApiName - required - sortable type: object properties: editableForNew: type: boolean example: true editableForUpdate: type: boolean example: true label: type: string example: Example Title layoutComponents: type: array items: $ref: '#/components/schemas/LayoutComponent' description: '' example: [] lookupIdApiName: type: - string - 'null' example: example_value required: type: boolean example: true sortable: type: boolean example: true examples: - editableForNew: false editableForUpdate: false label: Lead Owner layoutComponents: - apiName: OwnerId componentType: Field label: Owner ID lookupIdApiName: OwnerId required: false sortable: false LayoutComponent: title: LayoutComponent required: - apiName - componentType - label type: object properties: apiName: type: - string - 'null' example: example_value componentType: type: string example: example_value label: type: string example: Example Title examples: - apiName: OwnerId componentType: Field label: Owner ID ObjectInfos: title: ObjectInfos required: - Group - Lead - Name - User type: object properties: Group: $ref: '#/components/schemas/Group1' Lead: $ref: '#/components/schemas/Lead1' Name: $ref: '#/components/schemas/Name18' User: $ref: '#/components/schemas/User7' examples: - Group: apiName: Group associateEntityType: associateParentEntity: childRelationships: - childObjectApiName: GroupMember fieldName: GroupId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: GroupMembers - childObjectApiName: QueueSobject fieldName: QueueId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: QueueSobjects - childObjectApiName: User fieldName: DelegatedApproverId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: DelegatedUsers createable: true custom: false defaultRecordTypeId: deletable: true dependentFields: {} eTag: 7c2efbc357f16e2ce94a601b6724e2e0 feedEnabled: false fields: CreatedById: apiName: CreatedById calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Created By ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: User nameFields: - FirstName - LastName - Name relationshipName: CreatedBy required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false CreatedDate: apiName: CreatedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Created Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false DeveloperName: apiName: DeveloperName calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Developer Name length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true DoesIncludeBosses: apiName: DoesIncludeBosses calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Include Bosses length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true DoesSendEmailToMembers: apiName: DoesSendEmailToMembers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Send Email to Members length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Email: apiName: Email calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Email extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Email length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Id: apiName: Id calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Group ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastModifiedById: apiName: LastModifiedById calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Modified By ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: User nameFields: - FirstName - LastName - Name relationshipName: LastModifiedBy required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastModifiedDate: apiName: LastModifiedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Modified Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Name: apiName: Name calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Name length: 40 nameField: true polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true OwnerId: apiName: OwnerId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Owner ID length: 18 nameField: false polymorphicForeignKey: true precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Organization nameFields: - Name - apiName: User nameFields: - FirstName - LastName - Name relationshipName: Owner required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false RelatedId: apiName: RelatedId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Related ID length: 18 nameField: false polymorphicForeignKey: true precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: User nameFields: - FirstName - LastName - Name - apiName: UserRole nameFields: - Name relationshipName: Related required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: false SystemModstamp: apiName: SystemModstamp calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: System Modstamp length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Type: apiName: Type calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Type length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false keyPrefix: 00G label: Group labelPlural: Group layoutable: false mruEnabled: false nameFields: - Name queryable: true recordTypeInfos: {} searchable: true themeInfo: color: 1B96FF iconUrl: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/t4v35/standard/orders_120.png updateable: true Lead: apiName: Lead associateEntityType: associateParentEntity: childRelationships: - childObjectApiName: AcceptedEventRelation fieldName: RelationId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: AcceptedEventRelations - childObjectApiName: ActivityHistory fieldName: WhoId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ActivityHistories - childObjectApiName: AttachedContentDocument fieldName: LinkedEntityId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: AttachedContentDocuments - childObjectApiName: Attachment fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Attachments - childObjectApiName: CampaignMember fieldName: LeadId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: CampaignMembers - childObjectApiName: CleanInfo fieldName: TargetEntityId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: CleanInfos - childObjectApiName: CollaborationGroupRecord fieldName: RecordId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: RecordAssociatedGroups - childObjectApiName: CombinedAttachment fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: CombinedAttachments - childObjectApiName: ContactRequest fieldName: WhoId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ContactRequests - childObjectApiName: ContentDocumentLink fieldName: LinkedEntityId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ContentDocumentLinks - childObjectApiName: DeclinedEventRelation fieldName: RelationId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: DeclinedEventRelations - childObjectApiName: DuplicateRecordItem fieldName: RecordId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: DuplicateRecordItems - childObjectApiName: EmailMessageRelation fieldName: RelationId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: EmailMessageRelations - childObjectApiName: EmailStatus fieldName: WhoId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: EmailStatuses - childObjectApiName: EntitySubscription fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: FeedSubscriptionsForEntity - childObjectApiName: Event fieldName: WhoId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Events - childObjectApiName: EventRelation fieldName: RelationId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: EventRelations - childObjectApiName: FlowOrchestrationWorkItem fieldName: RelatedRecordId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: FlowOrchestrationWorkItems - childObjectApiName: LeadCleanInfo fieldName: LeadId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: LeadCleanInfos - childObjectApiName: LeadFeed fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Feeds - childObjectApiName: LeadHistory fieldName: LeadId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Histories - childObjectApiName: LeadShare fieldName: LeadId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Shares - childObjectApiName: ListEmailIndividualRecipient fieldName: RecipientId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ListEmailIndividualRecipients - childObjectApiName: ListEmailSentResult fieldName: RecipientId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ListEmailRecipients - childObjectApiName: NetworkActivityAudit fieldName: ParentEntityId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ParentEntities - childObjectApiName: Note fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Notes - childObjectApiName: NoteAndAttachment fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: NotesAndAttachments - childObjectApiName: OpenActivity fieldName: WhoId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: OpenActivities - childObjectApiName: OutgoingEmailRelation fieldName: RelationId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: OutgoingEmailRelations - childObjectApiName: ProcessInstance fieldName: TargetObjectId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ProcessInstances - childObjectApiName: ProcessInstanceHistory fieldName: TargetObjectId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ProcessSteps - childObjectApiName: RecordAction fieldName: RecordId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: RecordActions - childObjectApiName: RecordActionHistory fieldName: ParentRecordId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: RecordActionHistories - childObjectApiName: Task fieldName: WhoId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Tasks - childObjectApiName: TopicAssignment fieldName: EntityId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: TopicAssignments - childObjectApiName: UndecidedEventRelation fieldName: RelationId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: UndecidedEventRelations - childObjectApiName: UserEmailPreferredPerson fieldName: PersonRecordId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: PersonRecord createable: true custom: false defaultRecordTypeId: 012000000000000AAA deletable: true dependentFields: {} eTag: 36ee19b8151a3359e045a269024228ee feedEnabled: true fields: Address: apiName: Address calculated: false compound: true compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Address extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Address length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: false unique: false updateable: false AnnualRevenue: apiName: AnnualRevenue calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Currency extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Annual Revenue length: 0 nameField: false polymorphicForeignKey: false precision: 18 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true City: apiName: City calculated: false compound: false compoundComponentName: City compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: City length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true CleanStatus: apiName: CleanStatus calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Clean Status length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true CloneSourceId: apiName: CloneSourceId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Clone Source length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Company: apiName: Company calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Company length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true CompanyDunsNumber: apiName: CompanyDunsNumber calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Company D-U-N-S Number length: 9 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ConvertedAccountId: apiName: ConvertedAccountId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Converted Account ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Account nameFields: - Name relationshipName: ConvertedAccount required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: false ConvertedContactId: apiName: ConvertedContactId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Converted Contact ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Contact nameFields: - FirstName - LastName - Name relationshipName: ConvertedContact required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: false ConvertedDate: apiName: ConvertedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Date extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Converted Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false ConvertedOpportunityId: apiName: ConvertedOpportunityId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Converted Opportunity ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Opportunity nameFields: - Name relationshipName: ConvertedOpportunity required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: false Country: apiName: Country calculated: false compound: false compoundComponentName: Country compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Country length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true CreatedById: apiName: CreatedById calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Created By ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: User nameFields: - FirstName - LastName - Name relationshipName: CreatedBy required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false CreatedDate: apiName: CreatedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Created Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false CurrentGenerators__c: apiName: CurrentGenerators__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Current Generator(s) length: 100 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true DandbCompanyId: apiName: DandbCompanyId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: D&B Company ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: DandBCompany nameFields: - Name relationshipName: DandbCompany required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: true Description: apiName: Description calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: TextArea extraTypeInfo: PlainTextArea filterable: false filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Description length: 32000 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true Email: apiName: Email calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Email extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Email length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true EmailBouncedDate: apiName: EmailBouncedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Email Bounced Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true EmailBouncedReason: apiName: EmailBouncedReason calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Email Bounced Reason length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Fax: apiName: Fax calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Phone extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Fax length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true FirstName: apiName: FirstName calculated: false compound: false compoundComponentName: FirstName compoundFieldName: Name controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: PersonName filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: First Name length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true GeocodeAccuracy: apiName: GeocodeAccuracy calculated: false compound: false compoundComponentName: GeocodeAccuracy compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Geocode Accuracy length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Id: apiName: Id calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Lead ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false IndividualId: apiName: IndividualId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Individual ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Individual nameFields: - FirstName - LastName - Name relationshipName: Individual required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: true Industry: apiName: Industry calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Industry length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true IsConverted: apiName: IsConverted calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Converted length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false IsDeleted: apiName: IsDeleted calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Deleted length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false IsUnreadByOwner: apiName: IsUnreadByOwner calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Unread By Owner length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Jigsaw: apiName: Jigsaw calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Data.com Key length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true JigsawContactId: apiName: JigsawContactId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Jigsaw Contact ID length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: JigsawContact required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastActivityDate: apiName: LastActivityDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Date extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Activity length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastModifiedById: apiName: LastModifiedById calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Modified By ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: User nameFields: - FirstName - LastName - Name relationshipName: LastModifiedBy required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastModifiedDate: apiName: LastModifiedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Modified Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastName: apiName: LastName calculated: false compound: false compoundComponentName: LastName compoundFieldName: Name controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: PersonName filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Name length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true LastReferencedDate: apiName: LastReferencedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Referenced Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastViewedDate: apiName: LastViewedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Viewed Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Latitude: apiName: Latitude calculated: false compound: false compoundComponentName: Latitude compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: Double extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Latitude length: 0 nameField: false polymorphicForeignKey: false precision: 18 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 15 searchPrefilterable: false sortable: true unique: false updateable: true LeadSource: apiName: LeadSource calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Lead Source length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Longitude: apiName: Longitude calculated: false compound: false compoundComponentName: Longitude compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: Double extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Longitude length: 0 nameField: false polymorphicForeignKey: false precision: 18 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 15 searchPrefilterable: false sortable: true unique: false updateable: true MasterRecordId: apiName: MasterRecordId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Master Record ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Lead nameFields: - FirstName - LastName - Name relationshipName: MasterRecord required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false MobilePhone: apiName: MobilePhone calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Phone extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Mobile Phone length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Name: apiName: Name calculated: false compound: true compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: PersonName filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Full Name length: 121 nameField: true polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false NumberOfEmployees: apiName: NumberOfEmployees calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Int extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Employees length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true NumberofLocations__c: apiName: NumberofLocations__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: Double extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Number of Locations length: 0 nameField: false polymorphicForeignKey: false precision: 3 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true OwnerId: apiName: OwnerId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Owner ID length: 18 nameField: false polymorphicForeignKey: true precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Group nameFields: - Name - apiName: User nameFields: - FirstName - LastName - Name relationshipName: Owner required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Phone: apiName: Phone calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Phone extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Phone length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true PhotoUrl: apiName: PhotoUrl calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Url extraTypeInfo: ImageUrl filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Photo URL length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false PostalCode: apiName: PostalCode calculated: false compound: false compoundComponentName: PostalCode compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Zip/Postal Code length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Primary__c: apiName: Primary__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Primary length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ProductInterest__c: apiName: ProductInterest__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Product Interest length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Rating: apiName: Rating calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Rating length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SICCode__c: apiName: SICCode__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SIC Code length: 15 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Salutation: apiName: Salutation calculated: false compound: false compoundComponentName: Salutation compoundFieldName: Name controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: PersonName filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Salutation length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true State: apiName: State calculated: false compound: false compoundComponentName: State compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: State/Province length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Status: apiName: Status calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Status length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Street: apiName: Street calculated: false compound: false compoundComponentName: Street compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: TextArea extraTypeInfo: PlainTextArea filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Street length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SystemModstamp: apiName: SystemModstamp calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: System Modstamp length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Title: apiName: Title calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Title length: 128 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Website: apiName: Website calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Url extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Website length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true keyPrefix: 00Q label: Lead labelPlural: Leads layoutable: true mruEnabled: true nameFields: - FirstName - LastName - Name queryable: true recordTypeInfos: 012000000000000AAA: available: true defaultRecordTypeMapping: true master: true name: Master recordTypeId: 012000000000000AAA searchable: true themeInfo: color: 1B96FF iconUrl: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/t4v35/standard/lead_120.png updateable: true Name: apiName: Name associateEntityType: associateParentEntity: childRelationships: [] createable: false custom: false defaultRecordTypeId: deletable: false dependentFields: {} eTag: 573f4fe385d2beee7dae9c908017b144 feedEnabled: false fields: Alias: apiName: Alias calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Alias length: 8 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false CommunityNickname: apiName: CommunityNickname calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Nickname length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Email: apiName: Email calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Email extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Email length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false FirstName: apiName: FirstName calculated: false compound: false compoundComponentName: FirstName compoundFieldName: Name controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: SwitchablePersonName filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: First Name length: 40 nameField: true polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Id: apiName: Id calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false IsActive: apiName: IsActive calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Active length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastName: apiName: LastName calculated: false compound: false compoundComponentName: LastName compoundFieldName: Name controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: SwitchablePersonName filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Name length: 80 nameField: true polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastReferencedDate: apiName: LastReferencedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Referenced Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastViewedDate: apiName: LastViewedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Viewed Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Name: apiName: Name calculated: false compound: true compoundComponentName: compoundFieldName: Name controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: SwitchablePersonName filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Name length: 255 nameField: true polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false NameOrAlias: apiName: NameOrAlias calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Name or Alias length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Phone: apiName: Phone calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Phone extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Phone length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false ProfileId: apiName: ProfileId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Profile ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Profile nameFields: - Name relationshipName: Profile required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false RecordTypeId: apiName: RecordTypeId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Record Type ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: RecordType nameFields: - Name relationshipName: RecordType required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Title: apiName: Title calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Title length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Type: apiName: Type calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Type length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false UserRoleId: apiName: UserRoleId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Role ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: UserRole nameFields: - Name relationshipName: UserRole required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Username: apiName: Username calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Username length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false keyPrefix: label: Name labelPlural: Names layoutable: false mruEnabled: false nameFields: - FirstName - LastName - Name queryable: false recordTypeInfos: {} searchable: false themeInfo: updateable: false User: apiName: User associateEntityType: associateParentEntity: childRelationships: - childObjectApiName: AcceptedEventRelation fieldName: RelationId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: AcceptedEventRelations - childObjectApiName: AccountCleanInfo fieldName: LastStatusChangedById junctionIdListNames: [] junctionReferenceTo: [] relationshipName: AccountCleanInfoReviewers - childObjectApiName: AnalyticNotification fieldName: RunAsId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: AnalyticNotificationRunAsUsers - childObjectApiName: AttachedContentDocument fieldName: LinkedEntityId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: AttachedContentDocuments - childObjectApiName: AuthorizationFormConsent fieldName: ConsentGiverId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: AuthorizationFormConsents - childObjectApiName: CollaborationGroupMember fieldName: MemberId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: GroupMemberships - childObjectApiName: CollaborationGroupMemberRequest fieldName: RequesterId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: GroupMembershipRequests - childObjectApiName: CombinedAttachment fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: CombinedAttachments - childObjectApiName: ContactCleanInfo fieldName: LastStatusChangedById junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ContactCleanInfoReviewers - childObjectApiName: ContactRequest fieldName: WhoId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ContactRequests - childObjectApiName: ContentDocumentLink fieldName: LinkedEntityId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ContentDocumentLinks - childObjectApiName: Contract fieldName: CompanySignedId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ContractsSigned - childObjectApiName: DeclinedEventRelation fieldName: RelationId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: DeclinedEventRelations - childObjectApiName: DelegatedAccount fieldName: ManagedById junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ParentId - childObjectApiName: EmailMessageRelation fieldName: RelationId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: EmailMessageRelations - childObjectApiName: EntitySubscription fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: FeedSubscriptionsForEntity - childObjectApiName: EntitySubscription fieldName: SubscriberId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: FeedSubscriptions - childObjectApiName: EventRelation fieldName: RelationId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: EventRelations - childObjectApiName: ExternalDataUserAuth fieldName: UserId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ExternalDataUserAuths - childObjectApiName: FlowOrchestrationWorkItem fieldName: RelatedRecordId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: FlowOrchestrationWorkItems - childObjectApiName: InstalledMobileApp fieldName: UserId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: InstalledMobileApps - childObjectApiName: LeadCleanInfo fieldName: LastStatusChangedById junctionIdListNames: [] junctionReferenceTo: [] relationshipName: LeadCleanInfoReviewers - childObjectApiName: NetworkActivityAudit fieldName: EntityCreatedById junctionIdListNames: [] junctionReferenceTo: [] relationshipName: EntityCreators - childObjectApiName: NetworkActivityAudit fieldName: ParentEntityId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ParentEntities - childObjectApiName: NetworkMember fieldName: MemberId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: NetworkMemberUsers - childObjectApiName: NetworkUserHistoryRecent fieldName: NetworkUserId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: NetworkUserHistoryRecentToUser - childObjectApiName: OutgoingEmailRelation fieldName: RelationId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: OutgoingEmailRelations - childObjectApiName: OwnedContentDocument fieldName: OwnerId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: OwnedContentDocuments - childObjectApiName: PermissionSetAssignment fieldName: AssigneeId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: PermissionSetAssignments - childObjectApiName: PermissionSetLicenseAssign fieldName: AssigneeId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: PermissionSetLicenseAssignments - childObjectApiName: Photo fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Photos - childObjectApiName: ProfileSkillEndorsement fieldName: UserId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: UserProfileSkillUserEndorsements - childObjectApiName: ProfileSkillUser fieldName: UserId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: UserProfileSkillChildren - childObjectApiName: RecordAction fieldName: RecordId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: RecordActions - childObjectApiName: RecordActionHistory fieldName: ParentRecordId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: RecordActionHistories - childObjectApiName: SessionPermSetActivation fieldName: UserId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: SessionPermSetActivations - childObjectApiName: Site fieldName: AdminId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: UserSites - childObjectApiName: UndecidedEventRelation fieldName: RelationId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: UndecidedEventRelations - childObjectApiName: User fieldName: DelegatedApproverId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: DelegatedUsers - childObjectApiName: User fieldName: ManagerId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ManagedUsers - childObjectApiName: UserEmailPreferredPerson fieldName: PersonRecordId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: PersonRecord - childObjectApiName: UserEntityAccess fieldName: UserId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: UserEntityAccessRights - childObjectApiName: UserFeed fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Feeds - childObjectApiName: UserFieldAccess fieldName: UserId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: UserFieldAccessRights - childObjectApiName: UserPreference fieldName: UserId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: UserPreferences - childObjectApiName: UserShare fieldName: UserId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Shares - childObjectApiName: WorkBadge fieldName: RecipientId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Badges - childObjectApiName: WorkThanks fieldName: GiverId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: GivenThanks createable: true custom: false defaultRecordTypeId: deletable: false dependentFields: {} eTag: d448e1084760248d7990ca72c7ab1ef4 feedEnabled: true fields: AboutMe: apiName: AboutMe calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: TextArea extraTypeInfo: PlainTextArea filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: About Me length: 1000 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true AccountId: apiName: AccountId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Account nameFields: - Name relationshipName: Account required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: false Address: apiName: Address calculated: false compound: true compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Address extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Address length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: false unique: false updateable: false Alias: apiName: Alias calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Alias length: 8 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true BadgeText: apiName: BadgeText calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: User Photo badge text overlay length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false BannerPhotoId: apiName: BannerPhotoId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Photo ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Photo nameFields: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false BannerPhotoUrl: apiName: BannerPhotoUrl calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Url extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Url for banner photo length: 1024 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false CallCenterId: apiName: CallCenterId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Call Center ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: CallCenter nameFields: - Name relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true City: apiName: City calculated: false compound: false compoundComponentName: City compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: City length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true CommunityNickname: apiName: CommunityNickname calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Nickname length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true CompanyName: apiName: CompanyName calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Company Name length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ContactId: apiName: ContactId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Contact ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Contact nameFields: - FirstName - LastName - Name relationshipName: Contact required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: true Country: apiName: Country calculated: false compound: false compoundComponentName: Country compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Country length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true CreatedById: apiName: CreatedById calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Created By ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: User nameFields: - FirstName - LastName - Name relationshipName: CreatedBy required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false CreatedDate: apiName: CreatedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Created Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false DefaultGroupNotificationFrequency: apiName: DefaultGroupNotificationFrequency calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Default Notification Frequency when Joining Groups length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true DelegatedApproverId: apiName: DelegatedApproverId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Delegated Approver ID length: 18 nameField: false polymorphicForeignKey: true precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Group nameFields: - Name - apiName: User nameFields: - FirstName - LastName - Name relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Department: apiName: Department calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Department length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true DigestFrequency: apiName: DigestFrequency calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Chatter Email Highlights Frequency length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Division: apiName: Division calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Division length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Email: apiName: Email calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Email extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Email length: 128 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true EmailEncodingKey: apiName: EmailEncodingKey calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Email Encoding length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true EmailPreferencesAutoBcc: apiName: EmailPreferencesAutoBcc calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: AutoBcc length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true EmailPreferencesAutoBccStayInTouch: apiName: EmailPreferencesAutoBccStayInTouch calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: AutoBccStayInTouch length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true EmailPreferencesStayInTouchReminder: apiName: EmailPreferencesStayInTouchReminder calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: StayInTouchReminder length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true EmployeeNumber: apiName: EmployeeNumber calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Employee Number length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Extension: apiName: Extension calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Phone extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Extension length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Fax: apiName: Fax calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Phone extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Fax length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true FederationIdentifier: apiName: FederationIdentifier calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SAML Federation ID length: 512 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true FirstName: apiName: FirstName calculated: false compound: false compoundComponentName: FirstName compoundFieldName: Name controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: PersonName filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: First Name length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ForecastEnabled: apiName: ForecastEnabled calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Allow Forecasting length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true FullPhotoUrl: apiName: FullPhotoUrl calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Url extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Url for full-sized Photo length: 1024 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false GeocodeAccuracy: apiName: GeocodeAccuracy calculated: false compound: false compoundComponentName: GeocodeAccuracy compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Geocode Accuracy length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Id: apiName: Id calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: User ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false IndividualId: apiName: IndividualId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Individual ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Individual nameFields: - FirstName - LastName - Name relationshipName: Individual required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: true IsActive: apiName: IsActive calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Active length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true IsExtIndicatorVisible: apiName: IsExtIndicatorVisible calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Show external indicator length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false IsPortalEnabled: apiName: IsPortalEnabled calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Is Portal Enabled length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true IsProfilePhotoActive: apiName: IsProfilePhotoActive calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Has Profile Photo length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false JigsawImportLimitOverride: apiName: JigsawImportLimitOverride calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Int extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Data.com Monthly Addition Limit length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true LanguageLocaleKey: apiName: LanguageLocaleKey calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Language length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true LastLoginDate: apiName: LastLoginDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Login length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastModifiedById: apiName: LastModifiedById calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Modified By ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: User nameFields: - FirstName - LastName - Name relationshipName: LastModifiedBy required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastModifiedDate: apiName: LastModifiedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Modified Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastName: apiName: LastName calculated: false compound: false compoundComponentName: LastName compoundFieldName: Name controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: PersonName filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Name length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true LastPasswordChangeDate: apiName: LastPasswordChangeDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Password Change or Reset length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastReferencedDate: apiName: LastReferencedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Referenced Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastViewedDate: apiName: LastViewedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Viewed Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Latitude: apiName: Latitude calculated: false compound: false compoundComponentName: Latitude compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: Double extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Latitude length: 0 nameField: false polymorphicForeignKey: false precision: 18 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 15 searchPrefilterable: false sortable: true unique: false updateable: true LocaleSidKey: apiName: LocaleSidKey calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Locale length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Longitude: apiName: Longitude calculated: false compound: false compoundComponentName: Longitude compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: Double extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Longitude length: 0 nameField: false polymorphicForeignKey: false precision: 18 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 15 searchPrefilterable: false sortable: true unique: false updateable: true ManagerId: apiName: ManagerId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Manager ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: User nameFields: - FirstName - LastName - Name relationshipName: Manager required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: true MediumBannerPhotoUrl: apiName: MediumBannerPhotoUrl calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Url extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Url for Android banner photo length: 1024 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false MediumPhotoUrl: apiName: MediumPhotoUrl calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Url extraTypeInfo: ImageUrl filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Url for medium profile photo length: 1024 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false MobilePhone: apiName: MobilePhone calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Phone extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Mobile length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Name: apiName: Name calculated: false compound: true compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: PersonName filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Full Name length: 121 nameField: true polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false NumberOfFailedLogins: apiName: NumberOfFailedLogins calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Int extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Failed Login Attempts length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false OfflinePdaTrialExpirationDate: apiName: OfflinePdaTrialExpirationDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Sales Anywhere Trial Expiration Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false OfflineTrialExpirationDate: apiName: OfflineTrialExpirationDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Offline Edition Trial Expiration Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false OutOfOfficeMessage: apiName: OutOfOfficeMessage calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Out of office message length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Phone: apiName: Phone calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Phone extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Phone length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true PortalRole: apiName: PortalRole calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Portal Role Level length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true PostalCode: apiName: PostalCode calculated: false compound: false compoundComponentName: PostalCode compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Zip/Postal Code length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ProfileId: apiName: ProfileId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Profile ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Profile nameFields: - Name relationshipName: Profile required: true scale: 0 searchPrefilterable: true sortable: true unique: false updateable: true ProfilePhotoId: apiName: ProfilePhotoId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Photo ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Photo nameFields: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false ReceivesAdminInfoEmails: apiName: ReceivesAdminInfoEmails calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Admin Info Emails length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ReceivesInfoEmails: apiName: ReceivesInfoEmails calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Info Emails length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SenderEmail: apiName: SenderEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Email extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Email Sender Address length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SenderName: apiName: SenderName calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Email Sender Name length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Signature: apiName: Signature calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: TextArea extraTypeInfo: PlainTextArea filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Email Signature length: 1333 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SmallBannerPhotoUrl: apiName: SmallBannerPhotoUrl calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Url extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Url for IOS banner photo length: 1024 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false SmallPhotoUrl: apiName: SmallPhotoUrl calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Url extraTypeInfo: ImageUrl filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Photo length: 1024 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false State: apiName: State calculated: false compound: false compoundComponentName: State compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: State/Province length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true StayInTouchNote: apiName: StayInTouchNote calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Stay-in-Touch Email Note length: 512 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true StayInTouchSignature: apiName: StayInTouchSignature calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: TextArea extraTypeInfo: PlainTextArea filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Stay-in-Touch Email Signature length: 512 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true StayInTouchSubject: apiName: StayInTouchSubject calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Stay-in-Touch Email Subject length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Street: apiName: Street calculated: false compound: false compoundComponentName: Street compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: TextArea extraTypeInfo: PlainTextArea filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Street length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SystemModstamp: apiName: SystemModstamp calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: System Modstamp length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false TimeZoneSidKey: apiName: TimeZoneSidKey calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Time Zone length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Title: apiName: Title calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Title length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true UserPermissionsCallCenterAutoLogin: apiName: UserPermissionsCallCenterAutoLogin calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Auto-login To Call Center length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPermissionsInteractionUser: apiName: UserPermissionsInteractionUser calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Flow User length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPermissionsJigsawProspectingUser: apiName: UserPermissionsJigsawProspectingUser calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Data.com User length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPermissionsKnowledgeUser: apiName: UserPermissionsKnowledgeUser calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Knowledge User length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPermissionsMarketingUser: apiName: UserPermissionsMarketingUser calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Marketing User length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPermissionsOfflineUser: apiName: UserPermissionsOfflineUser calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Offline User length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPermissionsSFContentUser: apiName: UserPermissionsSFContentUser calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Salesforce CRM Content User length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPermissionsSiteforceContributorUser: apiName: UserPermissionsSiteforceContributorUser calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Site.com Contributor User length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPermissionsSiteforcePublisherUser: apiName: UserPermissionsSiteforcePublisherUser calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Site.com Publisher User length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPermissionsSupportUser: apiName: UserPermissionsSupportUser calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Service Cloud User length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPermissionsWorkDotComUserFeature: apiName: UserPermissionsWorkDotComUserFeature calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: WDC User length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesActivityRemindersPopup: apiName: UserPreferencesActivityRemindersPopup calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ActivityRemindersPopup length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesApexPagesDeveloperMode: apiName: UserPreferencesApexPagesDeveloperMode calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ApexPagesDeveloperMode length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesCacheDiagnostics: apiName: UserPreferencesCacheDiagnostics calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: CacheDiagnostics length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesContentEmailAsAndWhen: apiName: UserPreferencesContentEmailAsAndWhen calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ContentEmailAsAndWhen length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesContentNoEmail: apiName: UserPreferencesContentNoEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ContentNoEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesCreateLEXAppsWTShown: apiName: UserPreferencesCreateLEXAppsWTShown calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: CreateLEXAppsWTShown length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDedupeStorageMigrationComplete: apiName: UserPreferencesDedupeStorageMigrationComplete calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DedupeStorageMigrationComplete length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisCommentAfterLikeEmail: apiName: UserPreferencesDisCommentAfterLikeEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisCommentAfterLikeEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisMentionsCommentEmail: apiName: UserPreferencesDisMentionsCommentEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisMentionsCommentEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisProfPostCommentEmail: apiName: UserPreferencesDisProfPostCommentEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisProfPostCommentEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableAllFeedsEmail: apiName: UserPreferencesDisableAllFeedsEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableAllFeedsEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableBookmarkEmail: apiName: UserPreferencesDisableBookmarkEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableBookmarkEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableChangeCommentEmail: apiName: UserPreferencesDisableChangeCommentEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableChangeCommentEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableEndorsementEmail: apiName: UserPreferencesDisableEndorsementEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableEndorsementEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableFileShareNotificationsForApi: apiName: UserPreferencesDisableFileShareNotificationsForApi calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableFileShareNotificationsForApi length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableFollowersEmail: apiName: UserPreferencesDisableFollowersEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableFollowersEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableLaterCommentEmail: apiName: UserPreferencesDisableLaterCommentEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableLaterCommentEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableLikeEmail: apiName: UserPreferencesDisableLikeEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableLikeEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableMentionsPostEmail: apiName: UserPreferencesDisableMentionsPostEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableMentionsPostEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableMessageEmail: apiName: UserPreferencesDisableMessageEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableMessageEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableProfilePostEmail: apiName: UserPreferencesDisableProfilePostEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableProfilePostEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableSharePostEmail: apiName: UserPreferencesDisableSharePostEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableSharePostEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesEnableAutoSubForFeeds: apiName: UserPreferencesEnableAutoSubForFeeds calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: EnableAutoSubForFeeds length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesEventRemindersCheckboxDefault: apiName: UserPreferencesEventRemindersCheckboxDefault calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: EventRemindersCheckboxDefault length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesExcludeMailAppAttachments: apiName: UserPreferencesExcludeMailAppAttachments calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ExcludeMailAppAttachments length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesFavoritesShowTopFavorites: apiName: UserPreferencesFavoritesShowTopFavorites calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: FavoritesShowTopFavorites length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesFavoritesWTShown: apiName: UserPreferencesFavoritesWTShown calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: FavoritesWTShown length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesFirstTimeInLightning: apiName: UserPreferencesFirstTimeInLightning calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: FirstTimeInLightning length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesGlobalNavBarWTShown: apiName: UserPreferencesGlobalNavBarWTShown calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: GlobalNavBarWTShown length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesGlobalNavGridMenuWTShown: apiName: UserPreferencesGlobalNavGridMenuWTShown calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: GlobalNavGridMenuWTShown length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHasCelebrationBadge: apiName: UserPreferencesHasCelebrationBadge calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HasCelebrationBadge length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHasSentWarningEmail: apiName: UserPreferencesHasSentWarningEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HasSentWarningEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHasSentWarningEmail238: apiName: UserPreferencesHasSentWarningEmail238 calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HasSentWarningEmail238 length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHasSentWarningEmail240: apiName: UserPreferencesHasSentWarningEmail240 calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HasSentWarningEmail240 length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHeavyPagePromptEnabled: apiName: UserPreferencesHeavyPagePromptEnabled calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HeavyPagePromptEnabled length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideBiggerPhotoCallout: apiName: UserPreferencesHideBiggerPhotoCallout calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideBiggerPhotoCallout length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideCSNDesktopTask: apiName: UserPreferencesHideCSNDesktopTask calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideCSNDesktopTask length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideCSNGetChatterMobileTask: apiName: UserPreferencesHideCSNGetChatterMobileTask calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideCSNGetChatterMobileTask length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideChatterOnboardingSplash: apiName: UserPreferencesHideChatterOnboardingSplash calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideChatterOnboardingSplash length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideEndUserOnboardingAssistantModal: apiName: UserPreferencesHideEndUserOnboardingAssistantModal calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideEndUserOnboardingAssistantModal length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideEventCalendar: apiName: UserPreferencesHideEventCalendar calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideEventCalendar length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideLearningPathModal: apiName: UserPreferencesHideLearningPathModal calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideLearningPathModal length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideLightningMigrationModal: apiName: UserPreferencesHideLightningMigrationModal calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideLightningMigrationModal length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideMailAppEAPUserGuidance: apiName: UserPreferencesHideMailAppEAPUserGuidance calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideMailAppEAPUserGuidance length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideMailAppWelcomeMat: apiName: UserPreferencesHideMailAppWelcomeMat calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideMailAppWelcomeMat length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideS1BrowserUI: apiName: UserPreferencesHideS1BrowserUI calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideS1BrowserUI length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideSecondChatterOnboardingSplash: apiName: UserPreferencesHideSecondChatterOnboardingSplash calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideSecondChatterOnboardingSplash length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideSfxWelcomeMat: apiName: UserPreferencesHideSfxWelcomeMat calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideSfxWelcomeMat length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideTaskListViewsPopover: apiName: UserPreferencesHideTaskListViewsPopover calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideTaskListViewsPopover length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideTrialsCelebration: apiName: UserPreferencesHideTrialsCelebration calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideTrialsCelebration length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideTrialsWelcomeMat: apiName: UserPreferencesHideTrialsWelcomeMat calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideTrialsWelcomeMat length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesJigsawListUser: apiName: UserPreferencesJigsawListUser calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: JigsawListUser length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesLightningExperiencePreferred: apiName: UserPreferencesLightningExperiencePreferred calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: LightningExperiencePreferred length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesLtngPromoReserved10UserPref: apiName: UserPreferencesLtngPromoReserved10UserPref calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: LtngPromoReserved10UserPref length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesLtngPromoReserved16UserPref: apiName: UserPreferencesLtngPromoReserved16UserPref calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: LtngPromoReserved16UserPref length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesLtngPromoReserved19UserPref: apiName: UserPreferencesLtngPromoReserved19UserPref calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: LtngPromoReserved19UserPref length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesNativeEmailClient: apiName: UserPreferencesNativeEmailClient calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: NativeEmailClient length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesNewLightningReportRunPageEnabled: apiName: UserPreferencesNewLightningReportRunPageEnabled calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: NewLightningReportRunPageEnabled length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesPathAssistantCollapsed: apiName: UserPreferencesPathAssistantCollapsed calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: PathAssistantCollapsed length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesPreviewCustomTheme: apiName: UserPreferencesPreviewCustomTheme calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: PreviewCustomTheme length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesPreviewLightning: apiName: UserPreferencesPreviewLightning calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: PreviewLightning length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesReadReceiptLastToggleValue: apiName: UserPreferencesReadReceiptLastToggleValue calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ReadReceiptLastToggleValue length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesReceiveNoNotificationsAsApprover: apiName: UserPreferencesReceiveNoNotificationsAsApprover calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ReceiveNoNotificationsAsApprover length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesReceiveNotificationsAsDelegatedApprover: apiName: UserPreferencesReceiveNotificationsAsDelegatedApprover calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ReceiveNotificationsAsDelegatedApprover length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesRecordHomeReservedWTShown: apiName: UserPreferencesRecordHomeReservedWTShown calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: RecordHomeReservedWTShown length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesRecordHomeSectionCollapseWTShown: apiName: UserPreferencesRecordHomeSectionCollapseWTShown calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: RecordHomeSectionCollapseWTShown length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesReminderSoundOff: apiName: UserPreferencesReminderSoundOff calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ReminderSoundOff length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesReverseOpenActivitiesView: apiName: UserPreferencesReverseOpenActivitiesView calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ReverseOpenActivitiesView length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesSRHOverrideActivities: apiName: UserPreferencesSRHOverrideActivities calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SRHOverrideActivities length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesSalesEssentialsSetupAssistantCompleted: apiName: UserPreferencesSalesEssentialsSetupAssistantCompleted calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SalesEssentialsSetupAssistantCompleted length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesSetupAssistantUserPref1: apiName: UserPreferencesSetupAssistantUserPref1 calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SetupAssistantUserPref1 length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowCityToExternalUsers: apiName: UserPreferencesShowCityToExternalUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowCityToExternalUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowCityToGuestUsers: apiName: UserPreferencesShowCityToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowCityToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowCountryToExternalUsers: apiName: UserPreferencesShowCountryToExternalUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowCountryToExternalUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowCountryToGuestUsers: apiName: UserPreferencesShowCountryToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowCountryToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowEmailToExternalUsers: apiName: UserPreferencesShowEmailToExternalUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowEmailToExternalUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowEmailToGuestUsers: apiName: UserPreferencesShowEmailToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowEmailToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowFaxToExternalUsers: apiName: UserPreferencesShowFaxToExternalUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowFaxToExternalUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowFaxToGuestUsers: apiName: UserPreferencesShowFaxToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowFaxToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowForecastingChangeSignals: apiName: UserPreferencesShowForecastingChangeSignals calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowForecastingChangeSignals length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowManagerToExternalUsers: apiName: UserPreferencesShowManagerToExternalUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowManagerToExternalUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowManagerToGuestUsers: apiName: UserPreferencesShowManagerToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowManagerToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowMobilePhoneToExternalUsers: apiName: UserPreferencesShowMobilePhoneToExternalUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowMobilePhoneToExternalUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowMobilePhoneToGuestUsers: apiName: UserPreferencesShowMobilePhoneToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowMobilePhoneToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowPostalCodeToExternalUsers: apiName: UserPreferencesShowPostalCodeToExternalUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowPostalCodeToExternalUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowPostalCodeToGuestUsers: apiName: UserPreferencesShowPostalCodeToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowPostalCodeToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowProfilePicToGuestUsers: apiName: UserPreferencesShowProfilePicToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowProfilePicToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowStateToExternalUsers: apiName: UserPreferencesShowStateToExternalUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowStateToExternalUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowStateToGuestUsers: apiName: UserPreferencesShowStateToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowStateToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowStreetAddressToExternalUsers: apiName: UserPreferencesShowStreetAddressToExternalUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowStreetAddressToExternalUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowStreetAddressToGuestUsers: apiName: UserPreferencesShowStreetAddressToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowStreetAddressToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowTitleToExternalUsers: apiName: UserPreferencesShowTitleToExternalUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowTitleToExternalUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowTitleToGuestUsers: apiName: UserPreferencesShowTitleToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowTitleToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowWorkPhoneToExternalUsers: apiName: UserPreferencesShowWorkPhoneToExternalUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowWorkPhoneToExternalUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowWorkPhoneToGuestUsers: apiName: UserPreferencesShowWorkPhoneToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowWorkPhoneToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesSortFeedByComment: apiName: UserPreferencesSortFeedByComment calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SortFeedByComment length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesSuppressEventSFXReminders: apiName: UserPreferencesSuppressEventSFXReminders calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SuppressEventSFXReminders length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesSuppressTaskSFXReminders: apiName: UserPreferencesSuppressTaskSFXReminders calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SuppressTaskSFXReminders length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesTaskRemindersCheckboxDefault: apiName: UserPreferencesTaskRemindersCheckboxDefault calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: TaskRemindersCheckboxDefault length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesTodayGettingStarted: apiName: UserPreferencesTodayGettingStarted calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: TodayGettingStarted length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesTrailheadBadgeCreated: apiName: UserPreferencesTrailheadBadgeCreated calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: TrailheadBadgeCreated length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesUserDebugModePref: apiName: UserPreferencesUserDebugModePref calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: UserDebugModePref length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserRoleId: apiName: UserRoleId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Role ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: UserRole nameFields: - Name relationshipName: UserRole required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: true UserType: apiName: UserType calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: User Type length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Username: apiName: Username calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Username length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true keyPrefix: '005' label: User labelPlural: People layoutable: true mruEnabled: true nameFields: - FirstName - LastName - Name queryable: true recordTypeInfos: {} searchable: true themeInfo: color: 1B96FF iconUrl: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/t4v35/standard/user_120.png updateable: true Group1: title: Group1 required: - apiName - associateEntityType - associateParentEntity - childRelationships - createable - custom - defaultRecordTypeId - deletable - dependentFields - eTag - feedEnabled - fields - keyPrefix - label - labelPlural - layoutable - mruEnabled - nameFields - queryable - recordTypeInfos - searchable - themeInfo - updateable type: object properties: apiName: type: string example: example_value associateEntityType: type: - string - 'null' example: example_value associateParentEntity: type: - string - 'null' example: example_value childRelationships: type: array items: $ref: '#/components/schemas/ChildRelationship2' description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true defaultRecordTypeId: type: - string - 'null' example: '500123' deletable: type: boolean example: true dependentFields: type: object example: example_value eTag: type: string example: example_value feedEnabled: type: boolean example: true fields: $ref: '#/components/schemas/Fields3' keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value layoutable: type: boolean example: true mruEnabled: type: boolean example: true nameFields: type: array items: type: string description: '' example: [] queryable: type: boolean example: true recordTypeInfos: type: object example: example_value searchable: type: boolean example: true themeInfo: $ref: '#/components/schemas/ThemeInfo' updateable: type: boolean example: true examples: - apiName: Group associateEntityType: associateParentEntity: childRelationships: - childObjectApiName: GroupMember fieldName: GroupId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: GroupMembers - childObjectApiName: QueueSobject fieldName: QueueId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: QueueSobjects - childObjectApiName: User fieldName: DelegatedApproverId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: DelegatedUsers createable: true custom: false defaultRecordTypeId: deletable: true dependentFields: {} eTag: 7c2efbc357f16e2ce94a601b6724e2e0 feedEnabled: false fields: CreatedById: apiName: CreatedById calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Created By ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: User nameFields: - FirstName - LastName - Name relationshipName: CreatedBy required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false CreatedDate: apiName: CreatedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Created Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false DeveloperName: apiName: DeveloperName calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Developer Name length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true DoesIncludeBosses: apiName: DoesIncludeBosses calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Include Bosses length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true DoesSendEmailToMembers: apiName: DoesSendEmailToMembers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Send Email to Members length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Email: apiName: Email calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Email extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Email length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Id: apiName: Id calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Group ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastModifiedById: apiName: LastModifiedById calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Modified By ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: User nameFields: - FirstName - LastName - Name relationshipName: LastModifiedBy required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastModifiedDate: apiName: LastModifiedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Modified Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Name: apiName: Name calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Name length: 40 nameField: true polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true OwnerId: apiName: OwnerId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Owner ID length: 18 nameField: false polymorphicForeignKey: true precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Organization nameFields: - Name - apiName: User nameFields: - FirstName - LastName - Name relationshipName: Owner required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false RelatedId: apiName: RelatedId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Related ID length: 18 nameField: false polymorphicForeignKey: true precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: User nameFields: - FirstName - LastName - Name - apiName: UserRole nameFields: - Name relationshipName: Related required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: false SystemModstamp: apiName: SystemModstamp calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: System Modstamp length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Type: apiName: Type calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Type length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false keyPrefix: 00G label: Group labelPlural: Group layoutable: false mruEnabled: false nameFields: - Name queryable: true recordTypeInfos: {} searchable: true themeInfo: color: 1B96FF iconUrl: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/t4v35/standard/orders_120.png updateable: true ChildRelationship2: title: ChildRelationship2 required: - childObjectApiName - fieldName - junctionIdListNames - junctionReferenceTo - relationshipName type: object properties: childObjectApiName: type: string example: example_value fieldName: type: string example: example_value junctionIdListNames: type: array items: type: string description: '' example: [] junctionReferenceTo: type: array items: type: string description: '' example: [] relationshipName: type: string example: example_value examples: - childObjectApiName: GroupMember fieldName: GroupId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: GroupMembers Fields3: title: Fields3 required: - CreatedById - CreatedDate - DeveloperName - DoesIncludeBosses - DoesSendEmailToMembers - Email - Id - LastModifiedById - LastModifiedDate - Name - OwnerId - RelatedId - SystemModstamp - Type type: object properties: CreatedById: $ref: '#/components/schemas/CreatedById2' CreatedDate: $ref: '#/components/schemas/CreatedDate2' DeveloperName: $ref: '#/components/schemas/DeveloperName' DoesIncludeBosses: $ref: '#/components/schemas/DoesIncludeBosses' DoesSendEmailToMembers: $ref: '#/components/schemas/DoesSendEmailToMembers' Email: $ref: '#/components/schemas/Email1' Id: $ref: '#/components/schemas/Id4' LastModifiedById: $ref: '#/components/schemas/LastModifiedById2' LastModifiedDate: $ref: '#/components/schemas/LastModifiedDate2' Name: $ref: '#/components/schemas/Name16' OwnerId: $ref: '#/components/schemas/OwnerId2' RelatedId: $ref: '#/components/schemas/RelatedId' SystemModstamp: $ref: '#/components/schemas/SystemModstamp2' Type: $ref: '#/components/schemas/Type7' examples: - CreatedById: apiName: CreatedById calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Created By ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: User nameFields: - FirstName - LastName - Name relationshipName: CreatedBy required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false CreatedDate: apiName: CreatedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Created Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false DeveloperName: apiName: DeveloperName calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Developer Name length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true DoesIncludeBosses: apiName: DoesIncludeBosses calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Include Bosses length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true DoesSendEmailToMembers: apiName: DoesSendEmailToMembers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Send Email to Members length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Email: apiName: Email calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Email extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Email length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Id: apiName: Id calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Group ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastModifiedById: apiName: LastModifiedById calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Modified By ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: User nameFields: - FirstName - LastName - Name relationshipName: LastModifiedBy required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastModifiedDate: apiName: LastModifiedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Modified Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Name: apiName: Name calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Name length: 40 nameField: true polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true OwnerId: apiName: OwnerId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Owner ID length: 18 nameField: false polymorphicForeignKey: true precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Organization nameFields: - Name - apiName: User nameFields: - FirstName - LastName - Name relationshipName: Owner required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false RelatedId: apiName: RelatedId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Related ID length: 18 nameField: false polymorphicForeignKey: true precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: User nameFields: - FirstName - LastName - Name - apiName: UserRole nameFields: - Name relationshipName: Related required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: false SystemModstamp: apiName: SystemModstamp calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: System Modstamp length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Type: apiName: Type calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Type length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false CreatedById2: title: CreatedById2 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: $ref: '#/components/schemas/ReferenceToInfo' description: '' example: [] relationshipName: type: string example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: CreatedById calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Created By ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: User nameFields: - FirstName - LastName - Name relationshipName: CreatedBy required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false ReferenceToInfo: title: ReferenceToInfo required: - apiName - nameFields type: object properties: apiName: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] examples: - apiName: User nameFields: - FirstName - LastName - Name CreatedDate2: title: CreatedDate2 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: CreatedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Created Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false DeveloperName: title: DeveloperName required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: DeveloperName calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Developer Name length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true DoesIncludeBosses: title: DoesIncludeBosses required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: DoesIncludeBosses calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Include Bosses length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true DoesSendEmailToMembers: title: DoesSendEmailToMembers required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: DoesSendEmailToMembers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Send Email to Members length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Email1: title: Email1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: Email calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Email extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Email length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Id4: title: Id4 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: Id calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Group ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastModifiedById2: title: LastModifiedById2 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: $ref: '#/components/schemas/ReferenceToInfo' description: '' example: [] relationshipName: type: string example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: LastModifiedById calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Modified By ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: User nameFields: - FirstName - LastName - Name relationshipName: LastModifiedBy required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastModifiedDate2: title: LastModifiedDate2 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: LastModifiedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Modified Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Name16: title: Name16 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: Name calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Name length: 40 nameField: true polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true OwnerId2: title: OwnerId2 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: $ref: '#/components/schemas/ReferenceToInfo' description: '' example: [] relationshipName: type: string example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: OwnerId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Owner ID length: 18 nameField: false polymorphicForeignKey: true precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Organization nameFields: - Name - apiName: User nameFields: - FirstName - LastName - Name relationshipName: Owner required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false RelatedId: title: RelatedId required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: $ref: '#/components/schemas/ReferenceToInfo' description: '' example: [] relationshipName: type: string example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: RelatedId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Related ID length: 18 nameField: false polymorphicForeignKey: true precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: User nameFields: - FirstName - LastName - Name - apiName: UserRole nameFields: - Name relationshipName: Related required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: false SystemModstamp2: title: SystemModstamp2 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: SystemModstamp calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: System Modstamp length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Type7: title: Type7 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: Type calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Type length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false ThemeInfo: title: ThemeInfo required: - color - iconUrl type: object properties: color: type: string example: example_value iconUrl: type: string example: https://www.example.com examples: - color: 1B96FF iconUrl: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/t4v35/standard/orders_120.png Lead1: title: Lead1 required: - apiName - associateEntityType - associateParentEntity - childRelationships - createable - custom - defaultRecordTypeId - deletable - dependentFields - eTag - feedEnabled - fields - keyPrefix - label - labelPlural - layoutable - mruEnabled - nameFields - queryable - recordTypeInfos - searchable - themeInfo - updateable type: object properties: apiName: type: string example: example_value associateEntityType: type: - string - 'null' example: example_value associateParentEntity: type: - string - 'null' example: example_value childRelationships: type: array items: $ref: '#/components/schemas/ChildRelationship2' description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true defaultRecordTypeId: type: string example: '500123' deletable: type: boolean example: true dependentFields: type: object example: example_value eTag: type: string example: example_value feedEnabled: type: boolean example: true fields: $ref: '#/components/schemas/Fields4' keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value layoutable: type: boolean example: true mruEnabled: type: boolean example: true nameFields: type: array items: type: string description: '' example: [] queryable: type: boolean example: true recordTypeInfos: $ref: '#/components/schemas/RecordTypeInfos' searchable: type: boolean example: true themeInfo: $ref: '#/components/schemas/ThemeInfo' updateable: type: boolean example: true examples: - apiName: Lead associateEntityType: associateParentEntity: childRelationships: - childObjectApiName: AcceptedEventRelation fieldName: RelationId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: AcceptedEventRelations - childObjectApiName: ActivityHistory fieldName: WhoId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ActivityHistories - childObjectApiName: AttachedContentDocument fieldName: LinkedEntityId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: AttachedContentDocuments - childObjectApiName: Attachment fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Attachments - childObjectApiName: CampaignMember fieldName: LeadId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: CampaignMembers - childObjectApiName: CleanInfo fieldName: TargetEntityId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: CleanInfos - childObjectApiName: CollaborationGroupRecord fieldName: RecordId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: RecordAssociatedGroups - childObjectApiName: CombinedAttachment fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: CombinedAttachments - childObjectApiName: ContactRequest fieldName: WhoId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ContactRequests - childObjectApiName: ContentDocumentLink fieldName: LinkedEntityId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ContentDocumentLinks - childObjectApiName: DeclinedEventRelation fieldName: RelationId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: DeclinedEventRelations - childObjectApiName: DuplicateRecordItem fieldName: RecordId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: DuplicateRecordItems - childObjectApiName: EmailMessageRelation fieldName: RelationId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: EmailMessageRelations - childObjectApiName: EmailStatus fieldName: WhoId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: EmailStatuses - childObjectApiName: EntitySubscription fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: FeedSubscriptionsForEntity - childObjectApiName: Event fieldName: WhoId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Events - childObjectApiName: EventRelation fieldName: RelationId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: EventRelations - childObjectApiName: FlowOrchestrationWorkItem fieldName: RelatedRecordId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: FlowOrchestrationWorkItems - childObjectApiName: LeadCleanInfo fieldName: LeadId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: LeadCleanInfos - childObjectApiName: LeadFeed fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Feeds - childObjectApiName: LeadHistory fieldName: LeadId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Histories - childObjectApiName: LeadShare fieldName: LeadId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Shares - childObjectApiName: ListEmailIndividualRecipient fieldName: RecipientId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ListEmailIndividualRecipients - childObjectApiName: ListEmailSentResult fieldName: RecipientId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ListEmailRecipients - childObjectApiName: NetworkActivityAudit fieldName: ParentEntityId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ParentEntities - childObjectApiName: Note fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Notes - childObjectApiName: NoteAndAttachment fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: NotesAndAttachments - childObjectApiName: OpenActivity fieldName: WhoId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: OpenActivities - childObjectApiName: OutgoingEmailRelation fieldName: RelationId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: OutgoingEmailRelations - childObjectApiName: ProcessInstance fieldName: TargetObjectId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ProcessInstances - childObjectApiName: ProcessInstanceHistory fieldName: TargetObjectId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ProcessSteps - childObjectApiName: RecordAction fieldName: RecordId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: RecordActions - childObjectApiName: RecordActionHistory fieldName: ParentRecordId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: RecordActionHistories - childObjectApiName: Task fieldName: WhoId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Tasks - childObjectApiName: TopicAssignment fieldName: EntityId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: TopicAssignments - childObjectApiName: UndecidedEventRelation fieldName: RelationId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: UndecidedEventRelations - childObjectApiName: UserEmailPreferredPerson fieldName: PersonRecordId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: PersonRecord createable: true custom: false defaultRecordTypeId: 012000000000000AAA deletable: true dependentFields: {} eTag: 36ee19b8151a3359e045a269024228ee feedEnabled: true fields: Address: apiName: Address calculated: false compound: true compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Address extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Address length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: false unique: false updateable: false AnnualRevenue: apiName: AnnualRevenue calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Currency extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Annual Revenue length: 0 nameField: false polymorphicForeignKey: false precision: 18 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true City: apiName: City calculated: false compound: false compoundComponentName: City compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: City length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true CleanStatus: apiName: CleanStatus calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Clean Status length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true CloneSourceId: apiName: CloneSourceId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Clone Source length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Company: apiName: Company calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Company length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true CompanyDunsNumber: apiName: CompanyDunsNumber calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Company D-U-N-S Number length: 9 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ConvertedAccountId: apiName: ConvertedAccountId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Converted Account ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Account nameFields: - Name relationshipName: ConvertedAccount required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: false ConvertedContactId: apiName: ConvertedContactId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Converted Contact ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Contact nameFields: - FirstName - LastName - Name relationshipName: ConvertedContact required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: false ConvertedDate: apiName: ConvertedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Date extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Converted Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false ConvertedOpportunityId: apiName: ConvertedOpportunityId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Converted Opportunity ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Opportunity nameFields: - Name relationshipName: ConvertedOpportunity required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: false Country: apiName: Country calculated: false compound: false compoundComponentName: Country compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Country length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true CreatedById: apiName: CreatedById calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Created By ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: User nameFields: - FirstName - LastName - Name relationshipName: CreatedBy required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false CreatedDate: apiName: CreatedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Created Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false CurrentGenerators__c: apiName: CurrentGenerators__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Current Generator(s) length: 100 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true DandbCompanyId: apiName: DandbCompanyId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: D&B Company ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: DandBCompany nameFields: - Name relationshipName: DandbCompany required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: true Description: apiName: Description calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: TextArea extraTypeInfo: PlainTextArea filterable: false filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Description length: 32000 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true Email: apiName: Email calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Email extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Email length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true EmailBouncedDate: apiName: EmailBouncedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Email Bounced Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true EmailBouncedReason: apiName: EmailBouncedReason calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Email Bounced Reason length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Fax: apiName: Fax calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Phone extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Fax length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true FirstName: apiName: FirstName calculated: false compound: false compoundComponentName: FirstName compoundFieldName: Name controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: PersonName filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: First Name length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true GeocodeAccuracy: apiName: GeocodeAccuracy calculated: false compound: false compoundComponentName: GeocodeAccuracy compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Geocode Accuracy length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Id: apiName: Id calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Lead ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false IndividualId: apiName: IndividualId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Individual ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Individual nameFields: - FirstName - LastName - Name relationshipName: Individual required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: true Industry: apiName: Industry calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Industry length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true IsConverted: apiName: IsConverted calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Converted length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false IsDeleted: apiName: IsDeleted calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Deleted length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false IsUnreadByOwner: apiName: IsUnreadByOwner calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Unread By Owner length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Jigsaw: apiName: Jigsaw calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Data.com Key length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true JigsawContactId: apiName: JigsawContactId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Jigsaw Contact ID length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: JigsawContact required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastActivityDate: apiName: LastActivityDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Date extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Activity length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastModifiedById: apiName: LastModifiedById calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Modified By ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: User nameFields: - FirstName - LastName - Name relationshipName: LastModifiedBy required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastModifiedDate: apiName: LastModifiedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Modified Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastName: apiName: LastName calculated: false compound: false compoundComponentName: LastName compoundFieldName: Name controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: PersonName filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Name length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true LastReferencedDate: apiName: LastReferencedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Referenced Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastViewedDate: apiName: LastViewedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Viewed Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Latitude: apiName: Latitude calculated: false compound: false compoundComponentName: Latitude compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: Double extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Latitude length: 0 nameField: false polymorphicForeignKey: false precision: 18 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 15 searchPrefilterable: false sortable: true unique: false updateable: true LeadSource: apiName: LeadSource calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Lead Source length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Longitude: apiName: Longitude calculated: false compound: false compoundComponentName: Longitude compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: Double extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Longitude length: 0 nameField: false polymorphicForeignKey: false precision: 18 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 15 searchPrefilterable: false sortable: true unique: false updateable: true MasterRecordId: apiName: MasterRecordId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Master Record ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Lead nameFields: - FirstName - LastName - Name relationshipName: MasterRecord required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false MobilePhone: apiName: MobilePhone calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Phone extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Mobile Phone length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Name: apiName: Name calculated: false compound: true compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: PersonName filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Full Name length: 121 nameField: true polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false NumberOfEmployees: apiName: NumberOfEmployees calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Int extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Employees length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true NumberofLocations__c: apiName: NumberofLocations__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: Double extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Number of Locations length: 0 nameField: false polymorphicForeignKey: false precision: 3 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true OwnerId: apiName: OwnerId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Owner ID length: 18 nameField: false polymorphicForeignKey: true precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Group nameFields: - Name - apiName: User nameFields: - FirstName - LastName - Name relationshipName: Owner required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Phone: apiName: Phone calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Phone extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Phone length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true PhotoUrl: apiName: PhotoUrl calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Url extraTypeInfo: ImageUrl filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Photo URL length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false PostalCode: apiName: PostalCode calculated: false compound: false compoundComponentName: PostalCode compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Zip/Postal Code length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Primary__c: apiName: Primary__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Primary length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ProductInterest__c: apiName: ProductInterest__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Product Interest length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Rating: apiName: Rating calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Rating length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SICCode__c: apiName: SICCode__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SIC Code length: 15 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Salutation: apiName: Salutation calculated: false compound: false compoundComponentName: Salutation compoundFieldName: Name controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: PersonName filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Salutation length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true State: apiName: State calculated: false compound: false compoundComponentName: State compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: State/Province length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Status: apiName: Status calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Status length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Street: apiName: Street calculated: false compound: false compoundComponentName: Street compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: TextArea extraTypeInfo: PlainTextArea filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Street length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SystemModstamp: apiName: SystemModstamp calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: System Modstamp length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Title: apiName: Title calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Title length: 128 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Website: apiName: Website calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Url extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Website length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true keyPrefix: 00Q label: Lead labelPlural: Leads layoutable: true mruEnabled: true nameFields: - FirstName - LastName - Name queryable: true recordTypeInfos: 012000000000000AAA: available: true defaultRecordTypeMapping: true master: true name: Master recordTypeId: 012000000000000AAA searchable: true themeInfo: color: 1B96FF iconUrl: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/t4v35/standard/lead_120.png updateable: true Fields4: title: Fields4 required: - Address - AnnualRevenue - City - CleanStatus - CloneSourceId - Company - CompanyDunsNumber - ConvertedAccountId - ConvertedContactId - ConvertedDate - ConvertedOpportunityId - Country - CreatedById - CreatedDate - CurrentGenerators__c - DandbCompanyId - Description - Email - EmailBouncedDate - EmailBouncedReason - Fax - FirstName - GeocodeAccuracy - Id - IndividualId - Industry - IsConverted - IsDeleted - IsUnreadByOwner - Jigsaw - JigsawContactId - LastActivityDate - LastModifiedById - LastModifiedDate - LastName - LastReferencedDate - LastViewedDate - Latitude - LeadSource - Longitude - MasterRecordId - MobilePhone - Name - NumberOfEmployees - NumberofLocations__c - OwnerId - Phone - PhotoUrl - PostalCode - Primary__c - ProductInterest__c - Rating - SICCode__c - Salutation - State - Status - Street - SystemModstamp - Title - Website type: object properties: Address: $ref: '#/components/schemas/Address5' AnnualRevenue: $ref: '#/components/schemas/AnnualRevenue1' City: $ref: '#/components/schemas/City' CleanStatus: $ref: '#/components/schemas/CleanStatus2' CloneSourceId: $ref: '#/components/schemas/CloneSourceId' Company: $ref: '#/components/schemas/Company' CompanyDunsNumber: $ref: '#/components/schemas/CompanyDunsNumber' ConvertedAccountId: $ref: '#/components/schemas/ConvertedAccountId' ConvertedContactId: $ref: '#/components/schemas/ConvertedContactId' ConvertedDate: $ref: '#/components/schemas/ConvertedDate' ConvertedOpportunityId: $ref: '#/components/schemas/ConvertedOpportunityId' Country: $ref: '#/components/schemas/Country' CreatedById: $ref: '#/components/schemas/CreatedById2' CreatedDate: $ref: '#/components/schemas/CreatedDate2' CurrentGenerators__c: $ref: '#/components/schemas/CurrentGeneratorsC' DandbCompanyId: $ref: '#/components/schemas/DandbCompanyId1' Description: $ref: '#/components/schemas/Description5' Email: $ref: '#/components/schemas/Email1' EmailBouncedDate: $ref: '#/components/schemas/EmailBouncedDate1' EmailBouncedReason: $ref: '#/components/schemas/EmailBouncedReason1' Fax: $ref: '#/components/schemas/Fax2' FirstName: $ref: '#/components/schemas/FirstName1' GeocodeAccuracy: $ref: '#/components/schemas/GeocodeAccuracy' Id: $ref: '#/components/schemas/Id4' IndividualId: $ref: '#/components/schemas/IndividualId1' Industry: $ref: '#/components/schemas/Industry1' IsConverted: $ref: '#/components/schemas/IsConverted' IsDeleted: $ref: '#/components/schemas/IsDeleted2' IsUnreadByOwner: $ref: '#/components/schemas/IsUnreadByOwner' Jigsaw: $ref: '#/components/schemas/Jigsaw2' JigsawContactId: $ref: '#/components/schemas/JigsawContactId1' LastActivityDate: $ref: '#/components/schemas/LastActivityDate2' LastModifiedById: $ref: '#/components/schemas/LastModifiedById2' LastModifiedDate: $ref: '#/components/schemas/LastModifiedDate2' LastName: $ref: '#/components/schemas/LastName1' LastReferencedDate: $ref: '#/components/schemas/LastReferencedDate2' LastViewedDate: $ref: '#/components/schemas/LastViewedDate2' Latitude: $ref: '#/components/schemas/Latitude' LeadSource: $ref: '#/components/schemas/LeadSource1' Longitude: $ref: '#/components/schemas/Longitude' MasterRecordId: $ref: '#/components/schemas/MasterRecordId2' MobilePhone: $ref: '#/components/schemas/MobilePhone1' Name: $ref: '#/components/schemas/Name17' NumberOfEmployees: $ref: '#/components/schemas/NumberOfEmployees1' NumberofLocations__c: $ref: '#/components/schemas/NumberofLocationsC1' OwnerId: $ref: '#/components/schemas/OwnerId2' Phone: $ref: '#/components/schemas/Phone2' PhotoUrl: $ref: '#/components/schemas/PhotoUrl2' PostalCode: $ref: '#/components/schemas/PostalCode' Primary__c: $ref: '#/components/schemas/PrimaryC' ProductInterest__c: $ref: '#/components/schemas/ProductInterestC' Rating: $ref: '#/components/schemas/Rating1' SICCode__c: $ref: '#/components/schemas/SICCodeC' Salutation: $ref: '#/components/schemas/Salutation1' State: $ref: '#/components/schemas/State' Status: $ref: '#/components/schemas/Status8' Street: $ref: '#/components/schemas/Street' SystemModstamp: $ref: '#/components/schemas/SystemModstamp2' Title: $ref: '#/components/schemas/Title1' Website: $ref: '#/components/schemas/Website1' examples: - Address: apiName: Address calculated: false compound: true compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Address extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Address length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: false unique: false updateable: false AnnualRevenue: apiName: AnnualRevenue calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Currency extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Annual Revenue length: 0 nameField: false polymorphicForeignKey: false precision: 18 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true City: apiName: City calculated: false compound: false compoundComponentName: City compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: City length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true CleanStatus: apiName: CleanStatus calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Clean Status length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true CloneSourceId: apiName: CloneSourceId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Clone Source length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Company: apiName: Company calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Company length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true CompanyDunsNumber: apiName: CompanyDunsNumber calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Company D-U-N-S Number length: 9 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ConvertedAccountId: apiName: ConvertedAccountId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Converted Account ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Account nameFields: - Name relationshipName: ConvertedAccount required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: false ConvertedContactId: apiName: ConvertedContactId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Converted Contact ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Contact nameFields: - FirstName - LastName - Name relationshipName: ConvertedContact required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: false ConvertedDate: apiName: ConvertedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Date extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Converted Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false ConvertedOpportunityId: apiName: ConvertedOpportunityId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Converted Opportunity ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Opportunity nameFields: - Name relationshipName: ConvertedOpportunity required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: false Country: apiName: Country calculated: false compound: false compoundComponentName: Country compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Country length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true CreatedById: apiName: CreatedById calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Created By ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: User nameFields: - FirstName - LastName - Name relationshipName: CreatedBy required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false CreatedDate: apiName: CreatedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Created Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false CurrentGenerators__c: apiName: CurrentGenerators__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Current Generator(s) length: 100 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true DandbCompanyId: apiName: DandbCompanyId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: D&B Company ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: DandBCompany nameFields: - Name relationshipName: DandbCompany required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: true Description: apiName: Description calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: TextArea extraTypeInfo: PlainTextArea filterable: false filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Description length: 32000 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true Email: apiName: Email calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Email extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Email length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true EmailBouncedDate: apiName: EmailBouncedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Email Bounced Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true EmailBouncedReason: apiName: EmailBouncedReason calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Email Bounced Reason length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Fax: apiName: Fax calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Phone extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Fax length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true FirstName: apiName: FirstName calculated: false compound: false compoundComponentName: FirstName compoundFieldName: Name controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: PersonName filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: First Name length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true GeocodeAccuracy: apiName: GeocodeAccuracy calculated: false compound: false compoundComponentName: GeocodeAccuracy compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Geocode Accuracy length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Id: apiName: Id calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Lead ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false IndividualId: apiName: IndividualId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Individual ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Individual nameFields: - FirstName - LastName - Name relationshipName: Individual required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: true Industry: apiName: Industry calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Industry length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true IsConverted: apiName: IsConverted calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Converted length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false IsDeleted: apiName: IsDeleted calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Deleted length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false IsUnreadByOwner: apiName: IsUnreadByOwner calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Unread By Owner length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Jigsaw: apiName: Jigsaw calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Data.com Key length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true JigsawContactId: apiName: JigsawContactId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Jigsaw Contact ID length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: JigsawContact required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastActivityDate: apiName: LastActivityDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Date extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Activity length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastModifiedById: apiName: LastModifiedById calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Modified By ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: User nameFields: - FirstName - LastName - Name relationshipName: LastModifiedBy required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastModifiedDate: apiName: LastModifiedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Modified Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastName: apiName: LastName calculated: false compound: false compoundComponentName: LastName compoundFieldName: Name controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: PersonName filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Name length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true LastReferencedDate: apiName: LastReferencedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Referenced Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastViewedDate: apiName: LastViewedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Viewed Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Latitude: apiName: Latitude calculated: false compound: false compoundComponentName: Latitude compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: Double extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Latitude length: 0 nameField: false polymorphicForeignKey: false precision: 18 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 15 searchPrefilterable: false sortable: true unique: false updateable: true LeadSource: apiName: LeadSource calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Lead Source length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Longitude: apiName: Longitude calculated: false compound: false compoundComponentName: Longitude compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: Double extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Longitude length: 0 nameField: false polymorphicForeignKey: false precision: 18 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 15 searchPrefilterable: false sortable: true unique: false updateable: true MasterRecordId: apiName: MasterRecordId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Master Record ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Lead nameFields: - FirstName - LastName - Name relationshipName: MasterRecord required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false MobilePhone: apiName: MobilePhone calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Phone extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Mobile Phone length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Name: apiName: Name calculated: false compound: true compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: PersonName filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Full Name length: 121 nameField: true polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false NumberOfEmployees: apiName: NumberOfEmployees calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Int extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Employees length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true NumberofLocations__c: apiName: NumberofLocations__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: Double extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Number of Locations length: 0 nameField: false polymorphicForeignKey: false precision: 3 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true OwnerId: apiName: OwnerId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Owner ID length: 18 nameField: false polymorphicForeignKey: true precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Group nameFields: - Name - apiName: User nameFields: - FirstName - LastName - Name relationshipName: Owner required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Phone: apiName: Phone calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Phone extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Phone length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true PhotoUrl: apiName: PhotoUrl calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Url extraTypeInfo: ImageUrl filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Photo URL length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false PostalCode: apiName: PostalCode calculated: false compound: false compoundComponentName: PostalCode compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Zip/Postal Code length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Primary__c: apiName: Primary__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Primary length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ProductInterest__c: apiName: ProductInterest__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Product Interest length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Rating: apiName: Rating calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Rating length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SICCode__c: apiName: SICCode__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SIC Code length: 15 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Salutation: apiName: Salutation calculated: false compound: false compoundComponentName: Salutation compoundFieldName: Name controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: PersonName filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Salutation length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true State: apiName: State calculated: false compound: false compoundComponentName: State compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: State/Province length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Status: apiName: Status calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Status length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Street: apiName: Street calculated: false compound: false compoundComponentName: Street compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: TextArea extraTypeInfo: PlainTextArea filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Street length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SystemModstamp: apiName: SystemModstamp calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: System Modstamp length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Title: apiName: Title calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Title length: 128 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Website: apiName: Website calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Url extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Website length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Address5: title: Address5 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: Address calculated: false compound: true compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Address extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Address length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: false unique: false updateable: false AnnualRevenue1: title: AnnualRevenue1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: AnnualRevenue calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Currency extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Annual Revenue length: 0 nameField: false polymorphicForeignKey: false precision: 18 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true City: title: City required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: string example: example_value compoundFieldName: type: string example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: City calculated: false compound: false compoundComponentName: City compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: City length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true CleanStatus2: title: CleanStatus2 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: CleanStatus calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Clean Status length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true CloneSourceId: title: CloneSourceId required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: CloneSourceId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Clone Source length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Company: title: Company required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: Company calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Company length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true CompanyDunsNumber: title: CompanyDunsNumber required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: CompanyDunsNumber calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Company D-U-N-S Number length: 9 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ConvertedAccountId: title: ConvertedAccountId required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: $ref: '#/components/schemas/ReferenceToInfo' description: '' example: [] relationshipName: type: string example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: ConvertedAccountId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Converted Account ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Account nameFields: - Name relationshipName: ConvertedAccount required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: false ConvertedContactId: title: ConvertedContactId required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: $ref: '#/components/schemas/ReferenceToInfo' description: '' example: [] relationshipName: type: string example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: ConvertedContactId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Converted Contact ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Contact nameFields: - FirstName - LastName - Name relationshipName: ConvertedContact required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: false ConvertedDate: title: ConvertedDate required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: ConvertedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Date extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Converted Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false ConvertedOpportunityId: title: ConvertedOpportunityId required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: $ref: '#/components/schemas/ReferenceToInfo' description: '' example: [] relationshipName: type: string example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: ConvertedOpportunityId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Converted Opportunity ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Opportunity nameFields: - Name relationshipName: ConvertedOpportunity required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: false Country: title: Country required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: string example: example_value compoundFieldName: type: string example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: Country calculated: false compound: false compoundComponentName: Country compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Country length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true CurrentGeneratorsC: title: CurrentGeneratorsC required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: CurrentGenerators__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Current Generator(s) length: 100 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true DandbCompanyId1: title: DandbCompanyId1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: $ref: '#/components/schemas/ReferenceToInfo' description: '' example: [] relationshipName: type: string example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: DandbCompanyId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: D&B Company ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: DandBCompany nameFields: - Name relationshipName: DandbCompany required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: true Description5: title: Description5 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: string example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: Description calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: TextArea extraTypeInfo: PlainTextArea filterable: false filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Description length: 32000 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true EmailBouncedDate1: title: EmailBouncedDate1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: EmailBouncedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Email Bounced Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true EmailBouncedReason1: title: EmailBouncedReason1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: EmailBouncedReason calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Email Bounced Reason length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Fax2: title: Fax2 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: Fax calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Phone extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Fax length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true FirstName1: title: FirstName1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: string example: example_value compoundFieldName: type: string example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: string example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: FirstName calculated: false compound: false compoundComponentName: FirstName compoundFieldName: Name controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: PersonName filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: First Name length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true GeocodeAccuracy: title: GeocodeAccuracy required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: string example: example_value compoundFieldName: type: string example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: GeocodeAccuracy calculated: false compound: false compoundComponentName: GeocodeAccuracy compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Geocode Accuracy length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true IndividualId1: title: IndividualId1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: $ref: '#/components/schemas/ReferenceToInfo' description: '' example: [] relationshipName: type: string example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: IndividualId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Individual ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Individual nameFields: - FirstName - LastName - Name relationshipName: Individual required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: true Industry1: title: Industry1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: Industry calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Industry length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true IsConverted: title: IsConverted required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: IsConverted calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Converted length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false IsDeleted2: title: IsDeleted2 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: IsDeleted calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Deleted length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false IsUnreadByOwner: title: IsUnreadByOwner required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: IsUnreadByOwner calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Unread By Owner length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Jigsaw2: title: Jigsaw2 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: Jigsaw calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Data.com Key length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true JigsawContactId1: title: JigsawContactId1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: string example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: JigsawContactId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Jigsaw Contact ID length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: JigsawContact required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastActivityDate2: title: LastActivityDate2 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: LastActivityDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Date extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Activity length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastName1: title: LastName1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: string example: example_value compoundFieldName: type: string example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: string example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: LastName calculated: false compound: false compoundComponentName: LastName compoundFieldName: Name controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: PersonName filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Name length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true LastReferencedDate2: title: LastReferencedDate2 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: LastReferencedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Referenced Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastViewedDate2: title: LastViewedDate2 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: LastViewedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Viewed Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Latitude: title: Latitude required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: string example: example_value compoundFieldName: type: string example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: Latitude calculated: false compound: false compoundComponentName: Latitude compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: Double extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Latitude length: 0 nameField: false polymorphicForeignKey: false precision: 18 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 15 searchPrefilterable: false sortable: true unique: false updateable: true LeadSource1: title: LeadSource1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: LeadSource calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Lead Source length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Longitude: title: Longitude required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: string example: example_value compoundFieldName: type: string example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: Longitude calculated: false compound: false compoundComponentName: Longitude compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: Double extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Longitude length: 0 nameField: false polymorphicForeignKey: false precision: 18 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 15 searchPrefilterable: false sortable: true unique: false updateable: true MasterRecordId2: title: MasterRecordId2 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: $ref: '#/components/schemas/ReferenceToInfo' description: '' example: [] relationshipName: type: string example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: MasterRecordId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Master Record ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Lead nameFields: - FirstName - LastName - Name relationshipName: MasterRecord required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false MobilePhone1: title: MobilePhone1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: MobilePhone calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Phone extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Mobile Phone length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Name17: title: Name17 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: string example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: Name calculated: false compound: true compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: PersonName filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Full Name length: 121 nameField: true polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false NumberOfEmployees1: title: NumberOfEmployees1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: NumberOfEmployees calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Int extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Employees length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true NumberofLocationsC1: title: NumberofLocationsC1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: NumberofLocations__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: Double extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Number of Locations length: 0 nameField: false polymorphicForeignKey: false precision: 3 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Phone2: title: Phone2 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: Phone calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Phone extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Phone length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true PhotoUrl2: title: PhotoUrl2 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: string example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: PhotoUrl calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Url extraTypeInfo: ImageUrl filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Photo URL length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false PostalCode: title: PostalCode required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: string example: example_value compoundFieldName: type: string example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: PostalCode calculated: false compound: false compoundComponentName: PostalCode compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Zip/Postal Code length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true PrimaryC: title: PrimaryC required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: Primary__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Primary length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ProductInterestC: title: ProductInterestC required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: ProductInterest__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Product Interest length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Rating1: title: Rating1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: Rating calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Rating length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SICCodeC: title: SICCodeC required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: SICCode__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SIC Code length: 15 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Salutation1: title: Salutation1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: string example: example_value compoundFieldName: type: string example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: string example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: Salutation calculated: false compound: false compoundComponentName: Salutation compoundFieldName: Name controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: PersonName filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Salutation length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true State: title: State required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: string example: example_value compoundFieldName: type: string example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: State calculated: false compound: false compoundComponentName: State compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: State/Province length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Status8: title: Status8 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: Status calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Status length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Street: title: Street required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: string example: example_value compoundFieldName: type: string example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: string example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: Street calculated: false compound: false compoundComponentName: Street compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: TextArea extraTypeInfo: PlainTextArea filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Street length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Title1: title: Title1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: Title calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Title length: 128 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Website1: title: Website1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: Website calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Url extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Website length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true RecordTypeInfos: title: RecordTypeInfos required: - 012000000000000AAA type: object properties: 012000000000000AAA: $ref: '#/components/schemas/012000000000000AAA1' examples: - 012000000000000AAA: available: true defaultRecordTypeMapping: true master: true name: Master recordTypeId: 012000000000000AAA 012000000000000AAA1: title: 012000000000000AAA1 required: - available - defaultRecordTypeMapping - master - name - recordTypeId type: object properties: available: type: boolean example: true defaultRecordTypeMapping: type: boolean example: true master: type: boolean example: true name: type: string example: Example Title recordTypeId: type: string example: '500123' examples: - available: true defaultRecordTypeMapping: true master: true name: Master recordTypeId: 012000000000000AAA Name18: title: Name18 required: - apiName - associateEntityType - associateParentEntity - childRelationships - createable - custom - defaultRecordTypeId - deletable - dependentFields - eTag - feedEnabled - fields - keyPrefix - label - labelPlural - layoutable - mruEnabled - nameFields - queryable - recordTypeInfos - searchable - themeInfo - updateable type: object properties: apiName: type: string example: example_value associateEntityType: type: - string - 'null' example: example_value associateParentEntity: type: - string - 'null' example: example_value childRelationships: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true defaultRecordTypeId: type: - string - 'null' example: '500123' deletable: type: boolean example: true dependentFields: type: object example: example_value eTag: type: string example: example_value feedEnabled: type: boolean example: true fields: $ref: '#/components/schemas/Fields5' keyPrefix: type: - string - 'null' example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value layoutable: type: boolean example: true mruEnabled: type: boolean example: true nameFields: type: array items: type: string description: '' example: [] queryable: type: boolean example: true recordTypeInfos: type: object example: example_value searchable: type: boolean example: true themeInfo: type: - string - 'null' example: example_value updateable: type: boolean example: true examples: - apiName: Name associateEntityType: associateParentEntity: childRelationships: [] createable: false custom: false defaultRecordTypeId: deletable: false dependentFields: {} eTag: 573f4fe385d2beee7dae9c908017b144 feedEnabled: false fields: Alias: apiName: Alias calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Alias length: 8 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false CommunityNickname: apiName: CommunityNickname calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Nickname length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Email: apiName: Email calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Email extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Email length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false FirstName: apiName: FirstName calculated: false compound: false compoundComponentName: FirstName compoundFieldName: Name controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: SwitchablePersonName filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: First Name length: 40 nameField: true polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Id: apiName: Id calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false IsActive: apiName: IsActive calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Active length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastName: apiName: LastName calculated: false compound: false compoundComponentName: LastName compoundFieldName: Name controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: SwitchablePersonName filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Name length: 80 nameField: true polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastReferencedDate: apiName: LastReferencedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Referenced Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastViewedDate: apiName: LastViewedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Viewed Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Name: apiName: Name calculated: false compound: true compoundComponentName: compoundFieldName: Name controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: SwitchablePersonName filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Name length: 255 nameField: true polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false NameOrAlias: apiName: NameOrAlias calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Name or Alias length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Phone: apiName: Phone calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Phone extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Phone length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false ProfileId: apiName: ProfileId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Profile ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Profile nameFields: - Name relationshipName: Profile required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false RecordTypeId: apiName: RecordTypeId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Record Type ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: RecordType nameFields: - Name relationshipName: RecordType required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Title: apiName: Title calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Title length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Type: apiName: Type calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Type length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false UserRoleId: apiName: UserRoleId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Role ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: UserRole nameFields: - Name relationshipName: UserRole required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Username: apiName: Username calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Username length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false keyPrefix: label: Name labelPlural: Names layoutable: false mruEnabled: false nameFields: - FirstName - LastName - Name queryable: false recordTypeInfos: {} searchable: false themeInfo: updateable: false Fields5: title: Fields5 required: - Alias - CommunityNickname - Email - FirstName - Id - IsActive - LastName - LastReferencedDate - LastViewedDate - Name - NameOrAlias - Phone - ProfileId - RecordTypeId - Title - Type - UserRoleId - Username type: object properties: Alias: $ref: '#/components/schemas/Alias' CommunityNickname: $ref: '#/components/schemas/CommunityNickname' Email: $ref: '#/components/schemas/Email1' FirstName: $ref: '#/components/schemas/FirstName1' Id: $ref: '#/components/schemas/Id4' IsActive: $ref: '#/components/schemas/IsActive' LastName: $ref: '#/components/schemas/LastName1' LastReferencedDate: $ref: '#/components/schemas/LastReferencedDate2' LastViewedDate: $ref: '#/components/schemas/LastViewedDate2' Name: $ref: '#/components/schemas/Name19' NameOrAlias: $ref: '#/components/schemas/NameOrAlias' Phone: $ref: '#/components/schemas/Phone2' ProfileId: $ref: '#/components/schemas/ProfileId' RecordTypeId: $ref: '#/components/schemas/RecordTypeId' Title: $ref: '#/components/schemas/Title1' Type: $ref: '#/components/schemas/Type7' UserRoleId: $ref: '#/components/schemas/UserRoleId' Username: $ref: '#/components/schemas/Username' examples: - Alias: apiName: Alias calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Alias length: 8 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false CommunityNickname: apiName: CommunityNickname calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Nickname length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Email: apiName: Email calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Email extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Email length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false FirstName: apiName: FirstName calculated: false compound: false compoundComponentName: FirstName compoundFieldName: Name controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: SwitchablePersonName filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: First Name length: 40 nameField: true polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Id: apiName: Id calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false IsActive: apiName: IsActive calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Active length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastName: apiName: LastName calculated: false compound: false compoundComponentName: LastName compoundFieldName: Name controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: SwitchablePersonName filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Name length: 80 nameField: true polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastReferencedDate: apiName: LastReferencedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Referenced Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastViewedDate: apiName: LastViewedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Viewed Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Name: apiName: Name calculated: false compound: true compoundComponentName: compoundFieldName: Name controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: SwitchablePersonName filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Name length: 255 nameField: true polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false NameOrAlias: apiName: NameOrAlias calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Name or Alias length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Phone: apiName: Phone calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Phone extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Phone length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false ProfileId: apiName: ProfileId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Profile ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Profile nameFields: - Name relationshipName: Profile required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false RecordTypeId: apiName: RecordTypeId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Record Type ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: RecordType nameFields: - Name relationshipName: RecordType required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Title: apiName: Title calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Title length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Type: apiName: Type calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Type length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false UserRoleId: apiName: UserRoleId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Role ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: UserRole nameFields: - Name relationshipName: UserRole required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Username: apiName: Username calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Username length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Alias: title: Alias required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: Alias calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Alias length: 8 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false CommunityNickname: title: CommunityNickname required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: CommunityNickname calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Nickname length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false IsActive: title: IsActive required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: IsActive calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Active length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Name19: title: Name19 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: string example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: string example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: Name calculated: false compound: true compoundComponentName: compoundFieldName: Name controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: SwitchablePersonName filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Name length: 255 nameField: true polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false NameOrAlias: title: NameOrAlias required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: NameOrAlias calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Name or Alias length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false ProfileId: title: ProfileId required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: $ref: '#/components/schemas/ReferenceToInfo' description: '' example: [] relationshipName: type: string example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: ProfileId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Profile ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Profile nameFields: - Name relationshipName: Profile required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false RecordTypeId: title: RecordTypeId required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: $ref: '#/components/schemas/ReferenceToInfo' description: '' example: [] relationshipName: type: string example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: RecordTypeId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Record Type ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: RecordType nameFields: - Name relationshipName: RecordType required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false UserRoleId: title: UserRoleId required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: $ref: '#/components/schemas/ReferenceToInfo' description: '' example: [] relationshipName: type: string example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserRoleId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Role ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: UserRole nameFields: - Name relationshipName: UserRole required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Username: title: Username required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: Username calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Username length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false User7: title: User7 required: - apiName - associateEntityType - associateParentEntity - childRelationships - createable - custom - defaultRecordTypeId - deletable - dependentFields - eTag - feedEnabled - fields - keyPrefix - label - labelPlural - layoutable - mruEnabled - nameFields - queryable - recordTypeInfos - searchable - themeInfo - updateable type: object properties: apiName: type: string example: example_value associateEntityType: type: - string - 'null' example: example_value associateParentEntity: type: - string - 'null' example: example_value childRelationships: type: array items: $ref: '#/components/schemas/ChildRelationship2' description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true defaultRecordTypeId: type: - string - 'null' example: '500123' deletable: type: boolean example: true dependentFields: type: object example: example_value eTag: type: string example: example_value feedEnabled: type: boolean example: true fields: $ref: '#/components/schemas/Fields6' keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value layoutable: type: boolean example: true mruEnabled: type: boolean example: true nameFields: type: array items: type: string description: '' example: [] queryable: type: boolean example: true recordTypeInfos: type: object example: example_value searchable: type: boolean example: true themeInfo: $ref: '#/components/schemas/ThemeInfo' updateable: type: boolean example: true examples: - apiName: User associateEntityType: associateParentEntity: childRelationships: - childObjectApiName: AcceptedEventRelation fieldName: RelationId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: AcceptedEventRelations - childObjectApiName: AccountCleanInfo fieldName: LastStatusChangedById junctionIdListNames: [] junctionReferenceTo: [] relationshipName: AccountCleanInfoReviewers - childObjectApiName: AnalyticNotification fieldName: RunAsId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: AnalyticNotificationRunAsUsers - childObjectApiName: AttachedContentDocument fieldName: LinkedEntityId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: AttachedContentDocuments - childObjectApiName: AuthorizationFormConsent fieldName: ConsentGiverId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: AuthorizationFormConsents - childObjectApiName: CollaborationGroupMember fieldName: MemberId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: GroupMemberships - childObjectApiName: CollaborationGroupMemberRequest fieldName: RequesterId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: GroupMembershipRequests - childObjectApiName: CombinedAttachment fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: CombinedAttachments - childObjectApiName: ContactCleanInfo fieldName: LastStatusChangedById junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ContactCleanInfoReviewers - childObjectApiName: ContactRequest fieldName: WhoId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ContactRequests - childObjectApiName: ContentDocumentLink fieldName: LinkedEntityId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ContentDocumentLinks - childObjectApiName: Contract fieldName: CompanySignedId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ContractsSigned - childObjectApiName: DeclinedEventRelation fieldName: RelationId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: DeclinedEventRelations - childObjectApiName: DelegatedAccount fieldName: ManagedById junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ParentId - childObjectApiName: EmailMessageRelation fieldName: RelationId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: EmailMessageRelations - childObjectApiName: EntitySubscription fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: FeedSubscriptionsForEntity - childObjectApiName: EntitySubscription fieldName: SubscriberId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: FeedSubscriptions - childObjectApiName: EventRelation fieldName: RelationId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: EventRelations - childObjectApiName: ExternalDataUserAuth fieldName: UserId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ExternalDataUserAuths - childObjectApiName: FlowOrchestrationWorkItem fieldName: RelatedRecordId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: FlowOrchestrationWorkItems - childObjectApiName: InstalledMobileApp fieldName: UserId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: InstalledMobileApps - childObjectApiName: LeadCleanInfo fieldName: LastStatusChangedById junctionIdListNames: [] junctionReferenceTo: [] relationshipName: LeadCleanInfoReviewers - childObjectApiName: NetworkActivityAudit fieldName: EntityCreatedById junctionIdListNames: [] junctionReferenceTo: [] relationshipName: EntityCreators - childObjectApiName: NetworkActivityAudit fieldName: ParentEntityId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ParentEntities - childObjectApiName: NetworkMember fieldName: MemberId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: NetworkMemberUsers - childObjectApiName: NetworkUserHistoryRecent fieldName: NetworkUserId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: NetworkUserHistoryRecentToUser - childObjectApiName: OutgoingEmailRelation fieldName: RelationId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: OutgoingEmailRelations - childObjectApiName: OwnedContentDocument fieldName: OwnerId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: OwnedContentDocuments - childObjectApiName: PermissionSetAssignment fieldName: AssigneeId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: PermissionSetAssignments - childObjectApiName: PermissionSetLicenseAssign fieldName: AssigneeId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: PermissionSetLicenseAssignments - childObjectApiName: Photo fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Photos - childObjectApiName: ProfileSkillEndorsement fieldName: UserId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: UserProfileSkillUserEndorsements - childObjectApiName: ProfileSkillUser fieldName: UserId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: UserProfileSkillChildren - childObjectApiName: RecordAction fieldName: RecordId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: RecordActions - childObjectApiName: RecordActionHistory fieldName: ParentRecordId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: RecordActionHistories - childObjectApiName: SessionPermSetActivation fieldName: UserId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: SessionPermSetActivations - childObjectApiName: Site fieldName: AdminId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: UserSites - childObjectApiName: UndecidedEventRelation fieldName: RelationId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: UndecidedEventRelations - childObjectApiName: User fieldName: DelegatedApproverId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: DelegatedUsers - childObjectApiName: User fieldName: ManagerId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ManagedUsers - childObjectApiName: UserEmailPreferredPerson fieldName: PersonRecordId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: PersonRecord - childObjectApiName: UserEntityAccess fieldName: UserId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: UserEntityAccessRights - childObjectApiName: UserFeed fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Feeds - childObjectApiName: UserFieldAccess fieldName: UserId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: UserFieldAccessRights - childObjectApiName: UserPreference fieldName: UserId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: UserPreferences - childObjectApiName: UserShare fieldName: UserId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Shares - childObjectApiName: WorkBadge fieldName: RecipientId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Badges - childObjectApiName: WorkThanks fieldName: GiverId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: GivenThanks createable: true custom: false defaultRecordTypeId: deletable: false dependentFields: {} eTag: d448e1084760248d7990ca72c7ab1ef4 feedEnabled: true fields: AboutMe: apiName: AboutMe calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: TextArea extraTypeInfo: PlainTextArea filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: About Me length: 1000 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true AccountId: apiName: AccountId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Account nameFields: - Name relationshipName: Account required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: false Address: apiName: Address calculated: false compound: true compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Address extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Address length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: false unique: false updateable: false Alias: apiName: Alias calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Alias length: 8 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true BadgeText: apiName: BadgeText calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: User Photo badge text overlay length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false BannerPhotoId: apiName: BannerPhotoId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Photo ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Photo nameFields: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false BannerPhotoUrl: apiName: BannerPhotoUrl calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Url extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Url for banner photo length: 1024 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false CallCenterId: apiName: CallCenterId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Call Center ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: CallCenter nameFields: - Name relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true City: apiName: City calculated: false compound: false compoundComponentName: City compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: City length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true CommunityNickname: apiName: CommunityNickname calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Nickname length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true CompanyName: apiName: CompanyName calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Company Name length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ContactId: apiName: ContactId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Contact ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Contact nameFields: - FirstName - LastName - Name relationshipName: Contact required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: true Country: apiName: Country calculated: false compound: false compoundComponentName: Country compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Country length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true CreatedById: apiName: CreatedById calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Created By ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: User nameFields: - FirstName - LastName - Name relationshipName: CreatedBy required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false CreatedDate: apiName: CreatedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Created Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false DefaultGroupNotificationFrequency: apiName: DefaultGroupNotificationFrequency calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Default Notification Frequency when Joining Groups length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true DelegatedApproverId: apiName: DelegatedApproverId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Delegated Approver ID length: 18 nameField: false polymorphicForeignKey: true precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Group nameFields: - Name - apiName: User nameFields: - FirstName - LastName - Name relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Department: apiName: Department calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Department length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true DigestFrequency: apiName: DigestFrequency calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Chatter Email Highlights Frequency length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Division: apiName: Division calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Division length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Email: apiName: Email calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Email extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Email length: 128 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true EmailEncodingKey: apiName: EmailEncodingKey calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Email Encoding length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true EmailPreferencesAutoBcc: apiName: EmailPreferencesAutoBcc calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: AutoBcc length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true EmailPreferencesAutoBccStayInTouch: apiName: EmailPreferencesAutoBccStayInTouch calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: AutoBccStayInTouch length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true EmailPreferencesStayInTouchReminder: apiName: EmailPreferencesStayInTouchReminder calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: StayInTouchReminder length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true EmployeeNumber: apiName: EmployeeNumber calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Employee Number length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Extension: apiName: Extension calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Phone extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Extension length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Fax: apiName: Fax calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Phone extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Fax length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true FederationIdentifier: apiName: FederationIdentifier calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SAML Federation ID length: 512 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true FirstName: apiName: FirstName calculated: false compound: false compoundComponentName: FirstName compoundFieldName: Name controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: PersonName filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: First Name length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ForecastEnabled: apiName: ForecastEnabled calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Allow Forecasting length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true FullPhotoUrl: apiName: FullPhotoUrl calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Url extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Url for full-sized Photo length: 1024 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false GeocodeAccuracy: apiName: GeocodeAccuracy calculated: false compound: false compoundComponentName: GeocodeAccuracy compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Geocode Accuracy length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Id: apiName: Id calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: User ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false IndividualId: apiName: IndividualId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Individual ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Individual nameFields: - FirstName - LastName - Name relationshipName: Individual required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: true IsActive: apiName: IsActive calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Active length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true IsExtIndicatorVisible: apiName: IsExtIndicatorVisible calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Show external indicator length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false IsPortalEnabled: apiName: IsPortalEnabled calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Is Portal Enabled length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true IsProfilePhotoActive: apiName: IsProfilePhotoActive calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Has Profile Photo length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false JigsawImportLimitOverride: apiName: JigsawImportLimitOverride calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Int extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Data.com Monthly Addition Limit length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true LanguageLocaleKey: apiName: LanguageLocaleKey calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Language length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true LastLoginDate: apiName: LastLoginDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Login length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastModifiedById: apiName: LastModifiedById calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Modified By ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: User nameFields: - FirstName - LastName - Name relationshipName: LastModifiedBy required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastModifiedDate: apiName: LastModifiedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Modified Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastName: apiName: LastName calculated: false compound: false compoundComponentName: LastName compoundFieldName: Name controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: PersonName filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Name length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true LastPasswordChangeDate: apiName: LastPasswordChangeDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Password Change or Reset length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastReferencedDate: apiName: LastReferencedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Referenced Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastViewedDate: apiName: LastViewedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Viewed Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Latitude: apiName: Latitude calculated: false compound: false compoundComponentName: Latitude compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: Double extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Latitude length: 0 nameField: false polymorphicForeignKey: false precision: 18 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 15 searchPrefilterable: false sortable: true unique: false updateable: true LocaleSidKey: apiName: LocaleSidKey calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Locale length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Longitude: apiName: Longitude calculated: false compound: false compoundComponentName: Longitude compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: Double extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Longitude length: 0 nameField: false polymorphicForeignKey: false precision: 18 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 15 searchPrefilterable: false sortable: true unique: false updateable: true ManagerId: apiName: ManagerId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Manager ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: User nameFields: - FirstName - LastName - Name relationshipName: Manager required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: true MediumBannerPhotoUrl: apiName: MediumBannerPhotoUrl calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Url extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Url for Android banner photo length: 1024 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false MediumPhotoUrl: apiName: MediumPhotoUrl calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Url extraTypeInfo: ImageUrl filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Url for medium profile photo length: 1024 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false MobilePhone: apiName: MobilePhone calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Phone extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Mobile length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Name: apiName: Name calculated: false compound: true compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: PersonName filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Full Name length: 121 nameField: true polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false NumberOfFailedLogins: apiName: NumberOfFailedLogins calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Int extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Failed Login Attempts length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false OfflinePdaTrialExpirationDate: apiName: OfflinePdaTrialExpirationDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Sales Anywhere Trial Expiration Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false OfflineTrialExpirationDate: apiName: OfflineTrialExpirationDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Offline Edition Trial Expiration Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false OutOfOfficeMessage: apiName: OutOfOfficeMessage calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Out of office message length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Phone: apiName: Phone calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Phone extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Phone length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true PortalRole: apiName: PortalRole calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Portal Role Level length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true PostalCode: apiName: PostalCode calculated: false compound: false compoundComponentName: PostalCode compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Zip/Postal Code length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ProfileId: apiName: ProfileId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Profile ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Profile nameFields: - Name relationshipName: Profile required: true scale: 0 searchPrefilterable: true sortable: true unique: false updateable: true ProfilePhotoId: apiName: ProfilePhotoId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Photo ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Photo nameFields: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false ReceivesAdminInfoEmails: apiName: ReceivesAdminInfoEmails calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Admin Info Emails length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ReceivesInfoEmails: apiName: ReceivesInfoEmails calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Info Emails length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SenderEmail: apiName: SenderEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Email extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Email Sender Address length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SenderName: apiName: SenderName calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Email Sender Name length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Signature: apiName: Signature calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: TextArea extraTypeInfo: PlainTextArea filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Email Signature length: 1333 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SmallBannerPhotoUrl: apiName: SmallBannerPhotoUrl calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Url extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Url for IOS banner photo length: 1024 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false SmallPhotoUrl: apiName: SmallPhotoUrl calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Url extraTypeInfo: ImageUrl filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Photo length: 1024 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false State: apiName: State calculated: false compound: false compoundComponentName: State compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: State/Province length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true StayInTouchNote: apiName: StayInTouchNote calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Stay-in-Touch Email Note length: 512 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true StayInTouchSignature: apiName: StayInTouchSignature calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: TextArea extraTypeInfo: PlainTextArea filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Stay-in-Touch Email Signature length: 512 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true StayInTouchSubject: apiName: StayInTouchSubject calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Stay-in-Touch Email Subject length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Street: apiName: Street calculated: false compound: false compoundComponentName: Street compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: TextArea extraTypeInfo: PlainTextArea filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Street length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SystemModstamp: apiName: SystemModstamp calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: System Modstamp length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false TimeZoneSidKey: apiName: TimeZoneSidKey calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Time Zone length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Title: apiName: Title calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Title length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true UserPermissionsCallCenterAutoLogin: apiName: UserPermissionsCallCenterAutoLogin calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Auto-login To Call Center length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPermissionsInteractionUser: apiName: UserPermissionsInteractionUser calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Flow User length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPermissionsJigsawProspectingUser: apiName: UserPermissionsJigsawProspectingUser calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Data.com User length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPermissionsKnowledgeUser: apiName: UserPermissionsKnowledgeUser calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Knowledge User length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPermissionsMarketingUser: apiName: UserPermissionsMarketingUser calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Marketing User length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPermissionsOfflineUser: apiName: UserPermissionsOfflineUser calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Offline User length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPermissionsSFContentUser: apiName: UserPermissionsSFContentUser calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Salesforce CRM Content User length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPermissionsSiteforceContributorUser: apiName: UserPermissionsSiteforceContributorUser calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Site.com Contributor User length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPermissionsSiteforcePublisherUser: apiName: UserPermissionsSiteforcePublisherUser calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Site.com Publisher User length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPermissionsSupportUser: apiName: UserPermissionsSupportUser calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Service Cloud User length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPermissionsWorkDotComUserFeature: apiName: UserPermissionsWorkDotComUserFeature calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: WDC User length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesActivityRemindersPopup: apiName: UserPreferencesActivityRemindersPopup calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ActivityRemindersPopup length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesApexPagesDeveloperMode: apiName: UserPreferencesApexPagesDeveloperMode calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ApexPagesDeveloperMode length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesCacheDiagnostics: apiName: UserPreferencesCacheDiagnostics calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: CacheDiagnostics length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesContentEmailAsAndWhen: apiName: UserPreferencesContentEmailAsAndWhen calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ContentEmailAsAndWhen length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesContentNoEmail: apiName: UserPreferencesContentNoEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ContentNoEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesCreateLEXAppsWTShown: apiName: UserPreferencesCreateLEXAppsWTShown calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: CreateLEXAppsWTShown length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDedupeStorageMigrationComplete: apiName: UserPreferencesDedupeStorageMigrationComplete calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DedupeStorageMigrationComplete length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisCommentAfterLikeEmail: apiName: UserPreferencesDisCommentAfterLikeEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisCommentAfterLikeEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisMentionsCommentEmail: apiName: UserPreferencesDisMentionsCommentEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisMentionsCommentEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisProfPostCommentEmail: apiName: UserPreferencesDisProfPostCommentEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisProfPostCommentEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableAllFeedsEmail: apiName: UserPreferencesDisableAllFeedsEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableAllFeedsEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableBookmarkEmail: apiName: UserPreferencesDisableBookmarkEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableBookmarkEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableChangeCommentEmail: apiName: UserPreferencesDisableChangeCommentEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableChangeCommentEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableEndorsementEmail: apiName: UserPreferencesDisableEndorsementEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableEndorsementEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableFileShareNotificationsForApi: apiName: UserPreferencesDisableFileShareNotificationsForApi calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableFileShareNotificationsForApi length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableFollowersEmail: apiName: UserPreferencesDisableFollowersEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableFollowersEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableLaterCommentEmail: apiName: UserPreferencesDisableLaterCommentEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableLaterCommentEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableLikeEmail: apiName: UserPreferencesDisableLikeEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableLikeEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableMentionsPostEmail: apiName: UserPreferencesDisableMentionsPostEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableMentionsPostEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableMessageEmail: apiName: UserPreferencesDisableMessageEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableMessageEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableProfilePostEmail: apiName: UserPreferencesDisableProfilePostEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableProfilePostEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableSharePostEmail: apiName: UserPreferencesDisableSharePostEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableSharePostEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesEnableAutoSubForFeeds: apiName: UserPreferencesEnableAutoSubForFeeds calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: EnableAutoSubForFeeds length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesEventRemindersCheckboxDefault: apiName: UserPreferencesEventRemindersCheckboxDefault calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: EventRemindersCheckboxDefault length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesExcludeMailAppAttachments: apiName: UserPreferencesExcludeMailAppAttachments calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ExcludeMailAppAttachments length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesFavoritesShowTopFavorites: apiName: UserPreferencesFavoritesShowTopFavorites calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: FavoritesShowTopFavorites length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesFavoritesWTShown: apiName: UserPreferencesFavoritesWTShown calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: FavoritesWTShown length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesFirstTimeInLightning: apiName: UserPreferencesFirstTimeInLightning calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: FirstTimeInLightning length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesGlobalNavBarWTShown: apiName: UserPreferencesGlobalNavBarWTShown calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: GlobalNavBarWTShown length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesGlobalNavGridMenuWTShown: apiName: UserPreferencesGlobalNavGridMenuWTShown calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: GlobalNavGridMenuWTShown length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHasCelebrationBadge: apiName: UserPreferencesHasCelebrationBadge calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HasCelebrationBadge length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHasSentWarningEmail: apiName: UserPreferencesHasSentWarningEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HasSentWarningEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHasSentWarningEmail238: apiName: UserPreferencesHasSentWarningEmail238 calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HasSentWarningEmail238 length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHasSentWarningEmail240: apiName: UserPreferencesHasSentWarningEmail240 calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HasSentWarningEmail240 length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHeavyPagePromptEnabled: apiName: UserPreferencesHeavyPagePromptEnabled calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HeavyPagePromptEnabled length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideBiggerPhotoCallout: apiName: UserPreferencesHideBiggerPhotoCallout calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideBiggerPhotoCallout length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideCSNDesktopTask: apiName: UserPreferencesHideCSNDesktopTask calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideCSNDesktopTask length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideCSNGetChatterMobileTask: apiName: UserPreferencesHideCSNGetChatterMobileTask calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideCSNGetChatterMobileTask length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideChatterOnboardingSplash: apiName: UserPreferencesHideChatterOnboardingSplash calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideChatterOnboardingSplash length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideEndUserOnboardingAssistantModal: apiName: UserPreferencesHideEndUserOnboardingAssistantModal calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideEndUserOnboardingAssistantModal length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideEventCalendar: apiName: UserPreferencesHideEventCalendar calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideEventCalendar length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideLearningPathModal: apiName: UserPreferencesHideLearningPathModal calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideLearningPathModal length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideLightningMigrationModal: apiName: UserPreferencesHideLightningMigrationModal calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideLightningMigrationModal length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideMailAppEAPUserGuidance: apiName: UserPreferencesHideMailAppEAPUserGuidance calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideMailAppEAPUserGuidance length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideMailAppWelcomeMat: apiName: UserPreferencesHideMailAppWelcomeMat calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideMailAppWelcomeMat length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideS1BrowserUI: apiName: UserPreferencesHideS1BrowserUI calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideS1BrowserUI length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideSecondChatterOnboardingSplash: apiName: UserPreferencesHideSecondChatterOnboardingSplash calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideSecondChatterOnboardingSplash length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideSfxWelcomeMat: apiName: UserPreferencesHideSfxWelcomeMat calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideSfxWelcomeMat length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideTaskListViewsPopover: apiName: UserPreferencesHideTaskListViewsPopover calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideTaskListViewsPopover length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideTrialsCelebration: apiName: UserPreferencesHideTrialsCelebration calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideTrialsCelebration length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideTrialsWelcomeMat: apiName: UserPreferencesHideTrialsWelcomeMat calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideTrialsWelcomeMat length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesJigsawListUser: apiName: UserPreferencesJigsawListUser calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: JigsawListUser length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesLightningExperiencePreferred: apiName: UserPreferencesLightningExperiencePreferred calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: LightningExperiencePreferred length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesLtngPromoReserved10UserPref: apiName: UserPreferencesLtngPromoReserved10UserPref calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: LtngPromoReserved10UserPref length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesLtngPromoReserved16UserPref: apiName: UserPreferencesLtngPromoReserved16UserPref calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: LtngPromoReserved16UserPref length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesLtngPromoReserved19UserPref: apiName: UserPreferencesLtngPromoReserved19UserPref calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: LtngPromoReserved19UserPref length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesNativeEmailClient: apiName: UserPreferencesNativeEmailClient calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: NativeEmailClient length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesNewLightningReportRunPageEnabled: apiName: UserPreferencesNewLightningReportRunPageEnabled calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: NewLightningReportRunPageEnabled length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesPathAssistantCollapsed: apiName: UserPreferencesPathAssistantCollapsed calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: PathAssistantCollapsed length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesPreviewCustomTheme: apiName: UserPreferencesPreviewCustomTheme calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: PreviewCustomTheme length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesPreviewLightning: apiName: UserPreferencesPreviewLightning calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: PreviewLightning length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesReadReceiptLastToggleValue: apiName: UserPreferencesReadReceiptLastToggleValue calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ReadReceiptLastToggleValue length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesReceiveNoNotificationsAsApprover: apiName: UserPreferencesReceiveNoNotificationsAsApprover calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ReceiveNoNotificationsAsApprover length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesReceiveNotificationsAsDelegatedApprover: apiName: UserPreferencesReceiveNotificationsAsDelegatedApprover calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ReceiveNotificationsAsDelegatedApprover length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesRecordHomeReservedWTShown: apiName: UserPreferencesRecordHomeReservedWTShown calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: RecordHomeReservedWTShown length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesRecordHomeSectionCollapseWTShown: apiName: UserPreferencesRecordHomeSectionCollapseWTShown calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: RecordHomeSectionCollapseWTShown length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesReminderSoundOff: apiName: UserPreferencesReminderSoundOff calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ReminderSoundOff length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesReverseOpenActivitiesView: apiName: UserPreferencesReverseOpenActivitiesView calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ReverseOpenActivitiesView length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesSRHOverrideActivities: apiName: UserPreferencesSRHOverrideActivities calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SRHOverrideActivities length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesSalesEssentialsSetupAssistantCompleted: apiName: UserPreferencesSalesEssentialsSetupAssistantCompleted calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SalesEssentialsSetupAssistantCompleted length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesSetupAssistantUserPref1: apiName: UserPreferencesSetupAssistantUserPref1 calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SetupAssistantUserPref1 length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowCityToExternalUsers: apiName: UserPreferencesShowCityToExternalUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowCityToExternalUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowCityToGuestUsers: apiName: UserPreferencesShowCityToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowCityToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowCountryToExternalUsers: apiName: UserPreferencesShowCountryToExternalUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowCountryToExternalUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowCountryToGuestUsers: apiName: UserPreferencesShowCountryToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowCountryToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowEmailToExternalUsers: apiName: UserPreferencesShowEmailToExternalUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowEmailToExternalUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowEmailToGuestUsers: apiName: UserPreferencesShowEmailToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowEmailToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowFaxToExternalUsers: apiName: UserPreferencesShowFaxToExternalUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowFaxToExternalUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowFaxToGuestUsers: apiName: UserPreferencesShowFaxToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowFaxToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowForecastingChangeSignals: apiName: UserPreferencesShowForecastingChangeSignals calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowForecastingChangeSignals length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowManagerToExternalUsers: apiName: UserPreferencesShowManagerToExternalUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowManagerToExternalUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowManagerToGuestUsers: apiName: UserPreferencesShowManagerToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowManagerToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowMobilePhoneToExternalUsers: apiName: UserPreferencesShowMobilePhoneToExternalUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowMobilePhoneToExternalUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowMobilePhoneToGuestUsers: apiName: UserPreferencesShowMobilePhoneToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowMobilePhoneToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowPostalCodeToExternalUsers: apiName: UserPreferencesShowPostalCodeToExternalUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowPostalCodeToExternalUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowPostalCodeToGuestUsers: apiName: UserPreferencesShowPostalCodeToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowPostalCodeToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowProfilePicToGuestUsers: apiName: UserPreferencesShowProfilePicToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowProfilePicToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowStateToExternalUsers: apiName: UserPreferencesShowStateToExternalUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowStateToExternalUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowStateToGuestUsers: apiName: UserPreferencesShowStateToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowStateToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowStreetAddressToExternalUsers: apiName: UserPreferencesShowStreetAddressToExternalUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowStreetAddressToExternalUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowStreetAddressToGuestUsers: apiName: UserPreferencesShowStreetAddressToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowStreetAddressToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowTitleToExternalUsers: apiName: UserPreferencesShowTitleToExternalUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowTitleToExternalUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowTitleToGuestUsers: apiName: UserPreferencesShowTitleToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowTitleToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowWorkPhoneToExternalUsers: apiName: UserPreferencesShowWorkPhoneToExternalUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowWorkPhoneToExternalUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowWorkPhoneToGuestUsers: apiName: UserPreferencesShowWorkPhoneToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowWorkPhoneToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesSortFeedByComment: apiName: UserPreferencesSortFeedByComment calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SortFeedByComment length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesSuppressEventSFXReminders: apiName: UserPreferencesSuppressEventSFXReminders calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SuppressEventSFXReminders length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesSuppressTaskSFXReminders: apiName: UserPreferencesSuppressTaskSFXReminders calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SuppressTaskSFXReminders length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesTaskRemindersCheckboxDefault: apiName: UserPreferencesTaskRemindersCheckboxDefault calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: TaskRemindersCheckboxDefault length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesTodayGettingStarted: apiName: UserPreferencesTodayGettingStarted calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: TodayGettingStarted length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesTrailheadBadgeCreated: apiName: UserPreferencesTrailheadBadgeCreated calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: TrailheadBadgeCreated length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesUserDebugModePref: apiName: UserPreferencesUserDebugModePref calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: UserDebugModePref length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserRoleId: apiName: UserRoleId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Role ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: UserRole nameFields: - Name relationshipName: UserRole required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: true UserType: apiName: UserType calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: User Type length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Username: apiName: Username calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Username length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true keyPrefix: '005' label: User labelPlural: People layoutable: true mruEnabled: true nameFields: - FirstName - LastName - Name queryable: true recordTypeInfos: {} searchable: true themeInfo: color: 1B96FF iconUrl: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/t4v35/standard/user_120.png updateable: true Fields6: title: Fields6 required: - AboutMe - AccountId - Address - Alias - BadgeText - BannerPhotoId - BannerPhotoUrl - CallCenterId - City - CommunityNickname - CompanyName - ContactId - Country - CreatedById - CreatedDate - DefaultGroupNotificationFrequency - DelegatedApproverId - Department - DigestFrequency - Division - Email - EmailEncodingKey - EmailPreferencesAutoBcc - EmailPreferencesAutoBccStayInTouch - EmailPreferencesStayInTouchReminder - EmployeeNumber - Extension - Fax - FederationIdentifier - FirstName - ForecastEnabled - FullPhotoUrl - GeocodeAccuracy - Id - IndividualId - IsActive - IsExtIndicatorVisible - IsPortalEnabled - IsProfilePhotoActive - JigsawImportLimitOverride - LanguageLocaleKey - LastLoginDate - LastModifiedById - LastModifiedDate - LastName - LastPasswordChangeDate - LastReferencedDate - LastViewedDate - Latitude - LocaleSidKey - Longitude - ManagerId - MediumBannerPhotoUrl - MediumPhotoUrl - MobilePhone - Name - NumberOfFailedLogins - OfflinePdaTrialExpirationDate - OfflineTrialExpirationDate - OutOfOfficeMessage - Phone - PortalRole - PostalCode - ProfileId - ProfilePhotoId - ReceivesAdminInfoEmails - ReceivesInfoEmails - SenderEmail - SenderName - Signature - SmallBannerPhotoUrl - SmallPhotoUrl - State - StayInTouchNote - StayInTouchSignature - StayInTouchSubject - Street - SystemModstamp - TimeZoneSidKey - Title - UserPermissionsCallCenterAutoLogin - UserPermissionsInteractionUser - UserPermissionsJigsawProspectingUser - UserPermissionsKnowledgeUser - UserPermissionsMarketingUser - UserPermissionsOfflineUser - UserPermissionsSFContentUser - UserPermissionsSiteforceContributorUser - UserPermissionsSiteforcePublisherUser - UserPermissionsSupportUser - UserPermissionsWorkDotComUserFeature - UserPreferencesActivityRemindersPopup - UserPreferencesApexPagesDeveloperMode - UserPreferencesCacheDiagnostics - UserPreferencesContentEmailAsAndWhen - UserPreferencesContentNoEmail - UserPreferencesCreateLEXAppsWTShown - UserPreferencesDedupeStorageMigrationComplete - UserPreferencesDisCommentAfterLikeEmail - UserPreferencesDisMentionsCommentEmail - UserPreferencesDisProfPostCommentEmail - UserPreferencesDisableAllFeedsEmail - UserPreferencesDisableBookmarkEmail - UserPreferencesDisableChangeCommentEmail - UserPreferencesDisableEndorsementEmail - UserPreferencesDisableFileShareNotificationsForApi - UserPreferencesDisableFollowersEmail - UserPreferencesDisableLaterCommentEmail - UserPreferencesDisableLikeEmail - UserPreferencesDisableMentionsPostEmail - UserPreferencesDisableMessageEmail - UserPreferencesDisableProfilePostEmail - UserPreferencesDisableSharePostEmail - UserPreferencesEnableAutoSubForFeeds - UserPreferencesEventRemindersCheckboxDefault - UserPreferencesExcludeMailAppAttachments - UserPreferencesFavoritesShowTopFavorites - UserPreferencesFavoritesWTShown - UserPreferencesFirstTimeInLightning - UserPreferencesGlobalNavBarWTShown - UserPreferencesGlobalNavGridMenuWTShown - UserPreferencesHasCelebrationBadge - UserPreferencesHasSentWarningEmail - UserPreferencesHasSentWarningEmail238 - UserPreferencesHasSentWarningEmail240 - UserPreferencesHeavyPagePromptEnabled - UserPreferencesHideBiggerPhotoCallout - UserPreferencesHideCSNDesktopTask - UserPreferencesHideCSNGetChatterMobileTask - UserPreferencesHideChatterOnboardingSplash - UserPreferencesHideEndUserOnboardingAssistantModal - UserPreferencesHideEventCalendar - UserPreferencesHideLearningPathModal - UserPreferencesHideLightningMigrationModal - UserPreferencesHideMailAppEAPUserGuidance - UserPreferencesHideMailAppWelcomeMat - UserPreferencesHideS1BrowserUI - UserPreferencesHideSecondChatterOnboardingSplash - UserPreferencesHideSfxWelcomeMat - UserPreferencesHideTaskListViewsPopover - UserPreferencesHideTrialsCelebration - UserPreferencesHideTrialsWelcomeMat - UserPreferencesJigsawListUser - UserPreferencesLightningExperiencePreferred - UserPreferencesLtngPromoReserved10UserPref - UserPreferencesLtngPromoReserved16UserPref - UserPreferencesLtngPromoReserved19UserPref - UserPreferencesNativeEmailClient - UserPreferencesNewLightningReportRunPageEnabled - UserPreferencesPathAssistantCollapsed - UserPreferencesPreviewCustomTheme - UserPreferencesPreviewLightning - UserPreferencesReadReceiptLastToggleValue - UserPreferencesReceiveNoNotificationsAsApprover - UserPreferencesReceiveNotificationsAsDelegatedApprover - UserPreferencesRecordHomeReservedWTShown - UserPreferencesRecordHomeSectionCollapseWTShown - UserPreferencesReminderSoundOff - UserPreferencesReverseOpenActivitiesView - UserPreferencesSRHOverrideActivities - UserPreferencesSalesEssentialsSetupAssistantCompleted - UserPreferencesSetupAssistantUserPref1 - UserPreferencesShowCityToExternalUsers - UserPreferencesShowCityToGuestUsers - UserPreferencesShowCountryToExternalUsers - UserPreferencesShowCountryToGuestUsers - UserPreferencesShowEmailToExternalUsers - UserPreferencesShowEmailToGuestUsers - UserPreferencesShowFaxToExternalUsers - UserPreferencesShowFaxToGuestUsers - UserPreferencesShowForecastingChangeSignals - UserPreferencesShowManagerToExternalUsers - UserPreferencesShowManagerToGuestUsers - UserPreferencesShowMobilePhoneToExternalUsers - UserPreferencesShowMobilePhoneToGuestUsers - UserPreferencesShowPostalCodeToExternalUsers - UserPreferencesShowPostalCodeToGuestUsers - UserPreferencesShowProfilePicToGuestUsers - UserPreferencesShowStateToExternalUsers - UserPreferencesShowStateToGuestUsers - UserPreferencesShowStreetAddressToExternalUsers - UserPreferencesShowStreetAddressToGuestUsers - UserPreferencesShowTitleToExternalUsers - UserPreferencesShowTitleToGuestUsers - UserPreferencesShowWorkPhoneToExternalUsers - UserPreferencesShowWorkPhoneToGuestUsers - UserPreferencesSortFeedByComment - UserPreferencesSuppressEventSFXReminders - UserPreferencesSuppressTaskSFXReminders - UserPreferencesTaskRemindersCheckboxDefault - UserPreferencesTodayGettingStarted - UserPreferencesTrailheadBadgeCreated - UserPreferencesUserDebugModePref - UserRoleId - UserType - Username type: object properties: AboutMe: $ref: '#/components/schemas/AboutMe' AccountId: $ref: '#/components/schemas/AccountId1' Address: $ref: '#/components/schemas/Address5' Alias: $ref: '#/components/schemas/Alias' BadgeText: $ref: '#/components/schemas/BadgeText' BannerPhotoId: $ref: '#/components/schemas/BannerPhotoId' BannerPhotoUrl: $ref: '#/components/schemas/BannerPhotoUrl' CallCenterId: $ref: '#/components/schemas/CallCenterId' City: $ref: '#/components/schemas/City' CommunityNickname: $ref: '#/components/schemas/CommunityNickname' CompanyName: $ref: '#/components/schemas/CompanyName' ContactId: $ref: '#/components/schemas/ContactId' Country: $ref: '#/components/schemas/Country' CreatedById: $ref: '#/components/schemas/CreatedById2' CreatedDate: $ref: '#/components/schemas/CreatedDate2' DefaultGroupNotificationFrequency: $ref: '#/components/schemas/DefaultGroupNotificationFrequency' DelegatedApproverId: $ref: '#/components/schemas/DelegatedApproverId' Department: $ref: '#/components/schemas/Department1' DigestFrequency: $ref: '#/components/schemas/DigestFrequency' Division: $ref: '#/components/schemas/Division' Email: $ref: '#/components/schemas/Email1' EmailEncodingKey: $ref: '#/components/schemas/EmailEncodingKey' EmailPreferencesAutoBcc: $ref: '#/components/schemas/EmailPreferencesAutoBcc' EmailPreferencesAutoBccStayInTouch: $ref: '#/components/schemas/EmailPreferencesAutoBccStayInTouch' EmailPreferencesStayInTouchReminder: $ref: '#/components/schemas/EmailPreferencesStayInTouchReminder' EmployeeNumber: $ref: '#/components/schemas/EmployeeNumber' Extension: $ref: '#/components/schemas/Extension' Fax: $ref: '#/components/schemas/Fax2' FederationIdentifier: $ref: '#/components/schemas/FederationIdentifier' FirstName: $ref: '#/components/schemas/FirstName1' ForecastEnabled: $ref: '#/components/schemas/ForecastEnabled' FullPhotoUrl: $ref: '#/components/schemas/FullPhotoUrl' GeocodeAccuracy: $ref: '#/components/schemas/GeocodeAccuracy' Id: $ref: '#/components/schemas/Id4' IndividualId: $ref: '#/components/schemas/IndividualId1' IsActive: $ref: '#/components/schemas/IsActive' IsExtIndicatorVisible: $ref: '#/components/schemas/IsExtIndicatorVisible' IsPortalEnabled: $ref: '#/components/schemas/IsPortalEnabled' IsProfilePhotoActive: $ref: '#/components/schemas/IsProfilePhotoActive' JigsawImportLimitOverride: $ref: '#/components/schemas/JigsawImportLimitOverride' LanguageLocaleKey: $ref: '#/components/schemas/LanguageLocaleKey' LastLoginDate: $ref: '#/components/schemas/LastLoginDate' LastModifiedById: $ref: '#/components/schemas/LastModifiedById2' LastModifiedDate: $ref: '#/components/schemas/LastModifiedDate2' LastName: $ref: '#/components/schemas/LastName1' LastPasswordChangeDate: $ref: '#/components/schemas/LastPasswordChangeDate' LastReferencedDate: $ref: '#/components/schemas/LastReferencedDate2' LastViewedDate: $ref: '#/components/schemas/LastViewedDate2' Latitude: $ref: '#/components/schemas/Latitude' LocaleSidKey: $ref: '#/components/schemas/LocaleSidKey' Longitude: $ref: '#/components/schemas/Longitude' ManagerId: $ref: '#/components/schemas/ManagerId' MediumBannerPhotoUrl: $ref: '#/components/schemas/MediumBannerPhotoUrl' MediumPhotoUrl: $ref: '#/components/schemas/MediumPhotoUrl' MobilePhone: $ref: '#/components/schemas/MobilePhone1' Name: $ref: '#/components/schemas/Name17' NumberOfFailedLogins: $ref: '#/components/schemas/NumberOfFailedLogins' OfflinePdaTrialExpirationDate: $ref: '#/components/schemas/OfflinePdaTrialExpirationDate' OfflineTrialExpirationDate: $ref: '#/components/schemas/OfflineTrialExpirationDate' OutOfOfficeMessage: $ref: '#/components/schemas/OutOfOfficeMessage' Phone: $ref: '#/components/schemas/Phone2' PortalRole: $ref: '#/components/schemas/PortalRole' PostalCode: $ref: '#/components/schemas/PostalCode' ProfileId: $ref: '#/components/schemas/ProfileId' ProfilePhotoId: $ref: '#/components/schemas/ProfilePhotoId' ReceivesAdminInfoEmails: $ref: '#/components/schemas/ReceivesAdminInfoEmails' ReceivesInfoEmails: $ref: '#/components/schemas/ReceivesInfoEmails' SenderEmail: $ref: '#/components/schemas/SenderEmail' SenderName: $ref: '#/components/schemas/SenderName' Signature: $ref: '#/components/schemas/Signature' SmallBannerPhotoUrl: $ref: '#/components/schemas/SmallBannerPhotoUrl' SmallPhotoUrl: $ref: '#/components/schemas/SmallPhotoUrl' State: $ref: '#/components/schemas/State' StayInTouchNote: $ref: '#/components/schemas/StayInTouchNote' StayInTouchSignature: $ref: '#/components/schemas/StayInTouchSignature' StayInTouchSubject: $ref: '#/components/schemas/StayInTouchSubject' Street: $ref: '#/components/schemas/Street' SystemModstamp: $ref: '#/components/schemas/SystemModstamp2' TimeZoneSidKey: $ref: '#/components/schemas/TimeZoneSidKey' Title: $ref: '#/components/schemas/Title1' UserPermissionsCallCenterAutoLogin: $ref: '#/components/schemas/UserPermissionsCallCenterAutoLogin' UserPermissionsInteractionUser: $ref: '#/components/schemas/UserPermissionsInteractionUser' UserPermissionsJigsawProspectingUser: $ref: '#/components/schemas/UserPermissionsJigsawProspectingUser' UserPermissionsKnowledgeUser: $ref: '#/components/schemas/UserPermissionsKnowledgeUser' UserPermissionsMarketingUser: $ref: '#/components/schemas/UserPermissionsMarketingUser' UserPermissionsOfflineUser: $ref: '#/components/schemas/UserPermissionsOfflineUser' UserPermissionsSFContentUser: $ref: '#/components/schemas/UserPermissionsSFContentUser' UserPermissionsSiteforceContributorUser: $ref: '#/components/schemas/UserPermissionsSiteforceContributorUser' UserPermissionsSiteforcePublisherUser: $ref: '#/components/schemas/UserPermissionsSiteforcePublisherUser' UserPermissionsSupportUser: $ref: '#/components/schemas/UserPermissionsSupportUser' UserPermissionsWorkDotComUserFeature: $ref: '#/components/schemas/UserPermissionsWorkDotComUserFeature' UserPreferencesActivityRemindersPopup: $ref: '#/components/schemas/UserPreferencesActivityRemindersPopup' UserPreferencesApexPagesDeveloperMode: $ref: '#/components/schemas/UserPreferencesApexPagesDeveloperMode' UserPreferencesCacheDiagnostics: $ref: '#/components/schemas/UserPreferencesCacheDiagnostics' UserPreferencesContentEmailAsAndWhen: $ref: '#/components/schemas/UserPreferencesContentEmailAsAndWhen' UserPreferencesContentNoEmail: $ref: '#/components/schemas/UserPreferencesContentNoEmail' UserPreferencesCreateLEXAppsWTShown: $ref: '#/components/schemas/UserPreferencesCreateLEXAppsWTShown' UserPreferencesDedupeStorageMigrationComplete: $ref: '#/components/schemas/UserPreferencesDedupeStorageMigrationComplete' UserPreferencesDisCommentAfterLikeEmail: $ref: '#/components/schemas/UserPreferencesDisCommentAfterLikeEmail' UserPreferencesDisMentionsCommentEmail: $ref: '#/components/schemas/UserPreferencesDisMentionsCommentEmail' UserPreferencesDisProfPostCommentEmail: $ref: '#/components/schemas/UserPreferencesDisProfPostCommentEmail' UserPreferencesDisableAllFeedsEmail: $ref: '#/components/schemas/UserPreferencesDisableAllFeedsEmail' UserPreferencesDisableBookmarkEmail: $ref: '#/components/schemas/UserPreferencesDisableBookmarkEmail' UserPreferencesDisableChangeCommentEmail: $ref: '#/components/schemas/UserPreferencesDisableChangeCommentEmail' UserPreferencesDisableEndorsementEmail: $ref: '#/components/schemas/UserPreferencesDisableEndorsementEmail' UserPreferencesDisableFileShareNotificationsForApi: $ref: >- #/components/schemas/UserPreferencesDisableFileShareNotificationsForApi UserPreferencesDisableFollowersEmail: $ref: '#/components/schemas/UserPreferencesDisableFollowersEmail' UserPreferencesDisableLaterCommentEmail: $ref: '#/components/schemas/UserPreferencesDisableLaterCommentEmail' UserPreferencesDisableLikeEmail: $ref: '#/components/schemas/UserPreferencesDisableLikeEmail' UserPreferencesDisableMentionsPostEmail: $ref: '#/components/schemas/UserPreferencesDisableMentionsPostEmail' UserPreferencesDisableMessageEmail: $ref: '#/components/schemas/UserPreferencesDisableMessageEmail' UserPreferencesDisableProfilePostEmail: $ref: '#/components/schemas/UserPreferencesDisableProfilePostEmail' UserPreferencesDisableSharePostEmail: $ref: '#/components/schemas/UserPreferencesDisableSharePostEmail' UserPreferencesEnableAutoSubForFeeds: $ref: '#/components/schemas/UserPreferencesEnableAutoSubForFeeds' UserPreferencesEventRemindersCheckboxDefault: $ref: '#/components/schemas/UserPreferencesEventRemindersCheckboxDefault' UserPreferencesExcludeMailAppAttachments: $ref: '#/components/schemas/UserPreferencesExcludeMailAppAttachments' UserPreferencesFavoritesShowTopFavorites: $ref: '#/components/schemas/UserPreferencesFavoritesShowTopFavorites' UserPreferencesFavoritesWTShown: $ref: '#/components/schemas/UserPreferencesFavoritesWTShown' UserPreferencesFirstTimeInLightning: $ref: '#/components/schemas/UserPreferencesFirstTimeInLightning' UserPreferencesGlobalNavBarWTShown: $ref: '#/components/schemas/UserPreferencesGlobalNavBarWTShown' UserPreferencesGlobalNavGridMenuWTShown: $ref: '#/components/schemas/UserPreferencesGlobalNavGridMenuWTShown' UserPreferencesHasCelebrationBadge: $ref: '#/components/schemas/UserPreferencesHasCelebrationBadge' UserPreferencesHasSentWarningEmail: $ref: '#/components/schemas/UserPreferencesHasSentWarningEmail' UserPreferencesHasSentWarningEmail238: $ref: '#/components/schemas/UserPreferencesHasSentWarningEmail' UserPreferencesHasSentWarningEmail240: $ref: '#/components/schemas/UserPreferencesHasSentWarningEmail' UserPreferencesHeavyPagePromptEnabled: $ref: '#/components/schemas/UserPreferencesHeavyPagePromptEnabled' UserPreferencesHideBiggerPhotoCallout: $ref: '#/components/schemas/UserPreferencesHideBiggerPhotoCallout' UserPreferencesHideCSNDesktopTask: $ref: '#/components/schemas/UserPreferencesHideCSNDesktopTask' UserPreferencesHideCSNGetChatterMobileTask: $ref: '#/components/schemas/UserPreferencesHideCSNGetChatterMobileTask' UserPreferencesHideChatterOnboardingSplash: $ref: '#/components/schemas/UserPreferencesHideChatterOnboardingSplash' UserPreferencesHideEndUserOnboardingAssistantModal: $ref: >- #/components/schemas/UserPreferencesHideEndUserOnboardingAssistantModal UserPreferencesHideEventCalendar: $ref: '#/components/schemas/UserPreferencesHideEventCalendar' UserPreferencesHideLearningPathModal: $ref: '#/components/schemas/UserPreferencesHideLearningPathModal' UserPreferencesHideLightningMigrationModal: $ref: '#/components/schemas/UserPreferencesHideLightningMigrationModal' UserPreferencesHideMailAppEAPUserGuidance: $ref: '#/components/schemas/UserPreferencesHideMailAppEAPUserGuidance' UserPreferencesHideMailAppWelcomeMat: $ref: '#/components/schemas/UserPreferencesHideMailAppWelcomeMat' UserPreferencesHideS1BrowserUI: $ref: '#/components/schemas/UserPreferencesHideS1BrowserUI' UserPreferencesHideSecondChatterOnboardingSplash: $ref: >- #/components/schemas/UserPreferencesHideSecondChatterOnboardingSplash UserPreferencesHideSfxWelcomeMat: $ref: '#/components/schemas/UserPreferencesHideSfxWelcomeMat' UserPreferencesHideTaskListViewsPopover: $ref: '#/components/schemas/UserPreferencesHideTaskListViewsPopover' UserPreferencesHideTrialsCelebration: $ref: '#/components/schemas/UserPreferencesHideTrialsCelebration' UserPreferencesHideTrialsWelcomeMat: $ref: '#/components/schemas/UserPreferencesHideTrialsWelcomeMat' UserPreferencesJigsawListUser: $ref: '#/components/schemas/UserPreferencesJigsawListUser' UserPreferencesLightningExperiencePreferred: $ref: '#/components/schemas/UserPreferencesLightningExperiencePreferred' UserPreferencesLtngPromoReserved10UserPref: $ref: '#/components/schemas/UserPreferencesLtngPromoReserved10UserPref' UserPreferencesLtngPromoReserved16UserPref: $ref: '#/components/schemas/UserPreferencesLtngPromoReserved16UserPref' UserPreferencesLtngPromoReserved19UserPref: $ref: '#/components/schemas/UserPreferencesLtngPromoReserved19UserPref' UserPreferencesNativeEmailClient: $ref: '#/components/schemas/UserPreferencesNativeEmailClient' UserPreferencesNewLightningReportRunPageEnabled: $ref: '#/components/schemas/UserPreferencesNewLightningReportRunPageEnabled' UserPreferencesPathAssistantCollapsed: $ref: '#/components/schemas/UserPreferencesPathAssistantCollapsed' UserPreferencesPreviewCustomTheme: $ref: '#/components/schemas/UserPreferencesPreviewCustomTheme' UserPreferencesPreviewLightning: $ref: '#/components/schemas/UserPreferencesPreviewLightning' UserPreferencesReadReceiptLastToggleValue: $ref: '#/components/schemas/UserPreferencesReadReceiptLastToggleValue' UserPreferencesReceiveNoNotificationsAsApprover: $ref: '#/components/schemas/UserPreferencesReceiveNoNotificationsAsApprover' UserPreferencesReceiveNotificationsAsDelegatedApprover: $ref: >- #/components/schemas/UserPreferencesReceiveNotificationsAsDelegatedApprover UserPreferencesRecordHomeReservedWTShown: $ref: '#/components/schemas/UserPreferencesRecordHomeReservedWTShown' UserPreferencesRecordHomeSectionCollapseWTShown: $ref: '#/components/schemas/UserPreferencesRecordHomeSectionCollapseWTShown' UserPreferencesReminderSoundOff: $ref: '#/components/schemas/UserPreferencesReminderSoundOff' UserPreferencesReverseOpenActivitiesView: $ref: '#/components/schemas/UserPreferencesReverseOpenActivitiesView' UserPreferencesSRHOverrideActivities: $ref: '#/components/schemas/UserPreferencesSRHOverrideActivities' UserPreferencesSalesEssentialsSetupAssistantCompleted: $ref: >- #/components/schemas/UserPreferencesSalesEssentialsSetupAssistantCompleted UserPreferencesSetupAssistantUserPref1: $ref: '#/components/schemas/UserPreferencesSetupAssistantUserPref1' UserPreferencesShowCityToExternalUsers: $ref: '#/components/schemas/UserPreferencesShowCityToExternalUsers' UserPreferencesShowCityToGuestUsers: $ref: '#/components/schemas/UserPreferencesShowCityToGuestUsers' UserPreferencesShowCountryToExternalUsers: $ref: '#/components/schemas/UserPreferencesShowCountryToExternalUsers' UserPreferencesShowCountryToGuestUsers: $ref: '#/components/schemas/UserPreferencesShowCountryToGuestUsers' UserPreferencesShowEmailToExternalUsers: $ref: '#/components/schemas/UserPreferencesShowEmailToExternalUsers' UserPreferencesShowEmailToGuestUsers: $ref: '#/components/schemas/UserPreferencesShowEmailToGuestUsers' UserPreferencesShowFaxToExternalUsers: $ref: '#/components/schemas/UserPreferencesShowFaxToExternalUsers' UserPreferencesShowFaxToGuestUsers: $ref: '#/components/schemas/UserPreferencesShowFaxToGuestUsers' UserPreferencesShowForecastingChangeSignals: $ref: '#/components/schemas/UserPreferencesShowForecastingChangeSignals' UserPreferencesShowManagerToExternalUsers: $ref: '#/components/schemas/UserPreferencesShowManagerToExternalUsers' UserPreferencesShowManagerToGuestUsers: $ref: '#/components/schemas/UserPreferencesShowManagerToGuestUsers' UserPreferencesShowMobilePhoneToExternalUsers: $ref: '#/components/schemas/UserPreferencesShowMobilePhoneToExternalUsers' UserPreferencesShowMobilePhoneToGuestUsers: $ref: '#/components/schemas/UserPreferencesShowMobilePhoneToGuestUsers' UserPreferencesShowPostalCodeToExternalUsers: $ref: '#/components/schemas/UserPreferencesShowPostalCodeToExternalUsers' UserPreferencesShowPostalCodeToGuestUsers: $ref: '#/components/schemas/UserPreferencesShowPostalCodeToGuestUsers' UserPreferencesShowProfilePicToGuestUsers: $ref: '#/components/schemas/UserPreferencesShowProfilePicToGuestUsers' UserPreferencesShowStateToExternalUsers: $ref: '#/components/schemas/UserPreferencesShowStateToExternalUsers' UserPreferencesShowStateToGuestUsers: $ref: '#/components/schemas/UserPreferencesShowStateToGuestUsers' UserPreferencesShowStreetAddressToExternalUsers: $ref: '#/components/schemas/UserPreferencesShowStreetAddressToExternalUsers' UserPreferencesShowStreetAddressToGuestUsers: $ref: '#/components/schemas/UserPreferencesShowStreetAddressToGuestUsers' UserPreferencesShowTitleToExternalUsers: $ref: '#/components/schemas/UserPreferencesShowTitleToExternalUsers' UserPreferencesShowTitleToGuestUsers: $ref: '#/components/schemas/UserPreferencesShowTitleToGuestUsers' UserPreferencesShowWorkPhoneToExternalUsers: $ref: '#/components/schemas/UserPreferencesShowWorkPhoneToExternalUsers' UserPreferencesShowWorkPhoneToGuestUsers: $ref: '#/components/schemas/UserPreferencesShowWorkPhoneToGuestUsers' UserPreferencesSortFeedByComment: $ref: '#/components/schemas/UserPreferencesSortFeedByComment' UserPreferencesSuppressEventSFXReminders: $ref: '#/components/schemas/UserPreferencesSuppressEventSFXReminders' UserPreferencesSuppressTaskSFXReminders: $ref: '#/components/schemas/UserPreferencesSuppressTaskSFXReminders' UserPreferencesTaskRemindersCheckboxDefault: $ref: '#/components/schemas/UserPreferencesTaskRemindersCheckboxDefault' UserPreferencesTodayGettingStarted: $ref: '#/components/schemas/UserPreferencesTodayGettingStarted' UserPreferencesTrailheadBadgeCreated: $ref: '#/components/schemas/UserPreferencesTrailheadBadgeCreated' UserPreferencesUserDebugModePref: $ref: '#/components/schemas/UserPreferencesUserDebugModePref' UserRoleId: $ref: '#/components/schemas/UserRoleId' UserType: $ref: '#/components/schemas/UserType' Username: $ref: '#/components/schemas/Username' examples: - AboutMe: apiName: AboutMe calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: TextArea extraTypeInfo: PlainTextArea filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: About Me length: 1000 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true AccountId: apiName: AccountId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Account nameFields: - Name relationshipName: Account required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: false Address: apiName: Address calculated: false compound: true compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Address extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Address length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: false unique: false updateable: false Alias: apiName: Alias calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Alias length: 8 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true BadgeText: apiName: BadgeText calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: User Photo badge text overlay length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false BannerPhotoId: apiName: BannerPhotoId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Photo ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Photo nameFields: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false BannerPhotoUrl: apiName: BannerPhotoUrl calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Url extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Url for banner photo length: 1024 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false CallCenterId: apiName: CallCenterId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Call Center ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: CallCenter nameFields: - Name relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true City: apiName: City calculated: false compound: false compoundComponentName: City compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: City length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true CommunityNickname: apiName: CommunityNickname calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Nickname length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true CompanyName: apiName: CompanyName calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Company Name length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ContactId: apiName: ContactId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Contact ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Contact nameFields: - FirstName - LastName - Name relationshipName: Contact required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: true Country: apiName: Country calculated: false compound: false compoundComponentName: Country compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Country length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true CreatedById: apiName: CreatedById calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Created By ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: User nameFields: - FirstName - LastName - Name relationshipName: CreatedBy required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false CreatedDate: apiName: CreatedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Created Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false DefaultGroupNotificationFrequency: apiName: DefaultGroupNotificationFrequency calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Default Notification Frequency when Joining Groups length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true DelegatedApproverId: apiName: DelegatedApproverId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Delegated Approver ID length: 18 nameField: false polymorphicForeignKey: true precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Group nameFields: - Name - apiName: User nameFields: - FirstName - LastName - Name relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Department: apiName: Department calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Department length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true DigestFrequency: apiName: DigestFrequency calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Chatter Email Highlights Frequency length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Division: apiName: Division calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Division length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Email: apiName: Email calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Email extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Email length: 128 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true EmailEncodingKey: apiName: EmailEncodingKey calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Email Encoding length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true EmailPreferencesAutoBcc: apiName: EmailPreferencesAutoBcc calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: AutoBcc length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true EmailPreferencesAutoBccStayInTouch: apiName: EmailPreferencesAutoBccStayInTouch calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: AutoBccStayInTouch length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true EmailPreferencesStayInTouchReminder: apiName: EmailPreferencesStayInTouchReminder calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: StayInTouchReminder length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true EmployeeNumber: apiName: EmployeeNumber calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Employee Number length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Extension: apiName: Extension calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Phone extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Extension length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Fax: apiName: Fax calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Phone extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Fax length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true FederationIdentifier: apiName: FederationIdentifier calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SAML Federation ID length: 512 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true FirstName: apiName: FirstName calculated: false compound: false compoundComponentName: FirstName compoundFieldName: Name controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: PersonName filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: First Name length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ForecastEnabled: apiName: ForecastEnabled calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Allow Forecasting length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true FullPhotoUrl: apiName: FullPhotoUrl calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Url extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Url for full-sized Photo length: 1024 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false GeocodeAccuracy: apiName: GeocodeAccuracy calculated: false compound: false compoundComponentName: GeocodeAccuracy compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Geocode Accuracy length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Id: apiName: Id calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: User ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false IndividualId: apiName: IndividualId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Individual ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Individual nameFields: - FirstName - LastName - Name relationshipName: Individual required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: true IsActive: apiName: IsActive calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Active length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true IsExtIndicatorVisible: apiName: IsExtIndicatorVisible calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Show external indicator length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false IsPortalEnabled: apiName: IsPortalEnabled calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Is Portal Enabled length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true IsProfilePhotoActive: apiName: IsProfilePhotoActive calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Has Profile Photo length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false JigsawImportLimitOverride: apiName: JigsawImportLimitOverride calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Int extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Data.com Monthly Addition Limit length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true LanguageLocaleKey: apiName: LanguageLocaleKey calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Language length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true LastLoginDate: apiName: LastLoginDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Login length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastModifiedById: apiName: LastModifiedById calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Modified By ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: User nameFields: - FirstName - LastName - Name relationshipName: LastModifiedBy required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastModifiedDate: apiName: LastModifiedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Modified Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastName: apiName: LastName calculated: false compound: false compoundComponentName: LastName compoundFieldName: Name controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: PersonName filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Name length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true LastPasswordChangeDate: apiName: LastPasswordChangeDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Password Change or Reset length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastReferencedDate: apiName: LastReferencedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Referenced Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastViewedDate: apiName: LastViewedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Viewed Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Latitude: apiName: Latitude calculated: false compound: false compoundComponentName: Latitude compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: Double extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Latitude length: 0 nameField: false polymorphicForeignKey: false precision: 18 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 15 searchPrefilterable: false sortable: true unique: false updateable: true LocaleSidKey: apiName: LocaleSidKey calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Locale length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Longitude: apiName: Longitude calculated: false compound: false compoundComponentName: Longitude compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: Double extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Longitude length: 0 nameField: false polymorphicForeignKey: false precision: 18 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 15 searchPrefilterable: false sortable: true unique: false updateable: true ManagerId: apiName: ManagerId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Manager ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: User nameFields: - FirstName - LastName - Name relationshipName: Manager required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: true MediumBannerPhotoUrl: apiName: MediumBannerPhotoUrl calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Url extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Url for Android banner photo length: 1024 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false MediumPhotoUrl: apiName: MediumPhotoUrl calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Url extraTypeInfo: ImageUrl filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Url for medium profile photo length: 1024 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false MobilePhone: apiName: MobilePhone calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Phone extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Mobile length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Name: apiName: Name calculated: false compound: true compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: PersonName filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Full Name length: 121 nameField: true polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false NumberOfFailedLogins: apiName: NumberOfFailedLogins calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Int extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Failed Login Attempts length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false OfflinePdaTrialExpirationDate: apiName: OfflinePdaTrialExpirationDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Sales Anywhere Trial Expiration Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false OfflineTrialExpirationDate: apiName: OfflineTrialExpirationDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Offline Edition Trial Expiration Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false OutOfOfficeMessage: apiName: OutOfOfficeMessage calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Out of office message length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Phone: apiName: Phone calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Phone extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Phone length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true PortalRole: apiName: PortalRole calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Portal Role Level length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true PostalCode: apiName: PostalCode calculated: false compound: false compoundComponentName: PostalCode compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Zip/Postal Code length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ProfileId: apiName: ProfileId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Profile ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Profile nameFields: - Name relationshipName: Profile required: true scale: 0 searchPrefilterable: true sortable: true unique: false updateable: true ProfilePhotoId: apiName: ProfilePhotoId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Photo ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Photo nameFields: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false ReceivesAdminInfoEmails: apiName: ReceivesAdminInfoEmails calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Admin Info Emails length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ReceivesInfoEmails: apiName: ReceivesInfoEmails calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Info Emails length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SenderEmail: apiName: SenderEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Email extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Email Sender Address length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SenderName: apiName: SenderName calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Email Sender Name length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Signature: apiName: Signature calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: TextArea extraTypeInfo: PlainTextArea filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Email Signature length: 1333 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SmallBannerPhotoUrl: apiName: SmallBannerPhotoUrl calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Url extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Url for IOS banner photo length: 1024 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false SmallPhotoUrl: apiName: SmallPhotoUrl calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Url extraTypeInfo: ImageUrl filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Photo length: 1024 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false State: apiName: State calculated: false compound: false compoundComponentName: State compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: State/Province length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true StayInTouchNote: apiName: StayInTouchNote calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Stay-in-Touch Email Note length: 512 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true StayInTouchSignature: apiName: StayInTouchSignature calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: TextArea extraTypeInfo: PlainTextArea filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Stay-in-Touch Email Signature length: 512 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true StayInTouchSubject: apiName: StayInTouchSubject calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Stay-in-Touch Email Subject length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Street: apiName: Street calculated: false compound: false compoundComponentName: Street compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: TextArea extraTypeInfo: PlainTextArea filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Street length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SystemModstamp: apiName: SystemModstamp calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: System Modstamp length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false TimeZoneSidKey: apiName: TimeZoneSidKey calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Time Zone length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Title: apiName: Title calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Title length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true UserPermissionsCallCenterAutoLogin: apiName: UserPermissionsCallCenterAutoLogin calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Auto-login To Call Center length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPermissionsInteractionUser: apiName: UserPermissionsInteractionUser calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Flow User length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPermissionsJigsawProspectingUser: apiName: UserPermissionsJigsawProspectingUser calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Data.com User length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPermissionsKnowledgeUser: apiName: UserPermissionsKnowledgeUser calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Knowledge User length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPermissionsMarketingUser: apiName: UserPermissionsMarketingUser calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Marketing User length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPermissionsOfflineUser: apiName: UserPermissionsOfflineUser calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Offline User length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPermissionsSFContentUser: apiName: UserPermissionsSFContentUser calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Salesforce CRM Content User length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPermissionsSiteforceContributorUser: apiName: UserPermissionsSiteforceContributorUser calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Site.com Contributor User length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPermissionsSiteforcePublisherUser: apiName: UserPermissionsSiteforcePublisherUser calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Site.com Publisher User length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPermissionsSupportUser: apiName: UserPermissionsSupportUser calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Service Cloud User length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPermissionsWorkDotComUserFeature: apiName: UserPermissionsWorkDotComUserFeature calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: WDC User length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesActivityRemindersPopup: apiName: UserPreferencesActivityRemindersPopup calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ActivityRemindersPopup length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesApexPagesDeveloperMode: apiName: UserPreferencesApexPagesDeveloperMode calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ApexPagesDeveloperMode length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesCacheDiagnostics: apiName: UserPreferencesCacheDiagnostics calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: CacheDiagnostics length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesContentEmailAsAndWhen: apiName: UserPreferencesContentEmailAsAndWhen calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ContentEmailAsAndWhen length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesContentNoEmail: apiName: UserPreferencesContentNoEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ContentNoEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesCreateLEXAppsWTShown: apiName: UserPreferencesCreateLEXAppsWTShown calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: CreateLEXAppsWTShown length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDedupeStorageMigrationComplete: apiName: UserPreferencesDedupeStorageMigrationComplete calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DedupeStorageMigrationComplete length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisCommentAfterLikeEmail: apiName: UserPreferencesDisCommentAfterLikeEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisCommentAfterLikeEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisMentionsCommentEmail: apiName: UserPreferencesDisMentionsCommentEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisMentionsCommentEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisProfPostCommentEmail: apiName: UserPreferencesDisProfPostCommentEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisProfPostCommentEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableAllFeedsEmail: apiName: UserPreferencesDisableAllFeedsEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableAllFeedsEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableBookmarkEmail: apiName: UserPreferencesDisableBookmarkEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableBookmarkEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableChangeCommentEmail: apiName: UserPreferencesDisableChangeCommentEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableChangeCommentEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableEndorsementEmail: apiName: UserPreferencesDisableEndorsementEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableEndorsementEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableFileShareNotificationsForApi: apiName: UserPreferencesDisableFileShareNotificationsForApi calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableFileShareNotificationsForApi length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableFollowersEmail: apiName: UserPreferencesDisableFollowersEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableFollowersEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableLaterCommentEmail: apiName: UserPreferencesDisableLaterCommentEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableLaterCommentEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableLikeEmail: apiName: UserPreferencesDisableLikeEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableLikeEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableMentionsPostEmail: apiName: UserPreferencesDisableMentionsPostEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableMentionsPostEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableMessageEmail: apiName: UserPreferencesDisableMessageEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableMessageEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableProfilePostEmail: apiName: UserPreferencesDisableProfilePostEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableProfilePostEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableSharePostEmail: apiName: UserPreferencesDisableSharePostEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableSharePostEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesEnableAutoSubForFeeds: apiName: UserPreferencesEnableAutoSubForFeeds calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: EnableAutoSubForFeeds length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesEventRemindersCheckboxDefault: apiName: UserPreferencesEventRemindersCheckboxDefault calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: EventRemindersCheckboxDefault length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesExcludeMailAppAttachments: apiName: UserPreferencesExcludeMailAppAttachments calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ExcludeMailAppAttachments length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesFavoritesShowTopFavorites: apiName: UserPreferencesFavoritesShowTopFavorites calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: FavoritesShowTopFavorites length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesFavoritesWTShown: apiName: UserPreferencesFavoritesWTShown calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: FavoritesWTShown length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesFirstTimeInLightning: apiName: UserPreferencesFirstTimeInLightning calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: FirstTimeInLightning length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesGlobalNavBarWTShown: apiName: UserPreferencesGlobalNavBarWTShown calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: GlobalNavBarWTShown length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesGlobalNavGridMenuWTShown: apiName: UserPreferencesGlobalNavGridMenuWTShown calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: GlobalNavGridMenuWTShown length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHasCelebrationBadge: apiName: UserPreferencesHasCelebrationBadge calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HasCelebrationBadge length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHasSentWarningEmail: apiName: UserPreferencesHasSentWarningEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HasSentWarningEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHasSentWarningEmail238: apiName: UserPreferencesHasSentWarningEmail238 calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HasSentWarningEmail238 length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHasSentWarningEmail240: apiName: UserPreferencesHasSentWarningEmail240 calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HasSentWarningEmail240 length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHeavyPagePromptEnabled: apiName: UserPreferencesHeavyPagePromptEnabled calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HeavyPagePromptEnabled length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideBiggerPhotoCallout: apiName: UserPreferencesHideBiggerPhotoCallout calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideBiggerPhotoCallout length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideCSNDesktopTask: apiName: UserPreferencesHideCSNDesktopTask calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideCSNDesktopTask length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideCSNGetChatterMobileTask: apiName: UserPreferencesHideCSNGetChatterMobileTask calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideCSNGetChatterMobileTask length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideChatterOnboardingSplash: apiName: UserPreferencesHideChatterOnboardingSplash calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideChatterOnboardingSplash length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideEndUserOnboardingAssistantModal: apiName: UserPreferencesHideEndUserOnboardingAssistantModal calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideEndUserOnboardingAssistantModal length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideEventCalendar: apiName: UserPreferencesHideEventCalendar calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideEventCalendar length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideLearningPathModal: apiName: UserPreferencesHideLearningPathModal calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideLearningPathModal length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideLightningMigrationModal: apiName: UserPreferencesHideLightningMigrationModal calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideLightningMigrationModal length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideMailAppEAPUserGuidance: apiName: UserPreferencesHideMailAppEAPUserGuidance calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideMailAppEAPUserGuidance length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideMailAppWelcomeMat: apiName: UserPreferencesHideMailAppWelcomeMat calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideMailAppWelcomeMat length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideS1BrowserUI: apiName: UserPreferencesHideS1BrowserUI calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideS1BrowserUI length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideSecondChatterOnboardingSplash: apiName: UserPreferencesHideSecondChatterOnboardingSplash calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideSecondChatterOnboardingSplash length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideSfxWelcomeMat: apiName: UserPreferencesHideSfxWelcomeMat calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideSfxWelcomeMat length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideTaskListViewsPopover: apiName: UserPreferencesHideTaskListViewsPopover calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideTaskListViewsPopover length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideTrialsCelebration: apiName: UserPreferencesHideTrialsCelebration calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideTrialsCelebration length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideTrialsWelcomeMat: apiName: UserPreferencesHideTrialsWelcomeMat calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideTrialsWelcomeMat length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesJigsawListUser: apiName: UserPreferencesJigsawListUser calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: JigsawListUser length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesLightningExperiencePreferred: apiName: UserPreferencesLightningExperiencePreferred calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: LightningExperiencePreferred length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesLtngPromoReserved10UserPref: apiName: UserPreferencesLtngPromoReserved10UserPref calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: LtngPromoReserved10UserPref length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesLtngPromoReserved16UserPref: apiName: UserPreferencesLtngPromoReserved16UserPref calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: LtngPromoReserved16UserPref length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesLtngPromoReserved19UserPref: apiName: UserPreferencesLtngPromoReserved19UserPref calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: LtngPromoReserved19UserPref length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesNativeEmailClient: apiName: UserPreferencesNativeEmailClient calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: NativeEmailClient length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesNewLightningReportRunPageEnabled: apiName: UserPreferencesNewLightningReportRunPageEnabled calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: NewLightningReportRunPageEnabled length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesPathAssistantCollapsed: apiName: UserPreferencesPathAssistantCollapsed calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: PathAssistantCollapsed length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesPreviewCustomTheme: apiName: UserPreferencesPreviewCustomTheme calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: PreviewCustomTheme length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesPreviewLightning: apiName: UserPreferencesPreviewLightning calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: PreviewLightning length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesReadReceiptLastToggleValue: apiName: UserPreferencesReadReceiptLastToggleValue calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ReadReceiptLastToggleValue length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesReceiveNoNotificationsAsApprover: apiName: UserPreferencesReceiveNoNotificationsAsApprover calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ReceiveNoNotificationsAsApprover length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesReceiveNotificationsAsDelegatedApprover: apiName: UserPreferencesReceiveNotificationsAsDelegatedApprover calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ReceiveNotificationsAsDelegatedApprover length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesRecordHomeReservedWTShown: apiName: UserPreferencesRecordHomeReservedWTShown calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: RecordHomeReservedWTShown length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesRecordHomeSectionCollapseWTShown: apiName: UserPreferencesRecordHomeSectionCollapseWTShown calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: RecordHomeSectionCollapseWTShown length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesReminderSoundOff: apiName: UserPreferencesReminderSoundOff calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ReminderSoundOff length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesReverseOpenActivitiesView: apiName: UserPreferencesReverseOpenActivitiesView calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ReverseOpenActivitiesView length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesSRHOverrideActivities: apiName: UserPreferencesSRHOverrideActivities calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SRHOverrideActivities length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesSalesEssentialsSetupAssistantCompleted: apiName: UserPreferencesSalesEssentialsSetupAssistantCompleted calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SalesEssentialsSetupAssistantCompleted length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesSetupAssistantUserPref1: apiName: UserPreferencesSetupAssistantUserPref1 calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SetupAssistantUserPref1 length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowCityToExternalUsers: apiName: UserPreferencesShowCityToExternalUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowCityToExternalUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowCityToGuestUsers: apiName: UserPreferencesShowCityToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowCityToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowCountryToExternalUsers: apiName: UserPreferencesShowCountryToExternalUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowCountryToExternalUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowCountryToGuestUsers: apiName: UserPreferencesShowCountryToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowCountryToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowEmailToExternalUsers: apiName: UserPreferencesShowEmailToExternalUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowEmailToExternalUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowEmailToGuestUsers: apiName: UserPreferencesShowEmailToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowEmailToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowFaxToExternalUsers: apiName: UserPreferencesShowFaxToExternalUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowFaxToExternalUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowFaxToGuestUsers: apiName: UserPreferencesShowFaxToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowFaxToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowForecastingChangeSignals: apiName: UserPreferencesShowForecastingChangeSignals calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowForecastingChangeSignals length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowManagerToExternalUsers: apiName: UserPreferencesShowManagerToExternalUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowManagerToExternalUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowManagerToGuestUsers: apiName: UserPreferencesShowManagerToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowManagerToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowMobilePhoneToExternalUsers: apiName: UserPreferencesShowMobilePhoneToExternalUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowMobilePhoneToExternalUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowMobilePhoneToGuestUsers: apiName: UserPreferencesShowMobilePhoneToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowMobilePhoneToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowPostalCodeToExternalUsers: apiName: UserPreferencesShowPostalCodeToExternalUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowPostalCodeToExternalUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowPostalCodeToGuestUsers: apiName: UserPreferencesShowPostalCodeToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowPostalCodeToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowProfilePicToGuestUsers: apiName: UserPreferencesShowProfilePicToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowProfilePicToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowStateToExternalUsers: apiName: UserPreferencesShowStateToExternalUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowStateToExternalUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowStateToGuestUsers: apiName: UserPreferencesShowStateToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowStateToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowStreetAddressToExternalUsers: apiName: UserPreferencesShowStreetAddressToExternalUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowStreetAddressToExternalUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowStreetAddressToGuestUsers: apiName: UserPreferencesShowStreetAddressToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowStreetAddressToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowTitleToExternalUsers: apiName: UserPreferencesShowTitleToExternalUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowTitleToExternalUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowTitleToGuestUsers: apiName: UserPreferencesShowTitleToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowTitleToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowWorkPhoneToExternalUsers: apiName: UserPreferencesShowWorkPhoneToExternalUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowWorkPhoneToExternalUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowWorkPhoneToGuestUsers: apiName: UserPreferencesShowWorkPhoneToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowWorkPhoneToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesSortFeedByComment: apiName: UserPreferencesSortFeedByComment calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SortFeedByComment length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesSuppressEventSFXReminders: apiName: UserPreferencesSuppressEventSFXReminders calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SuppressEventSFXReminders length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesSuppressTaskSFXReminders: apiName: UserPreferencesSuppressTaskSFXReminders calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SuppressTaskSFXReminders length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesTaskRemindersCheckboxDefault: apiName: UserPreferencesTaskRemindersCheckboxDefault calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: TaskRemindersCheckboxDefault length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesTodayGettingStarted: apiName: UserPreferencesTodayGettingStarted calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: TodayGettingStarted length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesTrailheadBadgeCreated: apiName: UserPreferencesTrailheadBadgeCreated calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: TrailheadBadgeCreated length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesUserDebugModePref: apiName: UserPreferencesUserDebugModePref calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: UserDebugModePref length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserRoleId: apiName: UserRoleId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Role ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: UserRole nameFields: - Name relationshipName: UserRole required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: true UserType: apiName: UserType calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: User Type length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Username: apiName: Username calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Username length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true AboutMe: title: AboutMe required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: string example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: AboutMe calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: TextArea extraTypeInfo: PlainTextArea filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: About Me length: 1000 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true AccountId1: title: AccountId1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: $ref: '#/components/schemas/ReferenceToInfo' description: '' example: [] relationshipName: type: string example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: AccountId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Account nameFields: - Name relationshipName: Account required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: false BadgeText: title: BadgeText required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: BadgeText calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: User Photo badge text overlay length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false BannerPhotoId: title: BannerPhotoId required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: $ref: '#/components/schemas/ReferenceToInfo' description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: BannerPhotoId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Photo ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Photo nameFields: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false BannerPhotoUrl: title: BannerPhotoUrl required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: BannerPhotoUrl calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Url extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Url for banner photo length: 1024 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false CallCenterId: title: CallCenterId required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: $ref: '#/components/schemas/ReferenceToInfo' description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: CallCenterId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Call Center ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: CallCenter nameFields: - Name relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true CompanyName: title: CompanyName required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: CompanyName calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Company Name length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ContactId: title: ContactId required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: $ref: '#/components/schemas/ReferenceToInfo' description: '' example: [] relationshipName: type: string example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: ContactId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Contact ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Contact nameFields: - FirstName - LastName - Name relationshipName: Contact required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: true DefaultGroupNotificationFrequency: title: DefaultGroupNotificationFrequency required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: DefaultGroupNotificationFrequency calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Default Notification Frequency when Joining Groups length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true DelegatedApproverId: title: DelegatedApproverId required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: $ref: '#/components/schemas/ReferenceToInfo' description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: DelegatedApproverId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Delegated Approver ID length: 18 nameField: false polymorphicForeignKey: true precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Group nameFields: - Name - apiName: User nameFields: - FirstName - LastName - Name relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Department1: title: Department1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: Department calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Department length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true DigestFrequency: title: DigestFrequency required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: DigestFrequency calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Chatter Email Highlights Frequency length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Division: title: Division required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: Division calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Division length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true EmailEncodingKey: title: EmailEncodingKey required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: EmailEncodingKey calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Email Encoding length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true EmailPreferencesAutoBcc: title: EmailPreferencesAutoBcc required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: EmailPreferencesAutoBcc calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: AutoBcc length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true EmailPreferencesAutoBccStayInTouch: title: EmailPreferencesAutoBccStayInTouch required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: EmailPreferencesAutoBccStayInTouch calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: AutoBccStayInTouch length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true EmailPreferencesStayInTouchReminder: title: EmailPreferencesStayInTouchReminder required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: EmailPreferencesStayInTouchReminder calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: StayInTouchReminder length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true EmployeeNumber: title: EmployeeNumber required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: EmployeeNumber calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Employee Number length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Extension: title: Extension required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: Extension calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Phone extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Extension length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true FederationIdentifier: title: FederationIdentifier required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: FederationIdentifier calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SAML Federation ID length: 512 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ForecastEnabled: title: ForecastEnabled required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: ForecastEnabled calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Allow Forecasting length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true FullPhotoUrl: title: FullPhotoUrl required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: FullPhotoUrl calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Url extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Url for full-sized Photo length: 1024 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false IsExtIndicatorVisible: title: IsExtIndicatorVisible required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: IsExtIndicatorVisible calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Show external indicator length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false IsPortalEnabled: title: IsPortalEnabled required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: IsPortalEnabled calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Is Portal Enabled length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true IsProfilePhotoActive: title: IsProfilePhotoActive required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: IsProfilePhotoActive calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Has Profile Photo length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false JigsawImportLimitOverride: title: JigsawImportLimitOverride required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: JigsawImportLimitOverride calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Int extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Data.com Monthly Addition Limit length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true LanguageLocaleKey: title: LanguageLocaleKey required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: LanguageLocaleKey calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Language length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true LastLoginDate: title: LastLoginDate required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: LastLoginDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Login length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastPasswordChangeDate: title: LastPasswordChangeDate required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: LastPasswordChangeDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Password Change or Reset length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LocaleSidKey: title: LocaleSidKey required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: LocaleSidKey calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Locale length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ManagerId: title: ManagerId required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: $ref: '#/components/schemas/ReferenceToInfo' description: '' example: [] relationshipName: type: string example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: ManagerId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Manager ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: User nameFields: - FirstName - LastName - Name relationshipName: Manager required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: true MediumBannerPhotoUrl: title: MediumBannerPhotoUrl required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: MediumBannerPhotoUrl calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Url extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Url for Android banner photo length: 1024 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false MediumPhotoUrl: title: MediumPhotoUrl required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: string example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: MediumPhotoUrl calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Url extraTypeInfo: ImageUrl filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Url for medium profile photo length: 1024 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false NumberOfFailedLogins: title: NumberOfFailedLogins required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: NumberOfFailedLogins calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Int extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Failed Login Attempts length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false OfflinePdaTrialExpirationDate: title: OfflinePdaTrialExpirationDate required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: OfflinePdaTrialExpirationDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Sales Anywhere Trial Expiration Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false OfflineTrialExpirationDate: title: OfflineTrialExpirationDate required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: OfflineTrialExpirationDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Offline Edition Trial Expiration Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false OutOfOfficeMessage: title: OutOfOfficeMessage required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: OutOfOfficeMessage calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Out of office message length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false PortalRole: title: PortalRole required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: PortalRole calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Portal Role Level length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ProfilePhotoId: title: ProfilePhotoId required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: $ref: '#/components/schemas/ReferenceToInfo' description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: ProfilePhotoId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Photo ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Photo nameFields: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false ReceivesAdminInfoEmails: title: ReceivesAdminInfoEmails required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: ReceivesAdminInfoEmails calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Admin Info Emails length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ReceivesInfoEmails: title: ReceivesInfoEmails required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: ReceivesInfoEmails calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Info Emails length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SenderEmail: title: SenderEmail required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: SenderEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Email extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Email Sender Address length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SenderName: title: SenderName required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: SenderName calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Email Sender Name length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Signature: title: Signature required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: string example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: Signature calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: TextArea extraTypeInfo: PlainTextArea filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Email Signature length: 1333 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SmallBannerPhotoUrl: title: SmallBannerPhotoUrl required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: SmallBannerPhotoUrl calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Url extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Url for IOS banner photo length: 1024 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false SmallPhotoUrl: title: SmallPhotoUrl required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: string example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: SmallPhotoUrl calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Url extraTypeInfo: ImageUrl filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Photo length: 1024 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false StayInTouchNote: title: StayInTouchNote required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: StayInTouchNote calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Stay-in-Touch Email Note length: 512 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true StayInTouchSignature: title: StayInTouchSignature required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: string example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: StayInTouchSignature calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: TextArea extraTypeInfo: PlainTextArea filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Stay-in-Touch Email Signature length: 512 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true StayInTouchSubject: title: StayInTouchSubject required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: StayInTouchSubject calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Stay-in-Touch Email Subject length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true TimeZoneSidKey: title: TimeZoneSidKey required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: TimeZoneSidKey calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Time Zone length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true UserPermissionsCallCenterAutoLogin: title: UserPermissionsCallCenterAutoLogin required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPermissionsCallCenterAutoLogin calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Auto-login To Call Center length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPermissionsInteractionUser: title: UserPermissionsInteractionUser required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPermissionsInteractionUser calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Flow User length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPermissionsJigsawProspectingUser: title: UserPermissionsJigsawProspectingUser required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPermissionsJigsawProspectingUser calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Data.com User length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPermissionsKnowledgeUser: title: UserPermissionsKnowledgeUser required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPermissionsKnowledgeUser calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Knowledge User length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPermissionsMarketingUser: title: UserPermissionsMarketingUser required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPermissionsMarketingUser calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Marketing User length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPermissionsOfflineUser: title: UserPermissionsOfflineUser required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPermissionsOfflineUser calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Offline User length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPermissionsSFContentUser: title: UserPermissionsSFContentUser required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPermissionsSFContentUser calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Salesforce CRM Content User length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPermissionsSiteforceContributorUser: title: UserPermissionsSiteforceContributorUser required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPermissionsSiteforceContributorUser calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Site.com Contributor User length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPermissionsSiteforcePublisherUser: title: UserPermissionsSiteforcePublisherUser required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPermissionsSiteforcePublisherUser calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Site.com Publisher User length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPermissionsSupportUser: title: UserPermissionsSupportUser required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPermissionsSupportUser calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Service Cloud User length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPermissionsWorkDotComUserFeature: title: UserPermissionsWorkDotComUserFeature required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPermissionsWorkDotComUserFeature calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: WDC User length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesActivityRemindersPopup: title: UserPreferencesActivityRemindersPopup required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesActivityRemindersPopup calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ActivityRemindersPopup length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesApexPagesDeveloperMode: title: UserPreferencesApexPagesDeveloperMode required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesApexPagesDeveloperMode calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ApexPagesDeveloperMode length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesCacheDiagnostics: title: UserPreferencesCacheDiagnostics required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesCacheDiagnostics calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: CacheDiagnostics length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesContentEmailAsAndWhen: title: UserPreferencesContentEmailAsAndWhen required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesContentEmailAsAndWhen calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ContentEmailAsAndWhen length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesContentNoEmail: title: UserPreferencesContentNoEmail required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesContentNoEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ContentNoEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesCreateLEXAppsWTShown: title: UserPreferencesCreateLEXAppsWTShown required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesCreateLEXAppsWTShown calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: CreateLEXAppsWTShown length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDedupeStorageMigrationComplete: title: UserPreferencesDedupeStorageMigrationComplete required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesDedupeStorageMigrationComplete calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DedupeStorageMigrationComplete length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisCommentAfterLikeEmail: title: UserPreferencesDisCommentAfterLikeEmail required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesDisCommentAfterLikeEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisCommentAfterLikeEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisMentionsCommentEmail: title: UserPreferencesDisMentionsCommentEmail required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesDisMentionsCommentEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisMentionsCommentEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisProfPostCommentEmail: title: UserPreferencesDisProfPostCommentEmail required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesDisProfPostCommentEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisProfPostCommentEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableAllFeedsEmail: title: UserPreferencesDisableAllFeedsEmail required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesDisableAllFeedsEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableAllFeedsEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableBookmarkEmail: title: UserPreferencesDisableBookmarkEmail required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesDisableBookmarkEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableBookmarkEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableChangeCommentEmail: title: UserPreferencesDisableChangeCommentEmail required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesDisableChangeCommentEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableChangeCommentEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableEndorsementEmail: title: UserPreferencesDisableEndorsementEmail required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesDisableEndorsementEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableEndorsementEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableFileShareNotificationsForApi: title: UserPreferencesDisableFileShareNotificationsForApi required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesDisableFileShareNotificationsForApi calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableFileShareNotificationsForApi length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableFollowersEmail: title: UserPreferencesDisableFollowersEmail required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesDisableFollowersEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableFollowersEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableLaterCommentEmail: title: UserPreferencesDisableLaterCommentEmail required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesDisableLaterCommentEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableLaterCommentEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableLikeEmail: title: UserPreferencesDisableLikeEmail required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesDisableLikeEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableLikeEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableMentionsPostEmail: title: UserPreferencesDisableMentionsPostEmail required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesDisableMentionsPostEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableMentionsPostEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableMessageEmail: title: UserPreferencesDisableMessageEmail required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesDisableMessageEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableMessageEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableProfilePostEmail: title: UserPreferencesDisableProfilePostEmail required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesDisableProfilePostEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableProfilePostEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableSharePostEmail: title: UserPreferencesDisableSharePostEmail required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesDisableSharePostEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableSharePostEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesEnableAutoSubForFeeds: title: UserPreferencesEnableAutoSubForFeeds required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesEnableAutoSubForFeeds calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: EnableAutoSubForFeeds length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesEventRemindersCheckboxDefault: title: UserPreferencesEventRemindersCheckboxDefault required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesEventRemindersCheckboxDefault calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: EventRemindersCheckboxDefault length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesExcludeMailAppAttachments: title: UserPreferencesExcludeMailAppAttachments required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesExcludeMailAppAttachments calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ExcludeMailAppAttachments length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesFavoritesShowTopFavorites: title: UserPreferencesFavoritesShowTopFavorites required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesFavoritesShowTopFavorites calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: FavoritesShowTopFavorites length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesFavoritesWTShown: title: UserPreferencesFavoritesWTShown required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesFavoritesWTShown calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: FavoritesWTShown length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesFirstTimeInLightning: title: UserPreferencesFirstTimeInLightning required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesFirstTimeInLightning calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: FirstTimeInLightning length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesGlobalNavBarWTShown: title: UserPreferencesGlobalNavBarWTShown required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesGlobalNavBarWTShown calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: GlobalNavBarWTShown length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesGlobalNavGridMenuWTShown: title: UserPreferencesGlobalNavGridMenuWTShown required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesGlobalNavGridMenuWTShown calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: GlobalNavGridMenuWTShown length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHasCelebrationBadge: title: UserPreferencesHasCelebrationBadge required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesHasCelebrationBadge calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HasCelebrationBadge length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHasSentWarningEmail: title: UserPreferencesHasSentWarningEmail required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesHasSentWarningEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HasSentWarningEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHeavyPagePromptEnabled: title: UserPreferencesHeavyPagePromptEnabled required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesHeavyPagePromptEnabled calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HeavyPagePromptEnabled length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideBiggerPhotoCallout: title: UserPreferencesHideBiggerPhotoCallout required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesHideBiggerPhotoCallout calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideBiggerPhotoCallout length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideCSNDesktopTask: title: UserPreferencesHideCSNDesktopTask required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesHideCSNDesktopTask calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideCSNDesktopTask length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideCSNGetChatterMobileTask: title: UserPreferencesHideCSNGetChatterMobileTask required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesHideCSNGetChatterMobileTask calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideCSNGetChatterMobileTask length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideChatterOnboardingSplash: title: UserPreferencesHideChatterOnboardingSplash required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesHideChatterOnboardingSplash calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideChatterOnboardingSplash length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideEndUserOnboardingAssistantModal: title: UserPreferencesHideEndUserOnboardingAssistantModal required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesHideEndUserOnboardingAssistantModal calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideEndUserOnboardingAssistantModal length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideEventCalendar: title: UserPreferencesHideEventCalendar required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesHideEventCalendar calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideEventCalendar length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideLearningPathModal: title: UserPreferencesHideLearningPathModal required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesHideLearningPathModal calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideLearningPathModal length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideLightningMigrationModal: title: UserPreferencesHideLightningMigrationModal required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesHideLightningMigrationModal calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideLightningMigrationModal length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideMailAppEAPUserGuidance: title: UserPreferencesHideMailAppEAPUserGuidance required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesHideMailAppEAPUserGuidance calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideMailAppEAPUserGuidance length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideMailAppWelcomeMat: title: UserPreferencesHideMailAppWelcomeMat required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesHideMailAppWelcomeMat calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideMailAppWelcomeMat length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideS1BrowserUI: title: UserPreferencesHideS1BrowserUI required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesHideS1BrowserUI calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideS1BrowserUI length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideSecondChatterOnboardingSplash: title: UserPreferencesHideSecondChatterOnboardingSplash required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesHideSecondChatterOnboardingSplash calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideSecondChatterOnboardingSplash length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideSfxWelcomeMat: title: UserPreferencesHideSfxWelcomeMat required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesHideSfxWelcomeMat calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideSfxWelcomeMat length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideTaskListViewsPopover: title: UserPreferencesHideTaskListViewsPopover required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesHideTaskListViewsPopover calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideTaskListViewsPopover length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideTrialsCelebration: title: UserPreferencesHideTrialsCelebration required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesHideTrialsCelebration calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideTrialsCelebration length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideTrialsWelcomeMat: title: UserPreferencesHideTrialsWelcomeMat required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesHideTrialsWelcomeMat calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideTrialsWelcomeMat length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesJigsawListUser: title: UserPreferencesJigsawListUser required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesJigsawListUser calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: JigsawListUser length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesLightningExperiencePreferred: title: UserPreferencesLightningExperiencePreferred required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesLightningExperiencePreferred calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: LightningExperiencePreferred length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesLtngPromoReserved10UserPref: title: UserPreferencesLtngPromoReserved10UserPref required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesLtngPromoReserved10UserPref calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: LtngPromoReserved10UserPref length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesLtngPromoReserved16UserPref: title: UserPreferencesLtngPromoReserved16UserPref required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesLtngPromoReserved16UserPref calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: LtngPromoReserved16UserPref length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesLtngPromoReserved19UserPref: title: UserPreferencesLtngPromoReserved19UserPref required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesLtngPromoReserved19UserPref calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: LtngPromoReserved19UserPref length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesNativeEmailClient: title: UserPreferencesNativeEmailClient required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesNativeEmailClient calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: NativeEmailClient length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesNewLightningReportRunPageEnabled: title: UserPreferencesNewLightningReportRunPageEnabled required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesNewLightningReportRunPageEnabled calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: NewLightningReportRunPageEnabled length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesPathAssistantCollapsed: title: UserPreferencesPathAssistantCollapsed required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesPathAssistantCollapsed calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: PathAssistantCollapsed length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesPreviewCustomTheme: title: UserPreferencesPreviewCustomTheme required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesPreviewCustomTheme calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: PreviewCustomTheme length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesPreviewLightning: title: UserPreferencesPreviewLightning required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesPreviewLightning calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: PreviewLightning length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesReadReceiptLastToggleValue: title: UserPreferencesReadReceiptLastToggleValue required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesReadReceiptLastToggleValue calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ReadReceiptLastToggleValue length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesReceiveNoNotificationsAsApprover: title: UserPreferencesReceiveNoNotificationsAsApprover required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesReceiveNoNotificationsAsApprover calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ReceiveNoNotificationsAsApprover length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesReceiveNotificationsAsDelegatedApprover: title: UserPreferencesReceiveNotificationsAsDelegatedApprover required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesReceiveNotificationsAsDelegatedApprover calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ReceiveNotificationsAsDelegatedApprover length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesRecordHomeReservedWTShown: title: UserPreferencesRecordHomeReservedWTShown required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesRecordHomeReservedWTShown calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: RecordHomeReservedWTShown length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesRecordHomeSectionCollapseWTShown: title: UserPreferencesRecordHomeSectionCollapseWTShown required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesRecordHomeSectionCollapseWTShown calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: RecordHomeSectionCollapseWTShown length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesReminderSoundOff: title: UserPreferencesReminderSoundOff required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesReminderSoundOff calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ReminderSoundOff length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesReverseOpenActivitiesView: title: UserPreferencesReverseOpenActivitiesView required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesReverseOpenActivitiesView calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ReverseOpenActivitiesView length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesSRHOverrideActivities: title: UserPreferencesSRHOverrideActivities required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesSRHOverrideActivities calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SRHOverrideActivities length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesSalesEssentialsSetupAssistantCompleted: title: UserPreferencesSalesEssentialsSetupAssistantCompleted required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesSalesEssentialsSetupAssistantCompleted calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SalesEssentialsSetupAssistantCompleted length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesSetupAssistantUserPref1: title: UserPreferencesSetupAssistantUserPref1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesSetupAssistantUserPref1 calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SetupAssistantUserPref1 length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowCityToExternalUsers: title: UserPreferencesShowCityToExternalUsers required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesShowCityToExternalUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowCityToExternalUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowCityToGuestUsers: title: UserPreferencesShowCityToGuestUsers required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesShowCityToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowCityToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowCountryToExternalUsers: title: UserPreferencesShowCountryToExternalUsers required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesShowCountryToExternalUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowCountryToExternalUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowCountryToGuestUsers: title: UserPreferencesShowCountryToGuestUsers required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesShowCountryToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowCountryToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowEmailToExternalUsers: title: UserPreferencesShowEmailToExternalUsers required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesShowEmailToExternalUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowEmailToExternalUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowEmailToGuestUsers: title: UserPreferencesShowEmailToGuestUsers required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesShowEmailToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowEmailToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowFaxToExternalUsers: title: UserPreferencesShowFaxToExternalUsers required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesShowFaxToExternalUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowFaxToExternalUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowFaxToGuestUsers: title: UserPreferencesShowFaxToGuestUsers required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesShowFaxToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowFaxToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowForecastingChangeSignals: title: UserPreferencesShowForecastingChangeSignals required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesShowForecastingChangeSignals calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowForecastingChangeSignals length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowManagerToExternalUsers: title: UserPreferencesShowManagerToExternalUsers required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesShowManagerToExternalUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowManagerToExternalUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowManagerToGuestUsers: title: UserPreferencesShowManagerToGuestUsers required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesShowManagerToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowManagerToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowMobilePhoneToExternalUsers: title: UserPreferencesShowMobilePhoneToExternalUsers required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesShowMobilePhoneToExternalUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowMobilePhoneToExternalUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowMobilePhoneToGuestUsers: title: UserPreferencesShowMobilePhoneToGuestUsers required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesShowMobilePhoneToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowMobilePhoneToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowPostalCodeToExternalUsers: title: UserPreferencesShowPostalCodeToExternalUsers required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesShowPostalCodeToExternalUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowPostalCodeToExternalUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowPostalCodeToGuestUsers: title: UserPreferencesShowPostalCodeToGuestUsers required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesShowPostalCodeToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowPostalCodeToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowProfilePicToGuestUsers: title: UserPreferencesShowProfilePicToGuestUsers required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesShowProfilePicToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowProfilePicToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowStateToExternalUsers: title: UserPreferencesShowStateToExternalUsers required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesShowStateToExternalUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowStateToExternalUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowStateToGuestUsers: title: UserPreferencesShowStateToGuestUsers required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesShowStateToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowStateToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowStreetAddressToExternalUsers: title: UserPreferencesShowStreetAddressToExternalUsers required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesShowStreetAddressToExternalUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowStreetAddressToExternalUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowStreetAddressToGuestUsers: title: UserPreferencesShowStreetAddressToGuestUsers required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesShowStreetAddressToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowStreetAddressToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowTitleToExternalUsers: title: UserPreferencesShowTitleToExternalUsers required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesShowTitleToExternalUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowTitleToExternalUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowTitleToGuestUsers: title: UserPreferencesShowTitleToGuestUsers required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesShowTitleToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowTitleToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowWorkPhoneToExternalUsers: title: UserPreferencesShowWorkPhoneToExternalUsers required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesShowWorkPhoneToExternalUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowWorkPhoneToExternalUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowWorkPhoneToGuestUsers: title: UserPreferencesShowWorkPhoneToGuestUsers required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesShowWorkPhoneToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowWorkPhoneToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesSortFeedByComment: title: UserPreferencesSortFeedByComment required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesSortFeedByComment calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SortFeedByComment length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesSuppressEventSFXReminders: title: UserPreferencesSuppressEventSFXReminders required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesSuppressEventSFXReminders calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SuppressEventSFXReminders length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesSuppressTaskSFXReminders: title: UserPreferencesSuppressTaskSFXReminders required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesSuppressTaskSFXReminders calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SuppressTaskSFXReminders length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesTaskRemindersCheckboxDefault: title: UserPreferencesTaskRemindersCheckboxDefault required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesTaskRemindersCheckboxDefault calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: TaskRemindersCheckboxDefault length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesTodayGettingStarted: title: UserPreferencesTodayGettingStarted required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesTodayGettingStarted calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: TodayGettingStarted length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesTrailheadBadgeCreated: title: UserPreferencesTrailheadBadgeCreated required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesTrailheadBadgeCreated calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: TrailheadBadgeCreated length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesUserDebugModePref: title: UserPreferencesUserDebugModePref required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserPreferencesUserDebugModePref calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: UserDebugModePref length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserType: title: UserType required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UserType calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: User Type length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Records: title: Records required: - 00QB0000003pOQsMAM - 00QB0000003pORDMA2 type: object properties: 00QB0000003pOQsMAM: $ref: '#/components/schemas/00QB0000003pOQsMAM' 00QB0000003pORDMA2: $ref: '#/components/schemas/00QB0000003pORDMA2' examples: - 00QB0000003pOQsMAM: apiName: Lead childRelationships: {} eTag: e79d644a0e26dd84435737c9b78a01f5 fields: AnnualRevenue: displayValue: $900,750,000 value: 900750000 City: displayValue: value: Tallahassee Company: displayValue: value: Farmers Coop. of Florida Country: displayValue: value: USA CreatedBy: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cc07f7ef1b08ddbd75074c69512dd388 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2023-02-02T10:32:12.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-09-27T15:47:51.000Z' weakEtag: 1695829671000 CreatedById: displayValue: value: 005B0000003TOI6IAO CreatedDate: displayValue: 18/08/2017 16:46 value: '2017-08-18T14:46:22.000Z' CurrentGenerators__c: displayValue: value: All Description: displayValue: value: Email: displayValue: value: bertha@fcof.net Fax: displayValue: value: (850) 644-4300 FirstName: displayValue: value: Bertha Industry: displayValue: Agriculture value: Agriculture LastModifiedBy: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cc07f7ef1b08ddbd75074c69512dd388 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2023-02-02T10:32:12.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-09-27T15:47:51.000Z' weakEtag: 1695829671000 LastModifiedById: displayValue: value: 005B0000003TOI6IAO LastModifiedDate: displayValue: 27/09/2023 17:47 value: '2023-09-27T15:47:56.000Z' LastName: displayValue: value: Boxer LeadSource: displayValue: Web value: Web MobilePhone: displayValue: value: NumberOfEmployees: displayValue: value: NumberofLocations__c: displayValue: value: 130 Owner: displayValue: Philippe Ozil value: apiName: Name childRelationships: {} eTag: 0bc3e9cacd329a24b7ca09ecf5dd27c1 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: lastModifiedDate: recordTypeId: recordTypeInfo: systemModstamp: weakEtag: 0 OwnerId: displayValue: value: 005B0000003TOI6IAO Phone: displayValue: value: (850) 644-4200 PostalCode: displayValue: value: '32306' Primary__c: displayValue: 'Yes' value: 'Yes' ProductInterest__c: displayValue: GC5000 series value: GC5000 series Rating: displayValue: Hot value: Hot SICCode__c: displayValue: value: '2768' Salutation: displayValue: Ms. value: Ms. State: displayValue: value: FL Status: displayValue: Working - Contacted value: Working - Contacted Street: displayValue: value: 321 Westcott Building Title: displayValue: value: Director of Vendor Relations Website: displayValue: value: id: 00QB0000003pOQsMAM lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2023-09-27T15:47:56.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2023-09-27T15:47:56.000Z' weakEtag: 1695829676000 00QB0000003pORDMA2: apiName: Lead childRelationships: {} eTag: 015958bb8c44279cba6c8f899be4d834 fields: AnnualRevenue: displayValue: value: City: displayValue: value: Company: displayValue: value: American Banking Corp. Country: displayValue: value: USA CreatedBy: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cc07f7ef1b08ddbd75074c69512dd388 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2023-02-02T10:32:12.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-09-27T15:47:51.000Z' weakEtag: 1695829671000 CreatedById: displayValue: value: 005B0000003TOI6IAO CreatedDate: displayValue: 18/08/2017 16:46 value: '2017-08-18T14:46:22.000Z' CurrentGenerators__c: displayValue: value: All Description: displayValue: value: Email: displayValue: value: bblair@abankingco.com Fax: displayValue: value: FirstName: displayValue: value: Betty Industry: displayValue: value: LastModifiedBy: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cc07f7ef1b08ddbd75074c69512dd388 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2023-02-02T10:32:12.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-09-27T15:47:51.000Z' weakEtag: 1695829671000 LastModifiedById: displayValue: value: 005B0000003TOI6IAO LastModifiedDate: displayValue: 27/09/2023 17:51 value: '2023-09-27T15:51:59.000Z' LastName: displayValue: value: Bair LeadSource: displayValue: Purchased List value: Purchased List MobilePhone: displayValue: value: NumberOfEmployees: displayValue: value: NumberofLocations__c: displayValue: value: 130 Owner: displayValue: Philippe Ozil value: apiName: Name childRelationships: {} eTag: 0bc3e9cacd329a24b7ca09ecf5dd27c1 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: lastModifiedDate: recordTypeId: recordTypeInfo: systemModstamp: weakEtag: 0 OwnerId: displayValue: value: 005B0000003TOI6IAO Phone: displayValue: value: (610) 265-9100 PostalCode: displayValue: value: Primary__c: displayValue: 'Yes' value: 'Yes' ProductInterest__c: displayValue: GC5000 series value: GC5000 series Rating: displayValue: value: SICCode__c: displayValue: value: '2768' Salutation: displayValue: Ms value: Ms State: displayValue: value: PA Status: displayValue: Working - Contacted value: Working - Contacted Street: displayValue: value: Title: displayValue: value: VP, Administration Website: displayValue: value: id: 00QB0000003pORDMA2 lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2023-09-27T15:51:59.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2023-09-27T15:51:59.000Z' weakEtag: 1695829919000 00QB0000003pOQsMAM: title: 00QB0000003pOQsMAM required: - apiName - childRelationships - eTag - fields - id - lastModifiedById - lastModifiedDate - recordTypeId - recordTypeInfo - systemModstamp - weakEtag type: object properties: apiName: type: string example: example_value childRelationships: type: object example: example_value eTag: type: string example: example_value fields: $ref: '#/components/schemas/Fields7' id: type: string example: abc123 lastModifiedById: type: string example: '500123' lastModifiedDate: type: string example: example_value recordTypeId: type: string example: '500123' recordTypeInfo: type: - string - 'null' example: example_value systemModstamp: type: string example: example_value weakEtag: type: integer contentEncoding: int64 example: 10 examples: - apiName: Lead childRelationships: {} eTag: e79d644a0e26dd84435737c9b78a01f5 fields: AnnualRevenue: displayValue: $900,750,000 value: 900750000 City: displayValue: value: Tallahassee Company: displayValue: value: Farmers Coop. of Florida Country: displayValue: value: USA CreatedBy: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cc07f7ef1b08ddbd75074c69512dd388 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2023-02-02T10:32:12.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-09-27T15:47:51.000Z' weakEtag: 1695829671000 CreatedById: displayValue: value: 005B0000003TOI6IAO CreatedDate: displayValue: 18/08/2017 16:46 value: '2017-08-18T14:46:22.000Z' CurrentGenerators__c: displayValue: value: All Description: displayValue: value: Email: displayValue: value: bertha@fcof.net Fax: displayValue: value: (850) 644-4300 FirstName: displayValue: value: Bertha Industry: displayValue: Agriculture value: Agriculture LastModifiedBy: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cc07f7ef1b08ddbd75074c69512dd388 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2023-02-02T10:32:12.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-09-27T15:47:51.000Z' weakEtag: 1695829671000 LastModifiedById: displayValue: value: 005B0000003TOI6IAO LastModifiedDate: displayValue: 27/09/2023 17:47 value: '2023-09-27T15:47:56.000Z' LastName: displayValue: value: Boxer LeadSource: displayValue: Web value: Web MobilePhone: displayValue: value: NumberOfEmployees: displayValue: value: NumberofLocations__c: displayValue: value: 130 Owner: displayValue: Philippe Ozil value: apiName: Name childRelationships: {} eTag: 0bc3e9cacd329a24b7ca09ecf5dd27c1 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: lastModifiedDate: recordTypeId: recordTypeInfo: systemModstamp: weakEtag: 0 OwnerId: displayValue: value: 005B0000003TOI6IAO Phone: displayValue: value: (850) 644-4200 PostalCode: displayValue: value: '32306' Primary__c: displayValue: 'Yes' value: 'Yes' ProductInterest__c: displayValue: GC5000 series value: GC5000 series Rating: displayValue: Hot value: Hot SICCode__c: displayValue: value: '2768' Salutation: displayValue: Ms. value: Ms. State: displayValue: value: FL Status: displayValue: Working - Contacted value: Working - Contacted Street: displayValue: value: 321 Westcott Building Title: displayValue: value: Director of Vendor Relations Website: displayValue: value: id: 00QB0000003pOQsMAM lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2023-09-27T15:47:56.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2023-09-27T15:47:56.000Z' weakEtag: 1695829676000 Fields7: title: Fields7 required: - AnnualRevenue - City - Company - Country - CreatedBy - CreatedById - CreatedDate - CurrentGenerators__c - Description - Email - Fax - FirstName - Industry - LastModifiedBy - LastModifiedById - LastModifiedDate - LastName - LeadSource - MobilePhone - NumberOfEmployees - NumberofLocations__c - Owner - OwnerId - Phone - PostalCode - Primary__c - ProductInterest__c - Rating - SICCode__c - Salutation - State - Status - Street - Title - Website type: object properties: AnnualRevenue: $ref: '#/components/schemas/AnnualRevenue2' City: $ref: '#/components/schemas/City2' Company: $ref: '#/components/schemas/Company1' Country: $ref: '#/components/schemas/Country2' CreatedBy: $ref: '#/components/schemas/CreatedBy3' CreatedById: $ref: '#/components/schemas/CreatedById5' CreatedDate: $ref: '#/components/schemas/CreatedDate5' CurrentGenerators__c: $ref: '#/components/schemas/CurrentGeneratorsC1' Description: $ref: '#/components/schemas/Description6' Email: $ref: '#/components/schemas/Email5' Fax: $ref: '#/components/schemas/Fax4' FirstName: $ref: '#/components/schemas/FirstName4' Industry: $ref: '#/components/schemas/Industry2' LastModifiedBy: $ref: '#/components/schemas/LastModifiedBy3' LastModifiedById: $ref: '#/components/schemas/LastModifiedById5' LastModifiedDate: $ref: '#/components/schemas/LastModifiedDate5' LastName: $ref: '#/components/schemas/LastName4' LeadSource: $ref: '#/components/schemas/LeadSource2' MobilePhone: $ref: '#/components/schemas/MobilePhone3' NumberOfEmployees: $ref: '#/components/schemas/NumberOfEmployees2' NumberofLocations__c: $ref: '#/components/schemas/NumberofLocationsC2' Owner: $ref: '#/components/schemas/Owner4' OwnerId: $ref: '#/components/schemas/OwnerId4' Phone: $ref: '#/components/schemas/Phone5' PostalCode: $ref: '#/components/schemas/PostalCode2' Primary__c: $ref: '#/components/schemas/PrimaryC1' ProductInterest__c: $ref: '#/components/schemas/ProductInterestC1' Rating: $ref: '#/components/schemas/Rating2' SICCode__c: $ref: '#/components/schemas/SICCodeC1' Salutation: $ref: '#/components/schemas/Salutation2' State: $ref: '#/components/schemas/State2' Status: $ref: '#/components/schemas/Status9' Street: $ref: '#/components/schemas/Street2' Title: $ref: '#/components/schemas/Title4' Website: $ref: '#/components/schemas/Website2' examples: - AnnualRevenue: displayValue: $900,750,000 value: 900750000 City: displayValue: value: Tallahassee Company: displayValue: value: Farmers Coop. of Florida Country: displayValue: value: USA CreatedBy: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cc07f7ef1b08ddbd75074c69512dd388 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2023-02-02T10:32:12.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-09-27T15:47:51.000Z' weakEtag: 1695829671000 CreatedById: displayValue: value: 005B0000003TOI6IAO CreatedDate: displayValue: 18/08/2017 16:46 value: '2017-08-18T14:46:22.000Z' CurrentGenerators__c: displayValue: value: All Description: displayValue: value: Email: displayValue: value: bertha@fcof.net Fax: displayValue: value: (850) 644-4300 FirstName: displayValue: value: Bertha Industry: displayValue: Agriculture value: Agriculture LastModifiedBy: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cc07f7ef1b08ddbd75074c69512dd388 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2023-02-02T10:32:12.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-09-27T15:47:51.000Z' weakEtag: 1695829671000 LastModifiedById: displayValue: value: 005B0000003TOI6IAO LastModifiedDate: displayValue: 27/09/2023 17:47 value: '2023-09-27T15:47:56.000Z' LastName: displayValue: value: Boxer LeadSource: displayValue: Web value: Web MobilePhone: displayValue: value: NumberOfEmployees: displayValue: value: NumberofLocations__c: displayValue: value: 130 Owner: displayValue: Philippe Ozil value: apiName: Name childRelationships: {} eTag: 0bc3e9cacd329a24b7ca09ecf5dd27c1 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: lastModifiedDate: recordTypeId: recordTypeInfo: systemModstamp: weakEtag: 0 OwnerId: displayValue: value: 005B0000003TOI6IAO Phone: displayValue: value: (850) 644-4200 PostalCode: displayValue: value: '32306' Primary__c: displayValue: 'Yes' value: 'Yes' ProductInterest__c: displayValue: GC5000 series value: GC5000 series Rating: displayValue: Hot value: Hot SICCode__c: displayValue: value: '2768' Salutation: displayValue: Ms. value: Ms. State: displayValue: value: FL Status: displayValue: Working - Contacted value: Working - Contacted Street: displayValue: value: 321 Westcott Building Title: displayValue: value: Director of Vendor Relations Website: displayValue: value: AnnualRevenue2: title: AnnualRevenue2 required: - displayValue - value type: object properties: displayValue: type: string example: example_value value: type: integer contentEncoding: int32 example: 10 examples: - displayValue: $900,750,000 value: 900750000 City2: title: City2 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: string example: example_value examples: - displayValue: value: Tallahassee Company1: title: Company1 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: string example: example_value examples: - displayValue: value: Farmers Coop. of Florida Country2: title: Country2 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: string example: example_value examples: - displayValue: value: USA CreatedBy3: title: CreatedBy3 required: - displayValue - value type: object properties: displayValue: type: string example: example_value value: $ref: '#/components/schemas/Value' examples: - displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cc07f7ef1b08ddbd75074c69512dd388 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2023-02-02T10:32:12.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-09-27T15:47:51.000Z' weakEtag: 1695829671000 Value: title: Value required: - apiName - childRelationships - eTag - fields - id - lastModifiedById - lastModifiedDate - recordTypeId - recordTypeInfo - systemModstamp - weakEtag type: object properties: apiName: type: string example: example_value childRelationships: type: object example: example_value eTag: type: string example: example_value fields: $ref: '#/components/schemas/Fields8' id: type: string example: abc123 lastModifiedById: type: string example: '500123' lastModifiedDate: type: string example: example_value recordTypeId: type: - string - 'null' example: '500123' recordTypeInfo: type: - string - 'null' example: example_value systemModstamp: type: string example: example_value weakEtag: type: integer contentEncoding: int64 example: 10 examples: - apiName: User childRelationships: {} eTag: cc07f7ef1b08ddbd75074c69512dd388 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2023-02-02T10:32:12.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-09-27T15:47:51.000Z' weakEtag: 1695829671000 Fields8: title: Fields8 required: - Id - Name type: object properties: Id: $ref: '#/components/schemas/Id8' Name: $ref: '#/components/schemas/Name21' examples: - Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil Id8: title: Id8 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: string example: example_value examples: - displayValue: value: 005B0000003TOI6IAO Name21: title: Name21 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: string example: example_value examples: - displayValue: value: Philippe Ozil CreatedById5: title: CreatedById5 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: string example: example_value examples: - displayValue: value: 005B0000003TOI6IAO CreatedDate5: title: CreatedDate5 required: - displayValue - value type: object properties: displayValue: type: string example: example_value value: type: string example: example_value examples: - displayValue: 18/08/2017 16:46 value: '2017-08-18T14:46:22.000Z' CurrentGeneratorsC1: title: CurrentGeneratorsC1 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: string example: example_value examples: - displayValue: value: All Description6: title: Description6 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: - string - 'null' example: example_value examples: - displayValue: value: Email5: title: Email5 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: string example: example_value examples: - displayValue: value: bertha@fcof.net Fax4: title: Fax4 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: string example: example_value examples: - displayValue: value: (850) 644-4300 FirstName4: title: FirstName4 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: string example: example_value examples: - displayValue: value: Bertha Industry2: title: Industry2 required: - displayValue - value type: object properties: displayValue: type: string example: example_value value: type: string example: example_value examples: - displayValue: Agriculture value: Agriculture LastModifiedBy3: title: LastModifiedBy3 required: - displayValue - value type: object properties: displayValue: type: string example: example_value value: $ref: '#/components/schemas/Value' examples: - displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cc07f7ef1b08ddbd75074c69512dd388 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2023-02-02T10:32:12.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-09-27T15:47:51.000Z' weakEtag: 1695829671000 LastModifiedById5: title: LastModifiedById5 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: string example: example_value examples: - displayValue: value: 005B0000003TOI6IAO LastModifiedDate5: title: LastModifiedDate5 required: - displayValue - value type: object properties: displayValue: type: string example: example_value value: type: string example: example_value examples: - displayValue: 27/09/2023 17:47 value: '2023-09-27T15:47:56.000Z' LastName4: title: LastName4 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: string example: example_value examples: - displayValue: value: Boxer LeadSource2: title: LeadSource2 required: - displayValue - value type: object properties: displayValue: type: string example: example_value value: type: string example: example_value examples: - displayValue: Web value: Web MobilePhone3: title: MobilePhone3 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: - string - 'null' example: example_value examples: - displayValue: value: NumberOfEmployees2: title: NumberOfEmployees2 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: - string - 'null' example: example_value examples: - displayValue: value: NumberofLocationsC2: title: NumberofLocationsC2 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: integer contentEncoding: int32 example: 10 examples: - displayValue: value: 130 Owner4: title: Owner4 required: - displayValue - value type: object properties: displayValue: type: string example: example_value value: $ref: '#/components/schemas/Value2' examples: - displayValue: Philippe Ozil value: apiName: Name childRelationships: {} eTag: 0bc3e9cacd329a24b7ca09ecf5dd27c1 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: lastModifiedDate: recordTypeId: recordTypeInfo: systemModstamp: weakEtag: 0 Value2: title: Value2 required: - apiName - childRelationships - eTag - fields - id - lastModifiedById - lastModifiedDate - recordTypeId - recordTypeInfo - systemModstamp - weakEtag type: object properties: apiName: type: string example: example_value childRelationships: type: object example: example_value eTag: type: string example: example_value fields: $ref: '#/components/schemas/Fields8' id: type: string example: abc123 lastModifiedById: type: - string - 'null' example: '500123' lastModifiedDate: type: - string - 'null' example: example_value recordTypeId: type: - string - 'null' example: '500123' recordTypeInfo: type: - string - 'null' example: example_value systemModstamp: type: - string - 'null' example: example_value weakEtag: type: integer contentEncoding: int32 example: 10 examples: - apiName: Name childRelationships: {} eTag: 0bc3e9cacd329a24b7ca09ecf5dd27c1 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: lastModifiedDate: recordTypeId: recordTypeInfo: systemModstamp: weakEtag: 0 OwnerId4: title: OwnerId4 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: string example: example_value examples: - displayValue: value: 005B0000003TOI6IAO Phone5: title: Phone5 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: string example: example_value examples: - displayValue: value: (850) 644-4200 PostalCode2: title: PostalCode2 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: string example: example_value examples: - displayValue: value: '32306' PrimaryC1: title: PrimaryC1 required: - displayValue - value type: object properties: displayValue: type: string example: example_value value: type: string example: example_value examples: - displayValue: 'Yes' value: 'Yes' ProductInterestC1: title: ProductInterestC1 required: - displayValue - value type: object properties: displayValue: type: string example: example_value value: type: string example: example_value examples: - displayValue: GC5000 series value: GC5000 series Rating2: title: Rating2 required: - displayValue - value type: object properties: displayValue: type: string example: example_value value: type: string example: example_value examples: - displayValue: Hot value: Hot SICCodeC1: title: SICCodeC1 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: string example: example_value examples: - displayValue: value: '2768' Salutation2: title: Salutation2 required: - displayValue - value type: object properties: displayValue: type: string example: example_value value: type: string example: example_value examples: - displayValue: Ms. value: Ms. State2: title: State2 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: string example: example_value examples: - displayValue: value: FL Status9: title: Status9 required: - displayValue - value type: object properties: displayValue: type: string example: example_value value: type: string example: example_value examples: - displayValue: Working - Contacted value: Working - Contacted Street2: title: Street2 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: string example: example_value examples: - displayValue: value: 321 Westcott Building Title4: title: Title4 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: string example: example_value examples: - displayValue: value: Director of Vendor Relations Website2: title: Website2 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: - string - 'null' example: example_value examples: - displayValue: value: 00QB0000003pORDMA2: title: 00QB0000003pORDMA2 required: - apiName - childRelationships - eTag - fields - id - lastModifiedById - lastModifiedDate - recordTypeId - recordTypeInfo - systemModstamp - weakEtag type: object properties: apiName: type: string example: example_value childRelationships: type: object example: example_value eTag: type: string example: example_value fields: $ref: '#/components/schemas/Fields11' id: type: string example: abc123 lastModifiedById: type: string example: '500123' lastModifiedDate: type: string example: example_value recordTypeId: type: string example: '500123' recordTypeInfo: type: - string - 'null' example: example_value systemModstamp: type: string example: example_value weakEtag: type: integer contentEncoding: int64 example: 10 examples: - apiName: Lead childRelationships: {} eTag: 015958bb8c44279cba6c8f899be4d834 fields: AnnualRevenue: displayValue: value: City: displayValue: value: Company: displayValue: value: American Banking Corp. Country: displayValue: value: USA CreatedBy: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cc07f7ef1b08ddbd75074c69512dd388 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2023-02-02T10:32:12.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-09-27T15:47:51.000Z' weakEtag: 1695829671000 CreatedById: displayValue: value: 005B0000003TOI6IAO CreatedDate: displayValue: 18/08/2017 16:46 value: '2017-08-18T14:46:22.000Z' CurrentGenerators__c: displayValue: value: All Description: displayValue: value: Email: displayValue: value: bblair@abankingco.com Fax: displayValue: value: FirstName: displayValue: value: Betty Industry: displayValue: value: LastModifiedBy: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cc07f7ef1b08ddbd75074c69512dd388 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2023-02-02T10:32:12.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-09-27T15:47:51.000Z' weakEtag: 1695829671000 LastModifiedById: displayValue: value: 005B0000003TOI6IAO LastModifiedDate: displayValue: 27/09/2023 17:51 value: '2023-09-27T15:51:59.000Z' LastName: displayValue: value: Bair LeadSource: displayValue: Purchased List value: Purchased List MobilePhone: displayValue: value: NumberOfEmployees: displayValue: value: NumberofLocations__c: displayValue: value: 130 Owner: displayValue: Philippe Ozil value: apiName: Name childRelationships: {} eTag: 0bc3e9cacd329a24b7ca09ecf5dd27c1 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: lastModifiedDate: recordTypeId: recordTypeInfo: systemModstamp: weakEtag: 0 OwnerId: displayValue: value: 005B0000003TOI6IAO Phone: displayValue: value: (610) 265-9100 PostalCode: displayValue: value: Primary__c: displayValue: 'Yes' value: 'Yes' ProductInterest__c: displayValue: GC5000 series value: GC5000 series Rating: displayValue: value: SICCode__c: displayValue: value: '2768' Salutation: displayValue: Ms value: Ms State: displayValue: value: PA Status: displayValue: Working - Contacted value: Working - Contacted Street: displayValue: value: Title: displayValue: value: VP, Administration Website: displayValue: value: id: 00QB0000003pORDMA2 lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2023-09-27T15:51:59.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2023-09-27T15:51:59.000Z' weakEtag: 1695829919000 Fields11: title: Fields11 required: - AnnualRevenue - City - Company - Country - CreatedBy - CreatedById - CreatedDate - CurrentGenerators__c - Description - Email - Fax - FirstName - Industry - LastModifiedBy - LastModifiedById - LastModifiedDate - LastName - LeadSource - MobilePhone - NumberOfEmployees - NumberofLocations__c - Owner - OwnerId - Phone - PostalCode - Primary__c - ProductInterest__c - Rating - SICCode__c - Salutation - State - Status - Street - Title - Website type: object properties: AnnualRevenue: $ref: '#/components/schemas/AnnualRevenue3' City: $ref: '#/components/schemas/City3' Company: $ref: '#/components/schemas/Company1' Country: $ref: '#/components/schemas/Country2' CreatedBy: $ref: '#/components/schemas/CreatedBy3' CreatedById: $ref: '#/components/schemas/CreatedById5' CreatedDate: $ref: '#/components/schemas/CreatedDate5' CurrentGenerators__c: $ref: '#/components/schemas/CurrentGeneratorsC1' Description: $ref: '#/components/schemas/Description6' Email: $ref: '#/components/schemas/Email5' Fax: $ref: '#/components/schemas/Fax5' FirstName: $ref: '#/components/schemas/FirstName4' Industry: $ref: '#/components/schemas/Industry3' LastModifiedBy: $ref: '#/components/schemas/LastModifiedBy3' LastModifiedById: $ref: '#/components/schemas/LastModifiedById5' LastModifiedDate: $ref: '#/components/schemas/LastModifiedDate5' LastName: $ref: '#/components/schemas/LastName4' LeadSource: $ref: '#/components/schemas/LeadSource2' MobilePhone: $ref: '#/components/schemas/MobilePhone3' NumberOfEmployees: $ref: '#/components/schemas/NumberOfEmployees2' NumberofLocations__c: $ref: '#/components/schemas/NumberofLocationsC2' Owner: $ref: '#/components/schemas/Owner4' OwnerId: $ref: '#/components/schemas/OwnerId4' Phone: $ref: '#/components/schemas/Phone5' PostalCode: $ref: '#/components/schemas/PostalCode3' Primary__c: $ref: '#/components/schemas/PrimaryC1' ProductInterest__c: $ref: '#/components/schemas/ProductInterestC1' Rating: $ref: '#/components/schemas/Rating3' SICCode__c: $ref: '#/components/schemas/SICCodeC1' Salutation: $ref: '#/components/schemas/Salutation2' State: $ref: '#/components/schemas/State2' Status: $ref: '#/components/schemas/Status9' Street: $ref: '#/components/schemas/Street3' Title: $ref: '#/components/schemas/Title4' Website: $ref: '#/components/schemas/Website2' examples: - AnnualRevenue: displayValue: value: City: displayValue: value: Company: displayValue: value: American Banking Corp. Country: displayValue: value: USA CreatedBy: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cc07f7ef1b08ddbd75074c69512dd388 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2023-02-02T10:32:12.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-09-27T15:47:51.000Z' weakEtag: 1695829671000 CreatedById: displayValue: value: 005B0000003TOI6IAO CreatedDate: displayValue: 18/08/2017 16:46 value: '2017-08-18T14:46:22.000Z' CurrentGenerators__c: displayValue: value: All Description: displayValue: value: Email: displayValue: value: bblair@abankingco.com Fax: displayValue: value: FirstName: displayValue: value: Betty Industry: displayValue: value: LastModifiedBy: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cc07f7ef1b08ddbd75074c69512dd388 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2023-02-02T10:32:12.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-09-27T15:47:51.000Z' weakEtag: 1695829671000 LastModifiedById: displayValue: value: 005B0000003TOI6IAO LastModifiedDate: displayValue: 27/09/2023 17:51 value: '2023-09-27T15:51:59.000Z' LastName: displayValue: value: Bair LeadSource: displayValue: Purchased List value: Purchased List MobilePhone: displayValue: value: NumberOfEmployees: displayValue: value: NumberofLocations__c: displayValue: value: 130 Owner: displayValue: Philippe Ozil value: apiName: Name childRelationships: {} eTag: 0bc3e9cacd329a24b7ca09ecf5dd27c1 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: lastModifiedDate: recordTypeId: recordTypeInfo: systemModstamp: weakEtag: 0 OwnerId: displayValue: value: 005B0000003TOI6IAO Phone: displayValue: value: (610) 265-9100 PostalCode: displayValue: value: Primary__c: displayValue: 'Yes' value: 'Yes' ProductInterest__c: displayValue: GC5000 series value: GC5000 series Rating: displayValue: value: SICCode__c: displayValue: value: '2768' Salutation: displayValue: Ms value: Ms State: displayValue: value: PA Status: displayValue: Working - Contacted value: Working - Contacted Street: displayValue: value: Title: displayValue: value: VP, Administration Website: displayValue: value: AnnualRevenue3: title: AnnualRevenue3 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: - string - 'null' example: example_value examples: - displayValue: value: City3: title: City3 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: - string - 'null' example: example_value examples: - displayValue: value: Fax5: title: Fax5 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: - string - 'null' example: example_value examples: - displayValue: value: Industry3: title: Industry3 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: - string - 'null' example: example_value examples: - displayValue: value: PostalCode3: title: PostalCode3 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: - string - 'null' example: example_value examples: - displayValue: value: Rating3: title: Rating3 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: - string - 'null' example: example_value examples: - displayValue: value: Street3: title: Street3 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: - string - 'null' example: example_value examples: - displayValue: value: GetRecordLayoutMetadata: title: GetRecordLayoutMetadata required: - eTag - id - layoutType - mode - objectApiName - recordTypeId - saveOptions - sections type: object properties: eTag: type: string example: example_value id: type: string example: abc123 layoutType: type: string example: example_value mode: type: string example: example_value objectApiName: type: string example: example_value recordTypeId: type: string example: '500123' saveOptions: type: array items: type: string description: '' example: [] sections: type: array items: $ref: '#/components/schemas/Section1' description: '' example: [] Section1: title: Section1 required: - collapsible - columns - heading - id - layoutRows - rows - useHeading type: object properties: collapsible: type: boolean example: true columns: type: integer contentEncoding: int32 example: 10 heading: type: string example: example_value id: type: string example: abc123 layoutRows: type: array items: $ref: '#/components/schemas/LayoutRow1' description: '' example: [] rows: type: integer contentEncoding: int32 example: 10 useHeading: type: boolean example: true examples: - collapsible: false columns: 2 heading: Account Information id: 01BB0000002rP1oMAE layoutRows: - layoutItems: - editableForNew: false editableForUpdate: false label: Account Owner layoutComponents: - apiName: OwnerId componentType: Field label: Owner ID lookupIdApiName: OwnerId required: false sortable: false - editableForNew: true editableForUpdate: true label: Rating layoutComponents: - apiName: Rating componentType: Field label: Account Rating lookupIdApiName: required: false sortable: false - layoutItems: - editableForNew: true editableForUpdate: true label: Account Name layoutComponents: - apiName: Name componentType: Field label: Account Name lookupIdApiName: Id required: true sortable: false - editableForNew: true editableForUpdate: true label: Phone layoutComponents: - apiName: Phone componentType: Field label: Account Phone lookupIdApiName: required: false sortable: false - layoutItems: - editableForNew: true editableForUpdate: true label: Parent Account layoutComponents: - apiName: ParentId componentType: Field label: Parent Account ID lookupIdApiName: ParentId required: false sortable: false - editableForNew: true editableForUpdate: true label: Fax layoutComponents: - apiName: Fax componentType: Field label: Account Fax lookupIdApiName: required: false sortable: false - layoutItems: - editableForNew: true editableForUpdate: true label: Account Number layoutComponents: - apiName: AccountNumber componentType: Field label: Account Number lookupIdApiName: required: false sortable: false - editableForNew: true editableForUpdate: true label: Website layoutComponents: - apiName: Website componentType: Field label: Website lookupIdApiName: required: false sortable: false - layoutItems: - editableForNew: true editableForUpdate: true label: Account Site layoutComponents: - apiName: Site componentType: Field label: Account Site lookupIdApiName: required: false sortable: false - editableForNew: true editableForUpdate: true label: Ticker Symbol layoutComponents: - apiName: TickerSymbol componentType: Field label: Ticker Symbol lookupIdApiName: required: false sortable: false - layoutItems: - editableForNew: true editableForUpdate: true label: Type layoutComponents: - apiName: Type componentType: Field label: Account Type lookupIdApiName: required: false sortable: false - editableForNew: true editableForUpdate: true label: Ownership layoutComponents: - apiName: Ownership componentType: Field label: Ownership lookupIdApiName: required: false sortable: false - layoutItems: - editableForNew: true editableForUpdate: true label: Industry layoutComponents: - apiName: Industry componentType: Field label: Industry lookupIdApiName: required: false sortable: false - editableForNew: true editableForUpdate: true label: Employees layoutComponents: - apiName: NumberOfEmployees componentType: Field label: Employees lookupIdApiName: required: false sortable: false - layoutItems: - editableForNew: true editableForUpdate: true label: Annual Revenue layoutComponents: - apiName: AnnualRevenue componentType: Field label: Annual Revenue lookupIdApiName: required: false sortable: false - editableForNew: true editableForUpdate: true label: SIC Code layoutComponents: - apiName: Sic componentType: Field label: SIC Code lookupIdApiName: required: false sortable: false rows: 8 useHeading: false LayoutRow1: title: LayoutRow1 required: - layoutItems type: object properties: layoutItems: type: array items: $ref: '#/components/schemas/LayoutItem1' description: '' example: [] examples: - layoutItems: - editableForNew: false editableForUpdate: false label: Account Owner layoutComponents: - apiName: OwnerId componentType: Field label: Owner ID lookupIdApiName: OwnerId required: false sortable: false - editableForNew: true editableForUpdate: true label: Rating layoutComponents: - apiName: Rating componentType: Field label: Account Rating lookupIdApiName: required: false sortable: false LayoutItem1: title: LayoutItem1 required: - editableForNew - editableForUpdate - label - layoutComponents - lookupIdApiName - required - sortable type: object properties: editableForNew: type: boolean example: true editableForUpdate: type: boolean example: true label: type: string example: Example Title layoutComponents: type: array items: $ref: '#/components/schemas/LayoutComponent1' description: '' example: [] lookupIdApiName: type: - string - 'null' example: example_value required: type: boolean example: true sortable: type: boolean example: true examples: - editableForNew: false editableForUpdate: false label: Account Owner layoutComponents: - apiName: OwnerId componentType: Field label: Owner ID lookupIdApiName: OwnerId required: false sortable: false LayoutComponent1: title: LayoutComponent1 required: - apiName - componentType - label type: object properties: apiName: type: - string - 'null' example: example_value componentType: type: string example: example_value label: type: string example: Example Title behavior: type: string example: example_value customLinkUrl: type: string example: https://www.example.com examples: - apiName: OwnerId componentType: Field label: Owner ID GetaDirectoryofSupportedObjects: title: GetaDirectoryofSupportedObjects required: - objects type: object properties: objects: $ref: '#/components/schemas/Objects' examples: - objects: Account: apiName: Account keyPrefix: '001' label: Account labelPlural: Accounts nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Account AccountBrand: apiName: AccountBrand keyPrefix: 0TU label: Account Brand labelPlural: Account Brands nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/AccountBrand AccountHistory: apiName: AccountHistory keyPrefix: '017' label: Account History labelPlural: Account History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/AccountHistory AccountPartner: apiName: AccountPartner keyPrefix: 00I label: Account Partner labelPlural: Account Partner nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/AccountPartner ActiveScratchOrg: apiName: ActiveScratchOrg keyPrefix: 2AS label: Active Scratch Org labelPlural: Active Scratch Orgs nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ActiveScratchOrg ActiveScratchOrgHistory: apiName: ActiveScratchOrgHistory keyPrefix: '017' label: Active Scratch Org History labelPlural: Active Scratch Org History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/ActiveScratchOrgHistory ApiAnomalyEventStore: apiName: ApiAnomalyEventStore keyPrefix: 0j6 label: API Anomaly Event Store labelPlural: API Anomaly Event Stores nameFields: - ApiAnomalyEventNumber objectInfoUrl: /services/data/v58.0/ui-api/object-info/ApiAnomalyEventStore AppAnalyticsQueryRequest: apiName: AppAnalyticsQueryRequest keyPrefix: 0XI label: App Analytics Query Request labelPlural: App Analytics Query Requests nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/AppAnalyticsQueryRequest AppMenuItem: apiName: AppMenuItem keyPrefix: 0DS label: AppMenuItem labelPlural: AppMenuItems nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/AppMenuItem Asset: apiName: Asset keyPrefix: 02i label: Asset labelPlural: Assets nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Asset AssetHistory: apiName: AssetHistory keyPrefix: '017' label: Asset History labelPlural: Asset History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/AssetHistory AssetRelationship: apiName: AssetRelationship keyPrefix: 1AR label: Asset Relationship labelPlural: Asset Relationships nameFields: - AssetRelationshipNumber objectInfoUrl: /services/data/v58.0/ui-api/object-info/AssetRelationship AssetRelationshipHistory: apiName: AssetRelationshipHistory keyPrefix: '017' label: Asset Relationship History labelPlural: Asset Relationship History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/AssetRelationshipHistory AuthorizationForm: apiName: AuthorizationForm keyPrefix: 0cI label: Authorization Form labelPlural: Authorization Forms nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/AuthorizationForm AuthorizationFormConsent: apiName: AuthorizationFormConsent keyPrefix: 0cK label: Authorization Form Consent labelPlural: Authorization Form Consents nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/AuthorizationFormConsent AuthorizationFormConsentHistory: apiName: AuthorizationFormConsentHistory keyPrefix: '017' label: Authorization Form Consent History labelPlural: Authorization Form Consent History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/AuthorizationFormConsentHistory AuthorizationFormDataUse: apiName: AuthorizationFormDataUse keyPrefix: 0cM label: Authorization Form Data Use labelPlural: Authorization Form Data Uses nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/AuthorizationFormDataUse AuthorizationFormDataUseHistory: apiName: AuthorizationFormDataUseHistory keyPrefix: '017' label: Authorization Form Data Use History labelPlural: Authorization Form Data Use History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/AuthorizationFormDataUseHistory AuthorizationFormHistory: apiName: AuthorizationFormHistory keyPrefix: '017' label: Authorization Form History labelPlural: Authorization Form History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/AuthorizationFormHistory AuthorizationFormText: apiName: AuthorizationFormText keyPrefix: 0cN label: Authorization Form Text labelPlural: Authorization Form Texts nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/AuthorizationFormText AuthorizationFormTextHistory: apiName: AuthorizationFormTextHistory keyPrefix: '017' label: Authorization Form Text History labelPlural: Authorization Form Text History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/AuthorizationFormTextHistory BackgroundOperation: apiName: BackgroundOperation keyPrefix: 08P label: Background Operation labelPlural: Background Operations nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/BackgroundOperation BusinessBrand: apiName: BusinessBrand keyPrefix: 1BU label: Business Brand labelPlural: Business Brands nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/BusinessBrand BusinessHours: apiName: BusinessHours keyPrefix: 01m label: Business Hours labelPlural: Business Hours nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/BusinessHours Campaign: apiName: Campaign keyPrefix: '701' label: Campaign labelPlural: Campaigns nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Campaign CampaignHistory: apiName: CampaignHistory keyPrefix: '017' label: Campaign Field History labelPlural: Campaign Field History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/CampaignHistory CampaignMember: apiName: CampaignMember keyPrefix: 00v label: Campaign Member labelPlural: Campaign Members nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/CampaignMember CampaignMemberStatus: apiName: CampaignMemberStatus keyPrefix: 01Y label: Campaign Member Status labelPlural: Campaign Member Statuses nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/CampaignMemberStatus Case: apiName: Case keyPrefix: '500' label: Case labelPlural: Cases nameFields: - CaseNumber objectInfoUrl: /services/data/v58.0/ui-api/object-info/Case CaseComment: apiName: CaseComment keyPrefix: 00a label: Case Comment labelPlural: Case Comments nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/CaseComment CaseContactRole: apiName: CaseContactRole keyPrefix: 03j label: Case Contact Role labelPlural: Case Contact Role nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/CaseContactRole CaseHistory: apiName: CaseHistory keyPrefix: '017' label: Case History labelPlural: Case History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/CaseHistory ChannelProgram: apiName: ChannelProgram keyPrefix: 0Pk label: Channel Program labelPlural: Channel Programs nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ChannelProgram ChannelProgramHistory: apiName: ChannelProgramHistory keyPrefix: '017' label: Channel Program History labelPlural: Channel Program History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/ChannelProgramHistory ChannelProgramLevel: apiName: ChannelProgramLevel keyPrefix: 0Pl label: Channel Program Level labelPlural: Channel Program Levels nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ChannelProgramLevel ChannelProgramLevelHistory: apiName: ChannelProgramLevelHistory keyPrefix: '017' label: Channel Program Level History labelPlural: Channel Program Level History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ChannelProgramLevelHistory ChannelProgramMember: apiName: ChannelProgramMember keyPrefix: 0Pm label: Channel Program Member labelPlural: Channel Program Members nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ChannelProgramMember ChannelProgramMemberHistory: apiName: ChannelProgramMemberHistory keyPrefix: '017' label: Channel Program Member History labelPlural: Channel Program Member History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ChannelProgramMemberHistory CommSubscription: apiName: CommSubscription keyPrefix: 0Xl label: Communication Subscription labelPlural: Communication Subscriptions nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/CommSubscription CommSubscriptionChannelType: apiName: CommSubscriptionChannelType keyPrefix: 0eB label: Communication Subscription Channel Type labelPlural: Communication Subscription Channel Types nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/CommSubscriptionChannelType CommSubscriptionChannelTypeHistory: apiName: CommSubscriptionChannelTypeHistory keyPrefix: '017' label: Communication Subscription Channel Type History labelPlural: Communication Subscription Channel Type History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/CommSubscriptionChannelTypeHistory CommSubscriptionHistory: apiName: CommSubscriptionHistory keyPrefix: '017' label: Communication Subscription History labelPlural: Communication Subscription History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/CommSubscriptionHistory ConsumptionRate: apiName: ConsumptionRate keyPrefix: 0Mo label: Consumption Rate labelPlural: Consumption Rates nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ConsumptionRate ConsumptionRateHistory: apiName: ConsumptionRateHistory keyPrefix: '017' label: Consumption Rate History ID labelPlural: Consumption Rate History ID nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/ConsumptionRateHistory ConsumptionSchedule: apiName: ConsumptionSchedule keyPrefix: 0Mh label: Consumption Schedule labelPlural: Consumption Schedules nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ConsumptionSchedule ConsumptionScheduleHistory: apiName: ConsumptionScheduleHistory keyPrefix: '017' label: Consumption Schedule History ID labelPlural: Consumption Schedule History ID nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ConsumptionScheduleHistory Contact: apiName: Contact keyPrefix: '003' label: Contact labelPlural: Contacts nameFields: - FirstName - LastName - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Contact ContactHistory: apiName: ContactHistory keyPrefix: '017' label: Contact History labelPlural: Contact History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/ContactHistory ContactPointTypeConsent: apiName: ContactPointTypeConsent keyPrefix: 0ZY label: Contact Point Type Consent labelPlural: Contact Point Type Consents nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ContactPointTypeConsent ContactPointTypeConsentHistory: apiName: ContactPointTypeConsentHistory keyPrefix: '017' label: Contact Point Type Consent History labelPlural: Contact Point Type Consent History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ContactPointTypeConsentHistory ContactRequest: apiName: ContactRequest keyPrefix: 0Tz label: Contact Request labelPlural: Contact Requests nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ContactRequest ContentDocument: apiName: ContentDocument keyPrefix: '069' label: File labelPlural: Files nameFields: - Title objectInfoUrl: /services/data/v58.0/ui-api/object-info/ContentDocument ContentDocumentHistory: apiName: ContentDocumentHistory keyPrefix: '017' label: Content Document History labelPlural: Content Document History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/ContentDocumentHistory ContentDocumentLink: apiName: ContentDocumentLink keyPrefix: 06A label: Content Document Link labelPlural: Content Document Link nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/ContentDocumentLink ContentVersion: apiName: ContentVersion keyPrefix: '068' label: File labelPlural: Files nameFields: - Title objectInfoUrl: /services/data/v58.0/ui-api/object-info/ContentVersion ContentVersionHistory: apiName: ContentVersionHistory keyPrefix: '017' label: Content Version History labelPlural: Content Version History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/ContentVersionHistory ContentWorkspace: apiName: ContentWorkspace keyPrefix: '058' label: Library labelPlural: Libraries nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ContentWorkspace Contract: apiName: Contract keyPrefix: '800' label: Contract labelPlural: Contracts nameFields: - ContractNumber objectInfoUrl: /services/data/v58.0/ui-api/object-info/Contract ContractContactRole: apiName: ContractContactRole keyPrefix: 02a label: Contract Contact Role labelPlural: Contract Contact Role nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/ContractContactRole ContractHistory: apiName: ContractHistory keyPrefix: '017' label: Contract History labelPlural: Contract History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/ContractHistory CredentialStuffingEventStore: apiName: CredentialStuffingEventStore keyPrefix: 0fj label: Credential Stuffing Event Store labelPlural: Credential Stuffing Event Stores nameFields: - CredentialStuffingEventNumber objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/CredentialStuffingEventStore CspTrustedSite: apiName: CspTrustedSite keyPrefix: 08y label: Trusted URL labelPlural: Trusted URLs nameFields: - DeveloperName objectInfoUrl: /services/data/v58.0/ui-api/object-info/CspTrustedSite Customer: apiName: Customer keyPrefix: 6 label: Customer labelPlural: Customers nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Customer DandBCompany: apiName: DandBCompany keyPrefix: 06E label: D&B Company labelPlural: D&B Companies nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/DandBCompany DataUseLegalBasis: apiName: DataUseLegalBasis keyPrefix: 0ZT label: Data Use Legal Basis labelPlural: Data Use Legal Bases nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/DataUseLegalBasis DataUseLegalBasisHistory: apiName: DataUseLegalBasisHistory keyPrefix: '017' label: Data Use Legal Basis History labelPlural: Data Use Legal Basis History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/DataUseLegalBasisHistory DataUsePurpose: apiName: DataUsePurpose keyPrefix: 0ZW label: Data Use Purpose labelPlural: Data Use Purposes nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/DataUsePurpose DataUsePurposeHistory: apiName: DataUsePurposeHistory keyPrefix: '017' label: Data Use Purpose History labelPlural: Data Use Purpose History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/DataUsePurposeHistory Dataweave_Key_Mapping__mdt: apiName: Dataweave_Key_Mapping__mdt keyPrefix: m00 label: Dataweave Key Mapping labelPlural: Dataweave Key Mappings nameFields: - DeveloperName objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/Dataweave_Key_Mapping__mdt Dataweave_Mapping__mdt: apiName: Dataweave_Mapping__mdt keyPrefix: m01 label: Dataweave Mapping labelPlural: Dataweave Mappings nameFields: - DeveloperName objectInfoUrl: /services/data/v58.0/ui-api/object-info/Dataweave_Mapping__mdt DelegatedAccount: apiName: DelegatedAccount keyPrefix: 0du label: External Managed Account labelPlural: External Managed Accounts nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/DelegatedAccount DelegatedAccountHistory: apiName: DelegatedAccountHistory keyPrefix: '017' label: External Managed Account History labelPlural: External Managed Account History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/DelegatedAccountHistory DeleteEvent: apiName: DeleteEvent keyPrefix: 00C label: Recycle Bin Item labelPlural: Recycle Bin nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/DeleteEvent DuplicateRecordItem: apiName: DuplicateRecordItem keyPrefix: 0GL label: Duplicate Record Item labelPlural: Duplicate Record Items nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/DuplicateRecordItem DuplicateRecordSet: apiName: DuplicateRecordSet keyPrefix: 0GK label: Duplicate Record Set labelPlural: Duplicate Record Sets nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/DuplicateRecordSet EmailMessageRelation: apiName: EmailMessageRelation keyPrefix: 0CZ label: Email Message Relation labelPlural: Email Message Relations nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/EmailMessageRelation EngagementChannelType: apiName: EngagementChannelType keyPrefix: 0eF label: Engagement Channel Type labelPlural: Engagement Channel Types nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/EngagementChannelType EngagementChannelTypeHistory: apiName: EngagementChannelTypeHistory keyPrefix: '017' label: Engagement Channel Type History labelPlural: Engagement Channel Type History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/EngagementChannelTypeHistory FlowInterview: apiName: FlowInterview keyPrefix: 0Fo label: Flow Interview labelPlural: Flow Interviews nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/FlowInterview FlowOrchestrationInstance: apiName: FlowOrchestrationInstance keyPrefix: 0jE label: Orchestration Run labelPlural: Orchestration Runs nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/FlowOrchestrationInstance FlowOrchestrationStageInstance: apiName: FlowOrchestrationStageInstance keyPrefix: 0jF label: Orchestration Stage Run labelPlural: Orchestration Stage Runs nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/FlowOrchestrationStageInstance FlowOrchestrationStepInstance: apiName: FlowOrchestrationStepInstance keyPrefix: 0jL label: Orchestration Step Run labelPlural: Orchestration Step Runs nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/FlowOrchestrationStepInstance FlowOrchestrationWorkItem: apiName: FlowOrchestrationWorkItem keyPrefix: 0jf label: Orchestration Work Item labelPlural: Orchestration Work Items nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/FlowOrchestrationWorkItem Group: apiName: Group keyPrefix: 00G label: Group labelPlural: Group nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Group Holiday: apiName: Holiday keyPrefix: 0C0 label: Holiday labelPlural: Holidays nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Holiday IPAddressRange: apiName: IPAddressRange keyPrefix: 9s4 label: IP Address Range labelPlural: IP Address Ranges nameFields: - DeveloperName objectInfoUrl: /services/data/v58.0/ui-api/object-info/IPAddressRange Image: apiName: Image keyPrefix: 4YL label: Image labelPlural: Images nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Image ImageHistory: apiName: ImageHistory keyPrefix: '017' label: Image History labelPlural: Image History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/ImageHistory Individual: apiName: Individual keyPrefix: 0PK label: Individual labelPlural: Individuals nameFields: - FirstName - LastName - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Individual IndividualHistory: apiName: IndividualHistory keyPrefix: '017' label: Individual History labelPlural: Individual History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/IndividualHistory Lead: apiName: Lead keyPrefix: 00Q label: Lead labelPlural: Leads nameFields: - FirstName - LastName - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Lead LeadHistory: apiName: LeadHistory keyPrefix: '017' label: Lead History labelPlural: Lead History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/LeadHistory ListEmail: apiName: ListEmail keyPrefix: 0XB label: List Email labelPlural: List Emails nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ListEmail Macro: apiName: Macro keyPrefix: 0JZ label: Macro labelPlural: Macros nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Macro MacroHistory: apiName: MacroHistory keyPrefix: '017' label: Macro History labelPlural: Macro History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/MacroHistory ManagedContent: apiName: ManagedContent keyPrefix: 20Y label: Managed Content labelPlural: Managed Contents nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ManagedContent ManagedContentVariant: apiName: ManagedContentVariant keyPrefix: 9Ps label: Managed Content Variant labelPlural: Managed Content Variants nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ManagedContentVariant Merchandise__c: apiName: Merchandise__c keyPrefix: a00 label: Merchandise labelPlural: Merchandise nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Merchandise__c Merchandising_Mix__c: apiName: Merchandising_Mix__c keyPrefix: a01 label: Merchandise Mix labelPlural: Merchandise Mixes nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Merchandising_Mix__c Mix_Item__c: apiName: Mix_Item__c keyPrefix: a02 label: Mix Item labelPlural: Mix Items nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Mix_Item__c NamespaceRegistry: apiName: NamespaceRegistry keyPrefix: 1NR label: Namespace Registry labelPlural: Namespace Registries nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/NamespaceRegistry NamespaceRegistryHistory: apiName: NamespaceRegistryHistory keyPrefix: '017' label: Namespace Registry History labelPlural: Namespace Registry History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/NamespaceRegistryHistory Note: apiName: Note keyPrefix: '002' label: Note labelPlural: Notes nameFields: - Title objectInfoUrl: /services/data/v58.0/ui-api/object-info/Note Opportunity: apiName: Opportunity keyPrefix: '006' label: Opportunity labelPlural: Opportunities nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Opportunity OpportunityContactRole: apiName: OpportunityContactRole keyPrefix: 00K label: Opportunity Contact Role labelPlural: Opportunity Contact Role nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/OpportunityContactRole OpportunityFieldHistory: apiName: OpportunityFieldHistory keyPrefix: '017' label: Opportunity Field History labelPlural: Opportunity Field History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/OpportunityFieldHistory OpportunityHistory: apiName: OpportunityHistory keyPrefix: '008' label: Opportunity History labelPlural: Opportunity History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/OpportunityHistory OpportunityLineItem: apiName: OpportunityLineItem keyPrefix: 00k label: Opportunity Product labelPlural: Opportunity Product nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/OpportunityLineItem OpportunityPartner: apiName: OpportunityPartner keyPrefix: 00I label: Opportunity Partner labelPlural: Opportunity Partner nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/OpportunityPartner Order: apiName: Order keyPrefix: '801' label: Order labelPlural: Orders nameFields: - OrderNumber objectInfoUrl: /services/data/v58.0/ui-api/object-info/Order OrderHistory: apiName: OrderHistory keyPrefix: '017' label: Order History labelPlural: Order History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/OrderHistory OrderItem: apiName: OrderItem keyPrefix: '802' label: Order Product labelPlural: Order Products nameFields: - OrderItemNumber objectInfoUrl: /services/data/v58.0/ui-api/object-info/OrderItem OrderItemHistory: apiName: OrderItemHistory keyPrefix: '017' label: Order Product History labelPlural: Order Product History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/OrderItemHistory OrgMetric: apiName: OrgMetric keyPrefix: 3v1 label: Org Metric labelPlural: Org Metrics nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/OrgMetric OrgMetricScanResult: apiName: OrgMetricScanResult keyPrefix: 9aM label: Org Metric Scan Result labelPlural: Org Metric Scan Results nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/OrgMetricScanResult OrgMetricScanSummary: apiName: OrgMetricScanSummary keyPrefix: 6mX label: Org Metric Scan Summary labelPlural: Org Metric Scan Summaries nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/OrgMetricScanSummary Organization: apiName: Organization keyPrefix: 00D label: Organization labelPlural: Organizations nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Organization Partner: apiName: Partner keyPrefix: 00I label: Partner labelPlural: Partner nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/Partner PartnerFundAllocation: apiName: PartnerFundAllocation keyPrefix: 0R8 label: Partner Fund Allocation labelPlural: Partner Fund Allocations nameFields: - Title objectInfoUrl: /services/data/v58.0/ui-api/object-info/PartnerFundAllocation PartnerFundAllocationHistory: apiName: PartnerFundAllocationHistory keyPrefix: '017' label: Partner Fund Allocation History labelPlural: Partner Fund Allocation History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/PartnerFundAllocationHistory PartnerFundClaim: apiName: PartnerFundClaim keyPrefix: 0RB label: Partner Fund Claim labelPlural: Partner Fund Claims nameFields: - Title objectInfoUrl: /services/data/v58.0/ui-api/object-info/PartnerFundClaim PartnerFundClaimHistory: apiName: PartnerFundClaimHistory keyPrefix: '017' label: Partner Fund Claim History labelPlural: Partner Fund Claim History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/PartnerFundClaimHistory PartnerFundRequest: apiName: PartnerFundRequest keyPrefix: 0RJ label: Partner Fund Request labelPlural: Partner Fund Requests nameFields: - Title objectInfoUrl: /services/data/v58.0/ui-api/object-info/PartnerFundRequest PartnerFundRequestHistory: apiName: PartnerFundRequestHistory keyPrefix: '017' label: Partner Fund Request History labelPlural: Partner Fund Request History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/PartnerFundRequestHistory PartnerMarketingBudget: apiName: PartnerMarketingBudget keyPrefix: 0Cw label: Partner Marketing Budget labelPlural: Partner Marketing Budgets nameFields: - Title objectInfoUrl: /services/data/v58.0/ui-api/object-info/PartnerMarketingBudget PartnerMarketingBudgetHistory: apiName: PartnerMarketingBudgetHistory keyPrefix: '017' label: Partner Marketing Budget History labelPlural: Partner Marketing Budget History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/PartnerMarketingBudgetHistory PartyConsent: apiName: PartyConsent keyPrefix: 0g8 label: Party Consent labelPlural: Party Consents nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/PartyConsent PartyConsentHistory: apiName: PartyConsentHistory keyPrefix: '017' label: Party Consent History labelPlural: Party Consent History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/PartyConsentHistory Period: apiName: Period keyPrefix: '026' label: Period labelPlural: Period nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/Period Pricebook2: apiName: Pricebook2 keyPrefix: 01s label: Price Book labelPlural: Price Books nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Pricebook2 Pricebook2History: apiName: Pricebook2History keyPrefix: '017' label: Price Book History labelPlural: Price Book History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/Pricebook2History PricebookEntry: apiName: PricebookEntry keyPrefix: 01u label: Price Book Entry labelPlural: Price Book Entries nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/PricebookEntry PricebookEntryHistory: apiName: PricebookEntryHistory keyPrefix: '017' label: Price Book Entry History labelPlural: Price Book Entry History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/PricebookEntryHistory ProcessDefinition: apiName: ProcessDefinition keyPrefix: 04a label: Process Definition labelPlural: Process Definition nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ProcessDefinition ProcessInstance: apiName: ProcessInstance keyPrefix: 04g label: Process Instance labelPlural: Process Instance nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/ProcessInstance Product2: apiName: Product2 keyPrefix: 01t label: Product labelPlural: Products nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Product2 Product2History: apiName: Product2History keyPrefix: '017' label: Product History labelPlural: Product History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/Product2History ProductConsumptionSchedule: apiName: ProductConsumptionSchedule keyPrefix: 0Mq label: Product Consumption Schedule labelPlural: Product Consumption Schedules nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ProductConsumptionSchedule ProfileSkill: apiName: ProfileSkill keyPrefix: 0Sk label: Skill labelPlural: Skills nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ProfileSkill ProfileSkillEndorsement: apiName: ProfileSkillEndorsement keyPrefix: 0SE label: Endorsement labelPlural: Endorsements nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ProfileSkillEndorsement ProfileSkillEndorsementHistory: apiName: ProfileSkillEndorsementHistory keyPrefix: '017' label: Endorsement History labelPlural: Endorsement History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ProfileSkillEndorsementHistory ProfileSkillHistory: apiName: ProfileSkillHistory keyPrefix: '017' label: Skill History labelPlural: Skill History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/ProfileSkillHistory ProfileSkillUser: apiName: ProfileSkillUser keyPrefix: 0SM label: Skill User labelPlural: Skill Users nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ProfileSkillUser ProfileSkillUserHistory: apiName: ProfileSkillUserHistory keyPrefix: '017' label: Skill User History labelPlural: Skill User History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/ProfileSkillUserHistory QuickText: apiName: QuickText keyPrefix: '574' label: Quick Text labelPlural: Quick Text nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/QuickText QuickTextHistory: apiName: QuickTextHistory keyPrefix: '017' label: Quick Text History labelPlural: Quick Text History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/QuickTextHistory Recommendation: apiName: Recommendation keyPrefix: 0pr label: Recommendation labelPlural: Recommendations nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Recommendation RecordAction: apiName: RecordAction keyPrefix: 0Rw label: RecordAction labelPlural: RecordActions nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/RecordAction RecordType: apiName: RecordType keyPrefix: '012' label: Record Type labelPlural: Record Types nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/RecordType Report: apiName: Report keyPrefix: 00O label: Report labelPlural: Reports nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Report ReportAnomalyEventStore: apiName: ReportAnomalyEventStore keyPrefix: 0Z7 label: Report Anomaly Event Store labelPlural: Report Anomaly Event Stores nameFields: - ReportAnomalyEventNumber objectInfoUrl: /services/data/v58.0/ui-api/object-info/ReportAnomalyEventStore Scorecard: apiName: Scorecard keyPrefix: 01f label: Scorecard labelPlural: Scorecards nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Scorecard ScorecardAssociation: apiName: ScorecardAssociation keyPrefix: 0Qn label: Scorecard Association labelPlural: Scorecard Associations nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ScorecardAssociation ScorecardMetric: apiName: ScorecardMetric keyPrefix: 0Om label: Scorecard Metric labelPlural: Scorecard Metrics nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ScorecardMetric ScratchOrgInfo: apiName: ScratchOrgInfo keyPrefix: 2SR label: Scratch Org Info labelPlural: Scratch Org Infos nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ScratchOrgInfo ScratchOrgInfoHistory: apiName: ScratchOrgInfoHistory keyPrefix: '017' label: Scratch Org Info History labelPlural: Scratch Org Info History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/ScratchOrgInfoHistory SearchPromotionRule: apiName: SearchPromotionRule keyPrefix: 0MD label: Promoted Search Term labelPlural: Promoted Search Terms nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/SearchPromotionRule Seller: apiName: Seller keyPrefix: 0q6 label: Seller labelPlural: Sellers nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Seller SellerHistory: apiName: SellerHistory keyPrefix: '017' label: Seller History labelPlural: Seller History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/SellerHistory SessionHijackingEventStore: apiName: SessionHijackingEventStore keyPrefix: 0Zj label: Session Hijacking Event Store labelPlural: Session Hijacking Event Stores nameFields: - SessionHijackingEventNumber objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/SessionHijackingEventStore SetupAssistantStep: apiName: SetupAssistantStep keyPrefix: 3Ys label: Setup Assistant Step labelPlural: Setup Assistant Steps nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/SetupAssistantStep SiteHistory: apiName: SiteHistory keyPrefix: '017' label: Site History labelPlural: Site History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/SiteHistory SolutionHistory: apiName: SolutionHistory keyPrefix: '017' label: Solution History labelPlural: Solution History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/SolutionHistory StaticResource: apiName: StaticResource keyPrefix: '081' label: Static Resource labelPlural: Static Resources nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/StaticResource StreamingChannel: apiName: StreamingChannel keyPrefix: 0M6 label: Streaming Channel labelPlural: Streaming Channels nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/StreamingChannel ThreatDetectionFeedback: apiName: ThreatDetectionFeedback keyPrefix: 0hY label: Threat Detection Feedback labelPlural: Threat Detection Feedback nameFields: - ThreatDetectionFeedbackNumber objectInfoUrl: /services/data/v58.0/ui-api/object-info/ThreatDetectionFeedback Topic: apiName: Topic keyPrefix: 0TO label: Topic labelPlural: Topics nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Topic TopicAssignment: apiName: TopicAssignment keyPrefix: 0FT label: Topic Assignment labelPlural: Topic Assignments nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/TopicAssignment Translation: apiName: Translation keyPrefix: 01h label: Language Translation labelPlural: Language Translation nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/Translation User: apiName: User keyPrefix: '005' label: User labelPlural: People nameFields: - FirstName - LastName - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/User UserRole: apiName: UserRole keyPrefix: 00E label: Role labelPlural: Role nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/UserRole WorkBadgeDefinitionHistory: apiName: WorkBadgeDefinitionHistory keyPrefix: '017' label: Badge History labelPlural: Badge History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/WorkBadgeDefinitionHistory Objects: title: Objects required: - Account - AccountBrand - AccountHistory - AccountPartner - ActiveScratchOrg - ActiveScratchOrgHistory - ApiAnomalyEventStore - AppAnalyticsQueryRequest - AppMenuItem - Asset - AssetHistory - AssetRelationship - AssetRelationshipHistory - AuthorizationForm - AuthorizationFormConsent - AuthorizationFormConsentHistory - AuthorizationFormDataUse - AuthorizationFormDataUseHistory - AuthorizationFormHistory - AuthorizationFormText - AuthorizationFormTextHistory - BackgroundOperation - BusinessBrand - BusinessHours - Campaign - CampaignHistory - CampaignMember - CampaignMemberStatus - Case - CaseComment - CaseContactRole - CaseHistory - ChannelProgram - ChannelProgramHistory - ChannelProgramLevel - ChannelProgramLevelHistory - ChannelProgramMember - ChannelProgramMemberHistory - CommSubscription - CommSubscriptionChannelType - CommSubscriptionChannelTypeHistory - CommSubscriptionHistory - ConsumptionRate - ConsumptionRateHistory - ConsumptionSchedule - ConsumptionScheduleHistory - Contact - ContactHistory - ContactPointTypeConsent - ContactPointTypeConsentHistory - ContactRequest - ContentDocument - ContentDocumentHistory - ContentDocumentLink - ContentVersion - ContentVersionHistory - ContentWorkspace - Contract - ContractContactRole - ContractHistory - CredentialStuffingEventStore - CspTrustedSite - Customer - DandBCompany - DataUseLegalBasis - DataUseLegalBasisHistory - DataUsePurpose - DataUsePurposeHistory - Dataweave_Key_Mapping__mdt - Dataweave_Mapping__mdt - DelegatedAccount - DelegatedAccountHistory - DeleteEvent - DuplicateRecordItem - DuplicateRecordSet - EmailMessageRelation - EngagementChannelType - EngagementChannelTypeHistory - FlowInterview - FlowOrchestrationInstance - FlowOrchestrationStageInstance - FlowOrchestrationStepInstance - FlowOrchestrationWorkItem - Group - Holiday - IPAddressRange - Image - ImageHistory - Individual - IndividualHistory - Lead - LeadHistory - ListEmail - Macro - MacroHistory - ManagedContent - ManagedContentVariant - Merchandise__c - Merchandising_Mix__c - Mix_Item__c - NamespaceRegistry - NamespaceRegistryHistory - Note - Opportunity - OpportunityContactRole - OpportunityFieldHistory - OpportunityHistory - OpportunityLineItem - OpportunityPartner - Order - OrderHistory - OrderItem - OrderItemHistory - OrgMetric - OrgMetricScanResult - OrgMetricScanSummary - Organization - Partner - PartnerFundAllocation - PartnerFundAllocationHistory - PartnerFundClaim - PartnerFundClaimHistory - PartnerFundRequest - PartnerFundRequestHistory - PartnerMarketingBudget - PartnerMarketingBudgetHistory - PartyConsent - PartyConsentHistory - Period - Pricebook2 - Pricebook2History - PricebookEntry - PricebookEntryHistory - ProcessDefinition - ProcessInstance - Product2 - Product2History - ProductConsumptionSchedule - ProfileSkill - ProfileSkillEndorsement - ProfileSkillEndorsementHistory - ProfileSkillHistory - ProfileSkillUser - ProfileSkillUserHistory - QuickText - QuickTextHistory - Recommendation - RecordAction - RecordType - Report - ReportAnomalyEventStore - Scorecard - ScorecardAssociation - ScorecardMetric - ScratchOrgInfo - ScratchOrgInfoHistory - SearchPromotionRule - Seller - SellerHistory - SessionHijackingEventStore - SetupAssistantStep - SiteHistory - SolutionHistory - StaticResource - StreamingChannel - ThreatDetectionFeedback - Topic - TopicAssignment - Translation - User - UserRole - WorkBadgeDefinitionHistory type: object properties: Account: $ref: '#/components/schemas/Account12' AccountBrand: $ref: '#/components/schemas/AccountBrand' AccountHistory: $ref: '#/components/schemas/AccountHistory' AccountPartner: $ref: '#/components/schemas/AccountPartner' ActiveScratchOrg: $ref: '#/components/schemas/ActiveScratchOrg' ActiveScratchOrgHistory: $ref: '#/components/schemas/ActiveScratchOrgHistory' ApiAnomalyEventStore: $ref: '#/components/schemas/ApiAnomalyEventStore' AppAnalyticsQueryRequest: $ref: '#/components/schemas/AppAnalyticsQueryRequest' AppMenuItem: $ref: '#/components/schemas/AppMenuItem' Asset: $ref: '#/components/schemas/Asset' AssetHistory: $ref: '#/components/schemas/AssetHistory' AssetRelationship: $ref: '#/components/schemas/AssetRelationship' AssetRelationshipHistory: $ref: '#/components/schemas/AssetRelationshipHistory' AuthorizationForm: $ref: '#/components/schemas/AuthorizationForm' AuthorizationFormConsent: $ref: '#/components/schemas/AuthorizationFormConsent' AuthorizationFormConsentHistory: $ref: '#/components/schemas/AuthorizationFormConsentHistory' AuthorizationFormDataUse: $ref: '#/components/schemas/AuthorizationFormDataUse' AuthorizationFormDataUseHistory: $ref: '#/components/schemas/AuthorizationFormDataUseHistory' AuthorizationFormHistory: $ref: '#/components/schemas/AuthorizationFormHistory' AuthorizationFormText: $ref: '#/components/schemas/AuthorizationFormText' AuthorizationFormTextHistory: $ref: '#/components/schemas/AuthorizationFormTextHistory' BackgroundOperation: $ref: '#/components/schemas/BackgroundOperation' BusinessBrand: $ref: '#/components/schemas/BusinessBrand' BusinessHours: $ref: '#/components/schemas/BusinessHours' Campaign: $ref: '#/components/schemas/Campaign4' CampaignHistory: $ref: '#/components/schemas/CampaignHistory' CampaignMember: $ref: '#/components/schemas/CampaignMember' CampaignMemberStatus: $ref: '#/components/schemas/CampaignMemberStatus' Case: $ref: '#/components/schemas/Case' CaseComment: $ref: '#/components/schemas/CaseComment' CaseContactRole: $ref: '#/components/schemas/CaseContactRole' CaseHistory: $ref: '#/components/schemas/CaseHistory' ChannelProgram: $ref: '#/components/schemas/ChannelProgram' ChannelProgramHistory: $ref: '#/components/schemas/ChannelProgramHistory' ChannelProgramLevel: $ref: '#/components/schemas/ChannelProgramLevel' ChannelProgramLevelHistory: $ref: '#/components/schemas/ChannelProgramLevelHistory' ChannelProgramMember: $ref: '#/components/schemas/ChannelProgramMember' ChannelProgramMemberHistory: $ref: '#/components/schemas/ChannelProgramMemberHistory' CommSubscription: $ref: '#/components/schemas/CommSubscription' CommSubscriptionChannelType: $ref: '#/components/schemas/CommSubscriptionChannelType' CommSubscriptionChannelTypeHistory: $ref: '#/components/schemas/CommSubscriptionChannelTypeHistory' CommSubscriptionHistory: $ref: '#/components/schemas/CommSubscriptionHistory' ConsumptionRate: $ref: '#/components/schemas/ConsumptionRate' ConsumptionRateHistory: $ref: '#/components/schemas/ConsumptionRateHistory' ConsumptionSchedule: $ref: '#/components/schemas/ConsumptionSchedule' ConsumptionScheduleHistory: $ref: '#/components/schemas/ConsumptionScheduleHistory' Contact: $ref: '#/components/schemas/Contact3' ContactHistory: $ref: '#/components/schemas/ContactHistory' ContactPointTypeConsent: $ref: '#/components/schemas/ContactPointTypeConsent' ContactPointTypeConsentHistory: $ref: '#/components/schemas/ContactPointTypeConsentHistory' ContactRequest: $ref: '#/components/schemas/ContactRequest' ContentDocument: $ref: '#/components/schemas/ContentDocument' ContentDocumentHistory: $ref: '#/components/schemas/ContentDocumentHistory' ContentDocumentLink: $ref: '#/components/schemas/ContentDocumentLink' ContentVersion: $ref: '#/components/schemas/ContentVersion' ContentVersionHistory: $ref: '#/components/schemas/ContentVersionHistory' ContentWorkspace: $ref: '#/components/schemas/ContentWorkspace' Contract: $ref: '#/components/schemas/Contract' ContractContactRole: $ref: '#/components/schemas/ContractContactRole' ContractHistory: $ref: '#/components/schemas/ContractHistory' CredentialStuffingEventStore: $ref: '#/components/schemas/CredentialStuffingEventStore' CspTrustedSite: $ref: '#/components/schemas/CspTrustedSite' Customer: $ref: '#/components/schemas/Customer' DandBCompany: $ref: '#/components/schemas/DandBCompany' DataUseLegalBasis: $ref: '#/components/schemas/DataUseLegalBasis' DataUseLegalBasisHistory: $ref: '#/components/schemas/DataUseLegalBasisHistory' DataUsePurpose: $ref: '#/components/schemas/DataUsePurpose' DataUsePurposeHistory: $ref: '#/components/schemas/DataUsePurposeHistory' Dataweave_Key_Mapping__mdt: $ref: '#/components/schemas/DataweaveKeyMappingMdt' Dataweave_Mapping__mdt: $ref: '#/components/schemas/DataweaveMappingMdt' DelegatedAccount: $ref: '#/components/schemas/DelegatedAccount' DelegatedAccountHistory: $ref: '#/components/schemas/DelegatedAccountHistory' DeleteEvent: $ref: '#/components/schemas/DeleteEvent' DuplicateRecordItem: $ref: '#/components/schemas/DuplicateRecordItem' DuplicateRecordSet: $ref: '#/components/schemas/DuplicateRecordSet' EmailMessageRelation: $ref: '#/components/schemas/EmailMessageRelation' EngagementChannelType: $ref: '#/components/schemas/EngagementChannelType' EngagementChannelTypeHistory: $ref: '#/components/schemas/EngagementChannelTypeHistory' FlowInterview: $ref: '#/components/schemas/FlowInterview' FlowOrchestrationInstance: $ref: '#/components/schemas/FlowOrchestrationInstance' FlowOrchestrationStageInstance: $ref: '#/components/schemas/FlowOrchestrationStageInstance' FlowOrchestrationStepInstance: $ref: '#/components/schemas/FlowOrchestrationStepInstance' FlowOrchestrationWorkItem: $ref: '#/components/schemas/FlowOrchestrationWorkItem' Group: $ref: '#/components/schemas/Group2' Holiday: $ref: '#/components/schemas/Holiday' IPAddressRange: $ref: '#/components/schemas/IPAddressRange' Image: $ref: '#/components/schemas/Image' ImageHistory: $ref: '#/components/schemas/ImageHistory' Individual: $ref: '#/components/schemas/Individual' IndividualHistory: $ref: '#/components/schemas/IndividualHistory' Lead: $ref: '#/components/schemas/Lead2' LeadHistory: $ref: '#/components/schemas/LeadHistory' ListEmail: $ref: '#/components/schemas/ListEmail' Macro: $ref: '#/components/schemas/Macro' MacroHistory: $ref: '#/components/schemas/MacroHistory' ManagedContent: $ref: '#/components/schemas/ManagedContent' ManagedContentVariant: $ref: '#/components/schemas/ManagedContentVariant' Merchandise__c: $ref: '#/components/schemas/MerchandiseC' Merchandising_Mix__c: $ref: '#/components/schemas/MerchandisingMixC' Mix_Item__c: $ref: '#/components/schemas/MixItemC' NamespaceRegistry: $ref: '#/components/schemas/NamespaceRegistry' NamespaceRegistryHistory: $ref: '#/components/schemas/NamespaceRegistryHistory' Note: $ref: '#/components/schemas/Note' Opportunity: $ref: '#/components/schemas/Opportunity4' OpportunityContactRole: $ref: '#/components/schemas/OpportunityContactRole' OpportunityFieldHistory: $ref: '#/components/schemas/OpportunityFieldHistory' OpportunityHistory: $ref: '#/components/schemas/OpportunityHistory' OpportunityLineItem: $ref: '#/components/schemas/OpportunityLineItem' OpportunityPartner: $ref: '#/components/schemas/OpportunityPartner' Order: $ref: '#/components/schemas/Order' OrderHistory: $ref: '#/components/schemas/OrderHistory' OrderItem: $ref: '#/components/schemas/OrderItem' OrderItemHistory: $ref: '#/components/schemas/OrderItemHistory' OrgMetric: $ref: '#/components/schemas/OrgMetric' OrgMetricScanResult: $ref: '#/components/schemas/OrgMetricScanResult' OrgMetricScanSummary: $ref: '#/components/schemas/OrgMetricScanSummary' Organization: $ref: '#/components/schemas/Organization' Partner: $ref: '#/components/schemas/Partner' PartnerFundAllocation: $ref: '#/components/schemas/PartnerFundAllocation' PartnerFundAllocationHistory: $ref: '#/components/schemas/PartnerFundAllocationHistory' PartnerFundClaim: $ref: '#/components/schemas/PartnerFundClaim' PartnerFundClaimHistory: $ref: '#/components/schemas/PartnerFundClaimHistory' PartnerFundRequest: $ref: '#/components/schemas/PartnerFundRequest' PartnerFundRequestHistory: $ref: '#/components/schemas/PartnerFundRequestHistory' PartnerMarketingBudget: $ref: '#/components/schemas/PartnerMarketingBudget' PartnerMarketingBudgetHistory: $ref: '#/components/schemas/PartnerMarketingBudgetHistory' PartyConsent: $ref: '#/components/schemas/PartyConsent' PartyConsentHistory: $ref: '#/components/schemas/PartyConsentHistory' Period: $ref: '#/components/schemas/Period' Pricebook2: $ref: '#/components/schemas/Pricebook2' Pricebook2History: $ref: '#/components/schemas/Pricebook2History' PricebookEntry: $ref: '#/components/schemas/PricebookEntry' PricebookEntryHistory: $ref: '#/components/schemas/PricebookEntryHistory' ProcessDefinition: $ref: '#/components/schemas/ProcessDefinition' ProcessInstance: $ref: '#/components/schemas/ProcessInstance' Product2: $ref: '#/components/schemas/Product2' Product2History: $ref: '#/components/schemas/Product2History' ProductConsumptionSchedule: $ref: '#/components/schemas/ProductConsumptionSchedule' ProfileSkill: $ref: '#/components/schemas/ProfileSkill' ProfileSkillEndorsement: $ref: '#/components/schemas/ProfileSkillEndorsement' ProfileSkillEndorsementHistory: $ref: '#/components/schemas/ProfileSkillEndorsementHistory' ProfileSkillHistory: $ref: '#/components/schemas/ProfileSkillHistory' ProfileSkillUser: $ref: '#/components/schemas/ProfileSkillUser' ProfileSkillUserHistory: $ref: '#/components/schemas/ProfileSkillUserHistory' QuickText: $ref: '#/components/schemas/QuickText' QuickTextHistory: $ref: '#/components/schemas/QuickTextHistory' Recommendation: $ref: '#/components/schemas/Recommendation' RecordAction: $ref: '#/components/schemas/RecordAction' RecordType: $ref: '#/components/schemas/RecordType' Report: $ref: '#/components/schemas/Report' ReportAnomalyEventStore: $ref: '#/components/schemas/ReportAnomalyEventStore' Scorecard: $ref: '#/components/schemas/Scorecard' ScorecardAssociation: $ref: '#/components/schemas/ScorecardAssociation' ScorecardMetric: $ref: '#/components/schemas/ScorecardMetric' ScratchOrgInfo: $ref: '#/components/schemas/ScratchOrgInfo' ScratchOrgInfoHistory: $ref: '#/components/schemas/ScratchOrgInfoHistory' SearchPromotionRule: $ref: '#/components/schemas/SearchPromotionRule' Seller: $ref: '#/components/schemas/Seller' SellerHistory: $ref: '#/components/schemas/SellerHistory' SessionHijackingEventStore: $ref: '#/components/schemas/SessionHijackingEventStore' SetupAssistantStep: $ref: '#/components/schemas/SetupAssistantStep' SiteHistory: $ref: '#/components/schemas/SiteHistory' SolutionHistory: $ref: '#/components/schemas/SolutionHistory' StaticResource: $ref: '#/components/schemas/StaticResource' StreamingChannel: $ref: '#/components/schemas/StreamingChannel' ThreatDetectionFeedback: $ref: '#/components/schemas/ThreatDetectionFeedback' Topic: $ref: '#/components/schemas/Topic' TopicAssignment: $ref: '#/components/schemas/TopicAssignment' Translation: $ref: '#/components/schemas/Translation' User: $ref: '#/components/schemas/User8' UserRole: $ref: '#/components/schemas/UserRole' WorkBadgeDefinitionHistory: $ref: '#/components/schemas/WorkBadgeDefinitionHistory' examples: - Account: apiName: Account keyPrefix: '001' label: Account labelPlural: Accounts nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Account AccountBrand: apiName: AccountBrand keyPrefix: 0TU label: Account Brand labelPlural: Account Brands nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/AccountBrand AccountHistory: apiName: AccountHistory keyPrefix: '017' label: Account History labelPlural: Account History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/AccountHistory AccountPartner: apiName: AccountPartner keyPrefix: 00I label: Account Partner labelPlural: Account Partner nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/AccountPartner ActiveScratchOrg: apiName: ActiveScratchOrg keyPrefix: 2AS label: Active Scratch Org labelPlural: Active Scratch Orgs nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ActiveScratchOrg ActiveScratchOrgHistory: apiName: ActiveScratchOrgHistory keyPrefix: '017' label: Active Scratch Org History labelPlural: Active Scratch Org History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/ActiveScratchOrgHistory ApiAnomalyEventStore: apiName: ApiAnomalyEventStore keyPrefix: 0j6 label: API Anomaly Event Store labelPlural: API Anomaly Event Stores nameFields: - ApiAnomalyEventNumber objectInfoUrl: /services/data/v58.0/ui-api/object-info/ApiAnomalyEventStore AppAnalyticsQueryRequest: apiName: AppAnalyticsQueryRequest keyPrefix: 0XI label: App Analytics Query Request labelPlural: App Analytics Query Requests nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/AppAnalyticsQueryRequest AppMenuItem: apiName: AppMenuItem keyPrefix: 0DS label: AppMenuItem labelPlural: AppMenuItems nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/AppMenuItem Asset: apiName: Asset keyPrefix: 02i label: Asset labelPlural: Assets nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Asset AssetHistory: apiName: AssetHistory keyPrefix: '017' label: Asset History labelPlural: Asset History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/AssetHistory AssetRelationship: apiName: AssetRelationship keyPrefix: 1AR label: Asset Relationship labelPlural: Asset Relationships nameFields: - AssetRelationshipNumber objectInfoUrl: /services/data/v58.0/ui-api/object-info/AssetRelationship AssetRelationshipHistory: apiName: AssetRelationshipHistory keyPrefix: '017' label: Asset Relationship History labelPlural: Asset Relationship History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/AssetRelationshipHistory AuthorizationForm: apiName: AuthorizationForm keyPrefix: 0cI label: Authorization Form labelPlural: Authorization Forms nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/AuthorizationForm AuthorizationFormConsent: apiName: AuthorizationFormConsent keyPrefix: 0cK label: Authorization Form Consent labelPlural: Authorization Form Consents nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/AuthorizationFormConsent AuthorizationFormConsentHistory: apiName: AuthorizationFormConsentHistory keyPrefix: '017' label: Authorization Form Consent History labelPlural: Authorization Form Consent History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/AuthorizationFormConsentHistory AuthorizationFormDataUse: apiName: AuthorizationFormDataUse keyPrefix: 0cM label: Authorization Form Data Use labelPlural: Authorization Form Data Uses nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/AuthorizationFormDataUse AuthorizationFormDataUseHistory: apiName: AuthorizationFormDataUseHistory keyPrefix: '017' label: Authorization Form Data Use History labelPlural: Authorization Form Data Use History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/AuthorizationFormDataUseHistory AuthorizationFormHistory: apiName: AuthorizationFormHistory keyPrefix: '017' label: Authorization Form History labelPlural: Authorization Form History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/AuthorizationFormHistory AuthorizationFormText: apiName: AuthorizationFormText keyPrefix: 0cN label: Authorization Form Text labelPlural: Authorization Form Texts nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/AuthorizationFormText AuthorizationFormTextHistory: apiName: AuthorizationFormTextHistory keyPrefix: '017' label: Authorization Form Text History labelPlural: Authorization Form Text History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/AuthorizationFormTextHistory BackgroundOperation: apiName: BackgroundOperation keyPrefix: 08P label: Background Operation labelPlural: Background Operations nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/BackgroundOperation BusinessBrand: apiName: BusinessBrand keyPrefix: 1BU label: Business Brand labelPlural: Business Brands nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/BusinessBrand BusinessHours: apiName: BusinessHours keyPrefix: 01m label: Business Hours labelPlural: Business Hours nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/BusinessHours Campaign: apiName: Campaign keyPrefix: '701' label: Campaign labelPlural: Campaigns nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Campaign CampaignHistory: apiName: CampaignHistory keyPrefix: '017' label: Campaign Field History labelPlural: Campaign Field History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/CampaignHistory CampaignMember: apiName: CampaignMember keyPrefix: 00v label: Campaign Member labelPlural: Campaign Members nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/CampaignMember CampaignMemberStatus: apiName: CampaignMemberStatus keyPrefix: 01Y label: Campaign Member Status labelPlural: Campaign Member Statuses nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/CampaignMemberStatus Case: apiName: Case keyPrefix: '500' label: Case labelPlural: Cases nameFields: - CaseNumber objectInfoUrl: /services/data/v58.0/ui-api/object-info/Case CaseComment: apiName: CaseComment keyPrefix: 00a label: Case Comment labelPlural: Case Comments nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/CaseComment CaseContactRole: apiName: CaseContactRole keyPrefix: 03j label: Case Contact Role labelPlural: Case Contact Role nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/CaseContactRole CaseHistory: apiName: CaseHistory keyPrefix: '017' label: Case History labelPlural: Case History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/CaseHistory ChannelProgram: apiName: ChannelProgram keyPrefix: 0Pk label: Channel Program labelPlural: Channel Programs nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ChannelProgram ChannelProgramHistory: apiName: ChannelProgramHistory keyPrefix: '017' label: Channel Program History labelPlural: Channel Program History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/ChannelProgramHistory ChannelProgramLevel: apiName: ChannelProgramLevel keyPrefix: 0Pl label: Channel Program Level labelPlural: Channel Program Levels nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ChannelProgramLevel ChannelProgramLevelHistory: apiName: ChannelProgramLevelHistory keyPrefix: '017' label: Channel Program Level History labelPlural: Channel Program Level History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/ChannelProgramLevelHistory ChannelProgramMember: apiName: ChannelProgramMember keyPrefix: 0Pm label: Channel Program Member labelPlural: Channel Program Members nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ChannelProgramMember ChannelProgramMemberHistory: apiName: ChannelProgramMemberHistory keyPrefix: '017' label: Channel Program Member History labelPlural: Channel Program Member History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ChannelProgramMemberHistory CommSubscription: apiName: CommSubscription keyPrefix: 0Xl label: Communication Subscription labelPlural: Communication Subscriptions nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/CommSubscription CommSubscriptionChannelType: apiName: CommSubscriptionChannelType keyPrefix: 0eB label: Communication Subscription Channel Type labelPlural: Communication Subscription Channel Types nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/CommSubscriptionChannelType CommSubscriptionChannelTypeHistory: apiName: CommSubscriptionChannelTypeHistory keyPrefix: '017' label: Communication Subscription Channel Type History labelPlural: Communication Subscription Channel Type History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/CommSubscriptionChannelTypeHistory CommSubscriptionHistory: apiName: CommSubscriptionHistory keyPrefix: '017' label: Communication Subscription History labelPlural: Communication Subscription History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/CommSubscriptionHistory ConsumptionRate: apiName: ConsumptionRate keyPrefix: 0Mo label: Consumption Rate labelPlural: Consumption Rates nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ConsumptionRate ConsumptionRateHistory: apiName: ConsumptionRateHistory keyPrefix: '017' label: Consumption Rate History ID labelPlural: Consumption Rate History ID nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/ConsumptionRateHistory ConsumptionSchedule: apiName: ConsumptionSchedule keyPrefix: 0Mh label: Consumption Schedule labelPlural: Consumption Schedules nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ConsumptionSchedule ConsumptionScheduleHistory: apiName: ConsumptionScheduleHistory keyPrefix: '017' label: Consumption Schedule History ID labelPlural: Consumption Schedule History ID nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/ConsumptionScheduleHistory Contact: apiName: Contact keyPrefix: '003' label: Contact labelPlural: Contacts nameFields: - FirstName - LastName - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Contact ContactHistory: apiName: ContactHistory keyPrefix: '017' label: Contact History labelPlural: Contact History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/ContactHistory ContactPointTypeConsent: apiName: ContactPointTypeConsent keyPrefix: 0ZY label: Contact Point Type Consent labelPlural: Contact Point Type Consents nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ContactPointTypeConsent ContactPointTypeConsentHistory: apiName: ContactPointTypeConsentHistory keyPrefix: '017' label: Contact Point Type Consent History labelPlural: Contact Point Type Consent History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ContactPointTypeConsentHistory ContactRequest: apiName: ContactRequest keyPrefix: 0Tz label: Contact Request labelPlural: Contact Requests nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ContactRequest ContentDocument: apiName: ContentDocument keyPrefix: '069' label: File labelPlural: Files nameFields: - Title objectInfoUrl: /services/data/v58.0/ui-api/object-info/ContentDocument ContentDocumentHistory: apiName: ContentDocumentHistory keyPrefix: '017' label: Content Document History labelPlural: Content Document History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/ContentDocumentHistory ContentDocumentLink: apiName: ContentDocumentLink keyPrefix: 06A label: Content Document Link labelPlural: Content Document Link nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/ContentDocumentLink ContentVersion: apiName: ContentVersion keyPrefix: '068' label: File labelPlural: Files nameFields: - Title objectInfoUrl: /services/data/v58.0/ui-api/object-info/ContentVersion ContentVersionHistory: apiName: ContentVersionHistory keyPrefix: '017' label: Content Version History labelPlural: Content Version History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/ContentVersionHistory ContentWorkspace: apiName: ContentWorkspace keyPrefix: '058' label: Library labelPlural: Libraries nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ContentWorkspace Contract: apiName: Contract keyPrefix: '800' label: Contract labelPlural: Contracts nameFields: - ContractNumber objectInfoUrl: /services/data/v58.0/ui-api/object-info/Contract ContractContactRole: apiName: ContractContactRole keyPrefix: 02a label: Contract Contact Role labelPlural: Contract Contact Role nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/ContractContactRole ContractHistory: apiName: ContractHistory keyPrefix: '017' label: Contract History labelPlural: Contract History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/ContractHistory CredentialStuffingEventStore: apiName: CredentialStuffingEventStore keyPrefix: 0fj label: Credential Stuffing Event Store labelPlural: Credential Stuffing Event Stores nameFields: - CredentialStuffingEventNumber objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/CredentialStuffingEventStore CspTrustedSite: apiName: CspTrustedSite keyPrefix: 08y label: Trusted URL labelPlural: Trusted URLs nameFields: - DeveloperName objectInfoUrl: /services/data/v58.0/ui-api/object-info/CspTrustedSite Customer: apiName: Customer keyPrefix: 6 label: Customer labelPlural: Customers nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Customer DandBCompany: apiName: DandBCompany keyPrefix: 06E label: D&B Company labelPlural: D&B Companies nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/DandBCompany DataUseLegalBasis: apiName: DataUseLegalBasis keyPrefix: 0ZT label: Data Use Legal Basis labelPlural: Data Use Legal Bases nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/DataUseLegalBasis DataUseLegalBasisHistory: apiName: DataUseLegalBasisHistory keyPrefix: '017' label: Data Use Legal Basis History labelPlural: Data Use Legal Basis History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/DataUseLegalBasisHistory DataUsePurpose: apiName: DataUsePurpose keyPrefix: 0ZW label: Data Use Purpose labelPlural: Data Use Purposes nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/DataUsePurpose DataUsePurposeHistory: apiName: DataUsePurposeHistory keyPrefix: '017' label: Data Use Purpose History labelPlural: Data Use Purpose History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/DataUsePurposeHistory Dataweave_Key_Mapping__mdt: apiName: Dataweave_Key_Mapping__mdt keyPrefix: m00 label: Dataweave Key Mapping labelPlural: Dataweave Key Mappings nameFields: - DeveloperName objectInfoUrl: /services/data/v58.0/ui-api/object-info/Dataweave_Key_Mapping__mdt Dataweave_Mapping__mdt: apiName: Dataweave_Mapping__mdt keyPrefix: m01 label: Dataweave Mapping labelPlural: Dataweave Mappings nameFields: - DeveloperName objectInfoUrl: /services/data/v58.0/ui-api/object-info/Dataweave_Mapping__mdt DelegatedAccount: apiName: DelegatedAccount keyPrefix: 0du label: External Managed Account labelPlural: External Managed Accounts nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/DelegatedAccount DelegatedAccountHistory: apiName: DelegatedAccountHistory keyPrefix: '017' label: External Managed Account History labelPlural: External Managed Account History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/DelegatedAccountHistory DeleteEvent: apiName: DeleteEvent keyPrefix: 00C label: Recycle Bin Item labelPlural: Recycle Bin nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/DeleteEvent DuplicateRecordItem: apiName: DuplicateRecordItem keyPrefix: 0GL label: Duplicate Record Item labelPlural: Duplicate Record Items nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/DuplicateRecordItem DuplicateRecordSet: apiName: DuplicateRecordSet keyPrefix: 0GK label: Duplicate Record Set labelPlural: Duplicate Record Sets nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/DuplicateRecordSet EmailMessageRelation: apiName: EmailMessageRelation keyPrefix: 0CZ label: Email Message Relation labelPlural: Email Message Relations nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/EmailMessageRelation EngagementChannelType: apiName: EngagementChannelType keyPrefix: 0eF label: Engagement Channel Type labelPlural: Engagement Channel Types nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/EngagementChannelType EngagementChannelTypeHistory: apiName: EngagementChannelTypeHistory keyPrefix: '017' label: Engagement Channel Type History labelPlural: Engagement Channel Type History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/EngagementChannelTypeHistory FlowInterview: apiName: FlowInterview keyPrefix: 0Fo label: Flow Interview labelPlural: Flow Interviews nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/FlowInterview FlowOrchestrationInstance: apiName: FlowOrchestrationInstance keyPrefix: 0jE label: Orchestration Run labelPlural: Orchestration Runs nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/FlowOrchestrationInstance FlowOrchestrationStageInstance: apiName: FlowOrchestrationStageInstance keyPrefix: 0jF label: Orchestration Stage Run labelPlural: Orchestration Stage Runs nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/FlowOrchestrationStageInstance FlowOrchestrationStepInstance: apiName: FlowOrchestrationStepInstance keyPrefix: 0jL label: Orchestration Step Run labelPlural: Orchestration Step Runs nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/FlowOrchestrationStepInstance FlowOrchestrationWorkItem: apiName: FlowOrchestrationWorkItem keyPrefix: 0jf label: Orchestration Work Item labelPlural: Orchestration Work Items nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/FlowOrchestrationWorkItem Group: apiName: Group keyPrefix: 00G label: Group labelPlural: Group nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Group Holiday: apiName: Holiday keyPrefix: 0C0 label: Holiday labelPlural: Holidays nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Holiday IPAddressRange: apiName: IPAddressRange keyPrefix: 9s4 label: IP Address Range labelPlural: IP Address Ranges nameFields: - DeveloperName objectInfoUrl: /services/data/v58.0/ui-api/object-info/IPAddressRange Image: apiName: Image keyPrefix: 4YL label: Image labelPlural: Images nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Image ImageHistory: apiName: ImageHistory keyPrefix: '017' label: Image History labelPlural: Image History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/ImageHistory Individual: apiName: Individual keyPrefix: 0PK label: Individual labelPlural: Individuals nameFields: - FirstName - LastName - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Individual IndividualHistory: apiName: IndividualHistory keyPrefix: '017' label: Individual History labelPlural: Individual History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/IndividualHistory Lead: apiName: Lead keyPrefix: 00Q label: Lead labelPlural: Leads nameFields: - FirstName - LastName - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Lead LeadHistory: apiName: LeadHistory keyPrefix: '017' label: Lead History labelPlural: Lead History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/LeadHistory ListEmail: apiName: ListEmail keyPrefix: 0XB label: List Email labelPlural: List Emails nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ListEmail Macro: apiName: Macro keyPrefix: 0JZ label: Macro labelPlural: Macros nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Macro MacroHistory: apiName: MacroHistory keyPrefix: '017' label: Macro History labelPlural: Macro History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/MacroHistory ManagedContent: apiName: ManagedContent keyPrefix: 20Y label: Managed Content labelPlural: Managed Contents nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ManagedContent ManagedContentVariant: apiName: ManagedContentVariant keyPrefix: 9Ps label: Managed Content Variant labelPlural: Managed Content Variants nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ManagedContentVariant Merchandise__c: apiName: Merchandise__c keyPrefix: a00 label: Merchandise labelPlural: Merchandise nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Merchandise__c Merchandising_Mix__c: apiName: Merchandising_Mix__c keyPrefix: a01 label: Merchandise Mix labelPlural: Merchandise Mixes nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Merchandising_Mix__c Mix_Item__c: apiName: Mix_Item__c keyPrefix: a02 label: Mix Item labelPlural: Mix Items nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Mix_Item__c NamespaceRegistry: apiName: NamespaceRegistry keyPrefix: 1NR label: Namespace Registry labelPlural: Namespace Registries nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/NamespaceRegistry NamespaceRegistryHistory: apiName: NamespaceRegistryHistory keyPrefix: '017' label: Namespace Registry History labelPlural: Namespace Registry History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/NamespaceRegistryHistory Note: apiName: Note keyPrefix: '002' label: Note labelPlural: Notes nameFields: - Title objectInfoUrl: /services/data/v58.0/ui-api/object-info/Note Opportunity: apiName: Opportunity keyPrefix: '006' label: Opportunity labelPlural: Opportunities nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Opportunity OpportunityContactRole: apiName: OpportunityContactRole keyPrefix: 00K label: Opportunity Contact Role labelPlural: Opportunity Contact Role nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/OpportunityContactRole OpportunityFieldHistory: apiName: OpportunityFieldHistory keyPrefix: '017' label: Opportunity Field History labelPlural: Opportunity Field History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/OpportunityFieldHistory OpportunityHistory: apiName: OpportunityHistory keyPrefix: '008' label: Opportunity History labelPlural: Opportunity History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/OpportunityHistory OpportunityLineItem: apiName: OpportunityLineItem keyPrefix: 00k label: Opportunity Product labelPlural: Opportunity Product nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/OpportunityLineItem OpportunityPartner: apiName: OpportunityPartner keyPrefix: 00I label: Opportunity Partner labelPlural: Opportunity Partner nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/OpportunityPartner Order: apiName: Order keyPrefix: '801' label: Order labelPlural: Orders nameFields: - OrderNumber objectInfoUrl: /services/data/v58.0/ui-api/object-info/Order OrderHistory: apiName: OrderHistory keyPrefix: '017' label: Order History labelPlural: Order History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/OrderHistory OrderItem: apiName: OrderItem keyPrefix: '802' label: Order Product labelPlural: Order Products nameFields: - OrderItemNumber objectInfoUrl: /services/data/v58.0/ui-api/object-info/OrderItem OrderItemHistory: apiName: OrderItemHistory keyPrefix: '017' label: Order Product History labelPlural: Order Product History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/OrderItemHistory OrgMetric: apiName: OrgMetric keyPrefix: 3v1 label: Org Metric labelPlural: Org Metrics nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/OrgMetric OrgMetricScanResult: apiName: OrgMetricScanResult keyPrefix: 9aM label: Org Metric Scan Result labelPlural: Org Metric Scan Results nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/OrgMetricScanResult OrgMetricScanSummary: apiName: OrgMetricScanSummary keyPrefix: 6mX label: Org Metric Scan Summary labelPlural: Org Metric Scan Summaries nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/OrgMetricScanSummary Organization: apiName: Organization keyPrefix: 00D label: Organization labelPlural: Organizations nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Organization Partner: apiName: Partner keyPrefix: 00I label: Partner labelPlural: Partner nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/Partner PartnerFundAllocation: apiName: PartnerFundAllocation keyPrefix: 0R8 label: Partner Fund Allocation labelPlural: Partner Fund Allocations nameFields: - Title objectInfoUrl: /services/data/v58.0/ui-api/object-info/PartnerFundAllocation PartnerFundAllocationHistory: apiName: PartnerFundAllocationHistory keyPrefix: '017' label: Partner Fund Allocation History labelPlural: Partner Fund Allocation History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/PartnerFundAllocationHistory PartnerFundClaim: apiName: PartnerFundClaim keyPrefix: 0RB label: Partner Fund Claim labelPlural: Partner Fund Claims nameFields: - Title objectInfoUrl: /services/data/v58.0/ui-api/object-info/PartnerFundClaim PartnerFundClaimHistory: apiName: PartnerFundClaimHistory keyPrefix: '017' label: Partner Fund Claim History labelPlural: Partner Fund Claim History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/PartnerFundClaimHistory PartnerFundRequest: apiName: PartnerFundRequest keyPrefix: 0RJ label: Partner Fund Request labelPlural: Partner Fund Requests nameFields: - Title objectInfoUrl: /services/data/v58.0/ui-api/object-info/PartnerFundRequest PartnerFundRequestHistory: apiName: PartnerFundRequestHistory keyPrefix: '017' label: Partner Fund Request History labelPlural: Partner Fund Request History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/PartnerFundRequestHistory PartnerMarketingBudget: apiName: PartnerMarketingBudget keyPrefix: 0Cw label: Partner Marketing Budget labelPlural: Partner Marketing Budgets nameFields: - Title objectInfoUrl: /services/data/v58.0/ui-api/object-info/PartnerMarketingBudget PartnerMarketingBudgetHistory: apiName: PartnerMarketingBudgetHistory keyPrefix: '017' label: Partner Marketing Budget History labelPlural: Partner Marketing Budget History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/PartnerMarketingBudgetHistory PartyConsent: apiName: PartyConsent keyPrefix: 0g8 label: Party Consent labelPlural: Party Consents nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/PartyConsent PartyConsentHistory: apiName: PartyConsentHistory keyPrefix: '017' label: Party Consent History labelPlural: Party Consent History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/PartyConsentHistory Period: apiName: Period keyPrefix: '026' label: Period labelPlural: Period nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/Period Pricebook2: apiName: Pricebook2 keyPrefix: 01s label: Price Book labelPlural: Price Books nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Pricebook2 Pricebook2History: apiName: Pricebook2History keyPrefix: '017' label: Price Book History labelPlural: Price Book History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/Pricebook2History PricebookEntry: apiName: PricebookEntry keyPrefix: 01u label: Price Book Entry labelPlural: Price Book Entries nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/PricebookEntry PricebookEntryHistory: apiName: PricebookEntryHistory keyPrefix: '017' label: Price Book Entry History labelPlural: Price Book Entry History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/PricebookEntryHistory ProcessDefinition: apiName: ProcessDefinition keyPrefix: 04a label: Process Definition labelPlural: Process Definition nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ProcessDefinition ProcessInstance: apiName: ProcessInstance keyPrefix: 04g label: Process Instance labelPlural: Process Instance nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/ProcessInstance Product2: apiName: Product2 keyPrefix: 01t label: Product labelPlural: Products nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Product2 Product2History: apiName: Product2History keyPrefix: '017' label: Product History labelPlural: Product History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/Product2History ProductConsumptionSchedule: apiName: ProductConsumptionSchedule keyPrefix: 0Mq label: Product Consumption Schedule labelPlural: Product Consumption Schedules nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/ProductConsumptionSchedule ProfileSkill: apiName: ProfileSkill keyPrefix: 0Sk label: Skill labelPlural: Skills nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ProfileSkill ProfileSkillEndorsement: apiName: ProfileSkillEndorsement keyPrefix: 0SE label: Endorsement labelPlural: Endorsements nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ProfileSkillEndorsement ProfileSkillEndorsementHistory: apiName: ProfileSkillEndorsementHistory keyPrefix: '017' label: Endorsement History labelPlural: Endorsement History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ProfileSkillEndorsementHistory ProfileSkillHistory: apiName: ProfileSkillHistory keyPrefix: '017' label: Skill History labelPlural: Skill History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/ProfileSkillHistory ProfileSkillUser: apiName: ProfileSkillUser keyPrefix: 0SM label: Skill User labelPlural: Skill Users nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ProfileSkillUser ProfileSkillUserHistory: apiName: ProfileSkillUserHistory keyPrefix: '017' label: Skill User History labelPlural: Skill User History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/ProfileSkillUserHistory QuickText: apiName: QuickText keyPrefix: '574' label: Quick Text labelPlural: Quick Text nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/QuickText QuickTextHistory: apiName: QuickTextHistory keyPrefix: '017' label: Quick Text History labelPlural: Quick Text History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/QuickTextHistory Recommendation: apiName: Recommendation keyPrefix: 0pr label: Recommendation labelPlural: Recommendations nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Recommendation RecordAction: apiName: RecordAction keyPrefix: 0Rw label: RecordAction labelPlural: RecordActions nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/RecordAction RecordType: apiName: RecordType keyPrefix: '012' label: Record Type labelPlural: Record Types nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/RecordType Report: apiName: Report keyPrefix: 00O label: Report labelPlural: Reports nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Report ReportAnomalyEventStore: apiName: ReportAnomalyEventStore keyPrefix: 0Z7 label: Report Anomaly Event Store labelPlural: Report Anomaly Event Stores nameFields: - ReportAnomalyEventNumber objectInfoUrl: /services/data/v58.0/ui-api/object-info/ReportAnomalyEventStore Scorecard: apiName: Scorecard keyPrefix: 01f label: Scorecard labelPlural: Scorecards nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Scorecard ScorecardAssociation: apiName: ScorecardAssociation keyPrefix: 0Qn label: Scorecard Association labelPlural: Scorecard Associations nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ScorecardAssociation ScorecardMetric: apiName: ScorecardMetric keyPrefix: 0Om label: Scorecard Metric labelPlural: Scorecard Metrics nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ScorecardMetric ScratchOrgInfo: apiName: ScratchOrgInfo keyPrefix: 2SR label: Scratch Org Info labelPlural: Scratch Org Infos nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ScratchOrgInfo ScratchOrgInfoHistory: apiName: ScratchOrgInfoHistory keyPrefix: '017' label: Scratch Org Info History labelPlural: Scratch Org Info History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/ScratchOrgInfoHistory SearchPromotionRule: apiName: SearchPromotionRule keyPrefix: 0MD label: Promoted Search Term labelPlural: Promoted Search Terms nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/SearchPromotionRule Seller: apiName: Seller keyPrefix: 0q6 label: Seller labelPlural: Sellers nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Seller SellerHistory: apiName: SellerHistory keyPrefix: '017' label: Seller History labelPlural: Seller History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/SellerHistory SessionHijackingEventStore: apiName: SessionHijackingEventStore keyPrefix: 0Zj label: Session Hijacking Event Store labelPlural: Session Hijacking Event Stores nameFields: - SessionHijackingEventNumber objectInfoUrl: /services/data/v58.0/ui-api/object-info/SessionHijackingEventStore SetupAssistantStep: apiName: SetupAssistantStep keyPrefix: 3Ys label: Setup Assistant Step labelPlural: Setup Assistant Steps nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/SetupAssistantStep SiteHistory: apiName: SiteHistory keyPrefix: '017' label: Site History labelPlural: Site History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/SiteHistory SolutionHistory: apiName: SolutionHistory keyPrefix: '017' label: Solution History labelPlural: Solution History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/SolutionHistory StaticResource: apiName: StaticResource keyPrefix: '081' label: Static Resource labelPlural: Static Resources nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/StaticResource StreamingChannel: apiName: StreamingChannel keyPrefix: 0M6 label: Streaming Channel labelPlural: Streaming Channels nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/StreamingChannel ThreatDetectionFeedback: apiName: ThreatDetectionFeedback keyPrefix: 0hY label: Threat Detection Feedback labelPlural: Threat Detection Feedback nameFields: - ThreatDetectionFeedbackNumber objectInfoUrl: /services/data/v58.0/ui-api/object-info/ThreatDetectionFeedback Topic: apiName: Topic keyPrefix: 0TO label: Topic labelPlural: Topics nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Topic TopicAssignment: apiName: TopicAssignment keyPrefix: 0FT label: Topic Assignment labelPlural: Topic Assignments nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/TopicAssignment Translation: apiName: Translation keyPrefix: 01h label: Language Translation labelPlural: Language Translation nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/Translation User: apiName: User keyPrefix: '005' label: User labelPlural: People nameFields: - FirstName - LastName - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/User UserRole: apiName: UserRole keyPrefix: 00E label: Role labelPlural: Role nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/UserRole WorkBadgeDefinitionHistory: apiName: WorkBadgeDefinitionHistory keyPrefix: '017' label: Badge History labelPlural: Badge History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/WorkBadgeDefinitionHistory Account12: title: Account12 required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: Account keyPrefix: '001' label: Account labelPlural: Accounts nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Account AccountBrand: title: AccountBrand required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: AccountBrand keyPrefix: 0TU label: Account Brand labelPlural: Account Brands nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/AccountBrand AccountHistory: title: AccountHistory required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: AccountHistory keyPrefix: '017' label: Account History labelPlural: Account History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/AccountHistory AccountPartner: title: AccountPartner required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: AccountPartner keyPrefix: 00I label: Account Partner labelPlural: Account Partner nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/AccountPartner ActiveScratchOrg: title: ActiveScratchOrg required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: ActiveScratchOrg keyPrefix: 2AS label: Active Scratch Org labelPlural: Active Scratch Orgs nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ActiveScratchOrg ActiveScratchOrgHistory: title: ActiveScratchOrgHistory required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: ActiveScratchOrgHistory keyPrefix: '017' label: Active Scratch Org History labelPlural: Active Scratch Org History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/ActiveScratchOrgHistory ApiAnomalyEventStore: title: ApiAnomalyEventStore required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: ApiAnomalyEventStore keyPrefix: 0j6 label: API Anomaly Event Store labelPlural: API Anomaly Event Stores nameFields: - ApiAnomalyEventNumber objectInfoUrl: /services/data/v58.0/ui-api/object-info/ApiAnomalyEventStore AppAnalyticsQueryRequest: title: AppAnalyticsQueryRequest required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: AppAnalyticsQueryRequest keyPrefix: 0XI label: App Analytics Query Request labelPlural: App Analytics Query Requests nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/AppAnalyticsQueryRequest AppMenuItem: title: AppMenuItem required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: AppMenuItem keyPrefix: 0DS label: AppMenuItem labelPlural: AppMenuItems nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/AppMenuItem Asset: title: Asset required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: Asset keyPrefix: 02i label: Asset labelPlural: Assets nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Asset AssetHistory: title: AssetHistory required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: AssetHistory keyPrefix: '017' label: Asset History labelPlural: Asset History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/AssetHistory AssetRelationship: title: AssetRelationship required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: AssetRelationship keyPrefix: 1AR label: Asset Relationship labelPlural: Asset Relationships nameFields: - AssetRelationshipNumber objectInfoUrl: /services/data/v58.0/ui-api/object-info/AssetRelationship AssetRelationshipHistory: title: AssetRelationshipHistory required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: AssetRelationshipHistory keyPrefix: '017' label: Asset Relationship History labelPlural: Asset Relationship History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/AssetRelationshipHistory AuthorizationForm: title: AuthorizationForm required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: AuthorizationForm keyPrefix: 0cI label: Authorization Form labelPlural: Authorization Forms nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/AuthorizationForm AuthorizationFormConsent: title: AuthorizationFormConsent required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: AuthorizationFormConsent keyPrefix: 0cK label: Authorization Form Consent labelPlural: Authorization Form Consents nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/AuthorizationFormConsent AuthorizationFormConsentHistory: title: AuthorizationFormConsentHistory required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: AuthorizationFormConsentHistory keyPrefix: '017' label: Authorization Form Consent History labelPlural: Authorization Form Consent History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/AuthorizationFormConsentHistory AuthorizationFormDataUse: title: AuthorizationFormDataUse required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: AuthorizationFormDataUse keyPrefix: 0cM label: Authorization Form Data Use labelPlural: Authorization Form Data Uses nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/AuthorizationFormDataUse AuthorizationFormDataUseHistory: title: AuthorizationFormDataUseHistory required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: AuthorizationFormDataUseHistory keyPrefix: '017' label: Authorization Form Data Use History labelPlural: Authorization Form Data Use History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/AuthorizationFormDataUseHistory AuthorizationFormHistory: title: AuthorizationFormHistory required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: AuthorizationFormHistory keyPrefix: '017' label: Authorization Form History labelPlural: Authorization Form History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/AuthorizationFormHistory AuthorizationFormText: title: AuthorizationFormText required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: AuthorizationFormText keyPrefix: 0cN label: Authorization Form Text labelPlural: Authorization Form Texts nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/AuthorizationFormText AuthorizationFormTextHistory: title: AuthorizationFormTextHistory required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: AuthorizationFormTextHistory keyPrefix: '017' label: Authorization Form Text History labelPlural: Authorization Form Text History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/AuthorizationFormTextHistory BackgroundOperation: title: BackgroundOperation required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: BackgroundOperation keyPrefix: 08P label: Background Operation labelPlural: Background Operations nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/BackgroundOperation BusinessBrand: title: BusinessBrand required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: BusinessBrand keyPrefix: 1BU label: Business Brand labelPlural: Business Brands nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/BusinessBrand BusinessHours: title: BusinessHours required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: BusinessHours keyPrefix: 01m label: Business Hours labelPlural: Business Hours nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/BusinessHours Campaign4: title: Campaign4 required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: Campaign keyPrefix: '701' label: Campaign labelPlural: Campaigns nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Campaign CampaignHistory: title: CampaignHistory required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: CampaignHistory keyPrefix: '017' label: Campaign Field History labelPlural: Campaign Field History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/CampaignHistory CampaignMember: title: CampaignMember required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: CampaignMember keyPrefix: 00v label: Campaign Member labelPlural: Campaign Members nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/CampaignMember CampaignMemberStatus: title: CampaignMemberStatus required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: CampaignMemberStatus keyPrefix: 01Y label: Campaign Member Status labelPlural: Campaign Member Statuses nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/CampaignMemberStatus Case: title: Case required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: Case keyPrefix: '500' label: Case labelPlural: Cases nameFields: - CaseNumber objectInfoUrl: /services/data/v58.0/ui-api/object-info/Case CaseComment: title: CaseComment required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: CaseComment keyPrefix: 00a label: Case Comment labelPlural: Case Comments nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/CaseComment CaseContactRole: title: CaseContactRole required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: CaseContactRole keyPrefix: 03j label: Case Contact Role labelPlural: Case Contact Role nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/CaseContactRole CaseHistory: title: CaseHistory required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: CaseHistory keyPrefix: '017' label: Case History labelPlural: Case History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/CaseHistory ChannelProgram: title: ChannelProgram required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: ChannelProgram keyPrefix: 0Pk label: Channel Program labelPlural: Channel Programs nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ChannelProgram ChannelProgramHistory: title: ChannelProgramHistory required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: ChannelProgramHistory keyPrefix: '017' label: Channel Program History labelPlural: Channel Program History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/ChannelProgramHistory ChannelProgramLevel: title: ChannelProgramLevel required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: ChannelProgramLevel keyPrefix: 0Pl label: Channel Program Level labelPlural: Channel Program Levels nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ChannelProgramLevel ChannelProgramLevelHistory: title: ChannelProgramLevelHistory required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: ChannelProgramLevelHistory keyPrefix: '017' label: Channel Program Level History labelPlural: Channel Program Level History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/ChannelProgramLevelHistory ChannelProgramMember: title: ChannelProgramMember required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: ChannelProgramMember keyPrefix: 0Pm label: Channel Program Member labelPlural: Channel Program Members nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ChannelProgramMember ChannelProgramMemberHistory: title: ChannelProgramMemberHistory required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: ChannelProgramMemberHistory keyPrefix: '017' label: Channel Program Member History labelPlural: Channel Program Member History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/ChannelProgramMemberHistory CommSubscription: title: CommSubscription required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: CommSubscription keyPrefix: 0Xl label: Communication Subscription labelPlural: Communication Subscriptions nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/CommSubscription CommSubscriptionChannelType: title: CommSubscriptionChannelType required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: CommSubscriptionChannelType keyPrefix: 0eB label: Communication Subscription Channel Type labelPlural: Communication Subscription Channel Types nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/CommSubscriptionChannelType CommSubscriptionChannelTypeHistory: title: CommSubscriptionChannelTypeHistory required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: CommSubscriptionChannelTypeHistory keyPrefix: '017' label: Communication Subscription Channel Type History labelPlural: Communication Subscription Channel Type History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/CommSubscriptionChannelTypeHistory CommSubscriptionHistory: title: CommSubscriptionHistory required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: CommSubscriptionHistory keyPrefix: '017' label: Communication Subscription History labelPlural: Communication Subscription History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/CommSubscriptionHistory ConsumptionRate: title: ConsumptionRate required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: ConsumptionRate keyPrefix: 0Mo label: Consumption Rate labelPlural: Consumption Rates nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ConsumptionRate ConsumptionRateHistory: title: ConsumptionRateHistory required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: ConsumptionRateHistory keyPrefix: '017' label: Consumption Rate History ID labelPlural: Consumption Rate History ID nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/ConsumptionRateHistory ConsumptionSchedule: title: ConsumptionSchedule required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: ConsumptionSchedule keyPrefix: 0Mh label: Consumption Schedule labelPlural: Consumption Schedules nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ConsumptionSchedule ConsumptionScheduleHistory: title: ConsumptionScheduleHistory required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: ConsumptionScheduleHistory keyPrefix: '017' label: Consumption Schedule History ID labelPlural: Consumption Schedule History ID nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/ConsumptionScheduleHistory Contact3: title: Contact3 required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: Contact keyPrefix: '003' label: Contact labelPlural: Contacts nameFields: - FirstName - LastName - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Contact ContactHistory: title: ContactHistory required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: ContactHistory keyPrefix: '017' label: Contact History labelPlural: Contact History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/ContactHistory ContactPointTypeConsent: title: ContactPointTypeConsent required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: ContactPointTypeConsent keyPrefix: 0ZY label: Contact Point Type Consent labelPlural: Contact Point Type Consents nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ContactPointTypeConsent ContactPointTypeConsentHistory: title: ContactPointTypeConsentHistory required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: ContactPointTypeConsentHistory keyPrefix: '017' label: Contact Point Type Consent History labelPlural: Contact Point Type Consent History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ContactPointTypeConsentHistory ContactRequest: title: ContactRequest required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: ContactRequest keyPrefix: 0Tz label: Contact Request labelPlural: Contact Requests nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ContactRequest ContentDocument: title: ContentDocument required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: ContentDocument keyPrefix: '069' label: File labelPlural: Files nameFields: - Title objectInfoUrl: /services/data/v58.0/ui-api/object-info/ContentDocument ContentDocumentHistory: title: ContentDocumentHistory required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: ContentDocumentHistory keyPrefix: '017' label: Content Document History labelPlural: Content Document History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/ContentDocumentHistory ContentDocumentLink: title: ContentDocumentLink required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: ContentDocumentLink keyPrefix: 06A label: Content Document Link labelPlural: Content Document Link nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/ContentDocumentLink ContentVersion: title: ContentVersion required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: ContentVersion keyPrefix: '068' label: File labelPlural: Files nameFields: - Title objectInfoUrl: /services/data/v58.0/ui-api/object-info/ContentVersion ContentVersionHistory: title: ContentVersionHistory required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: ContentVersionHistory keyPrefix: '017' label: Content Version History labelPlural: Content Version History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/ContentVersionHistory ContentWorkspace: title: ContentWorkspace required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: ContentWorkspace keyPrefix: '058' label: Library labelPlural: Libraries nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ContentWorkspace Contract: title: Contract required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: Contract keyPrefix: '800' label: Contract labelPlural: Contracts nameFields: - ContractNumber objectInfoUrl: /services/data/v58.0/ui-api/object-info/Contract ContractContactRole: title: ContractContactRole required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: ContractContactRole keyPrefix: 02a label: Contract Contact Role labelPlural: Contract Contact Role nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/ContractContactRole ContractHistory: title: ContractHistory required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: ContractHistory keyPrefix: '017' label: Contract History labelPlural: Contract History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/ContractHistory CredentialStuffingEventStore: title: CredentialStuffingEventStore required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: CredentialStuffingEventStore keyPrefix: 0fj label: Credential Stuffing Event Store labelPlural: Credential Stuffing Event Stores nameFields: - CredentialStuffingEventNumber objectInfoUrl: /services/data/v58.0/ui-api/object-info/CredentialStuffingEventStore CspTrustedSite: title: CspTrustedSite required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: CspTrustedSite keyPrefix: 08y label: Trusted URL labelPlural: Trusted URLs nameFields: - DeveloperName objectInfoUrl: /services/data/v58.0/ui-api/object-info/CspTrustedSite Customer: title: Customer required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: Customer keyPrefix: 6 label: Customer labelPlural: Customers nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Customer DandBCompany: title: DandBCompany required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: DandBCompany keyPrefix: 06E label: D&B Company labelPlural: D&B Companies nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/DandBCompany DataUseLegalBasis: title: DataUseLegalBasis required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: DataUseLegalBasis keyPrefix: 0ZT label: Data Use Legal Basis labelPlural: Data Use Legal Bases nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/DataUseLegalBasis DataUseLegalBasisHistory: title: DataUseLegalBasisHistory required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: DataUseLegalBasisHistory keyPrefix: '017' label: Data Use Legal Basis History labelPlural: Data Use Legal Basis History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/DataUseLegalBasisHistory DataUsePurpose: title: DataUsePurpose required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: DataUsePurpose keyPrefix: 0ZW label: Data Use Purpose labelPlural: Data Use Purposes nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/DataUsePurpose DataUsePurposeHistory: title: DataUsePurposeHistory required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: DataUsePurposeHistory keyPrefix: '017' label: Data Use Purpose History labelPlural: Data Use Purpose History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/DataUsePurposeHistory DataweaveKeyMappingMdt: title: DataweaveKeyMappingMdt required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: Dataweave_Key_Mapping__mdt keyPrefix: m00 label: Dataweave Key Mapping labelPlural: Dataweave Key Mappings nameFields: - DeveloperName objectInfoUrl: /services/data/v58.0/ui-api/object-info/Dataweave_Key_Mapping__mdt DataweaveMappingMdt: title: DataweaveMappingMdt required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: Dataweave_Mapping__mdt keyPrefix: m01 label: Dataweave Mapping labelPlural: Dataweave Mappings nameFields: - DeveloperName objectInfoUrl: /services/data/v58.0/ui-api/object-info/Dataweave_Mapping__mdt DelegatedAccount: title: DelegatedAccount required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: DelegatedAccount keyPrefix: 0du label: External Managed Account labelPlural: External Managed Accounts nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/DelegatedAccount DelegatedAccountHistory: title: DelegatedAccountHistory required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: DelegatedAccountHistory keyPrefix: '017' label: External Managed Account History labelPlural: External Managed Account History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/DelegatedAccountHistory DeleteEvent: title: DeleteEvent required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: DeleteEvent keyPrefix: 00C label: Recycle Bin Item labelPlural: Recycle Bin nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/DeleteEvent DuplicateRecordItem: title: DuplicateRecordItem required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: DuplicateRecordItem keyPrefix: 0GL label: Duplicate Record Item labelPlural: Duplicate Record Items nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/DuplicateRecordItem DuplicateRecordSet: title: DuplicateRecordSet required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: DuplicateRecordSet keyPrefix: 0GK label: Duplicate Record Set labelPlural: Duplicate Record Sets nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/DuplicateRecordSet EmailMessageRelation: title: EmailMessageRelation required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: EmailMessageRelation keyPrefix: 0CZ label: Email Message Relation labelPlural: Email Message Relations nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/EmailMessageRelation EngagementChannelType: title: EngagementChannelType required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: EngagementChannelType keyPrefix: 0eF label: Engagement Channel Type labelPlural: Engagement Channel Types nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/EngagementChannelType EngagementChannelTypeHistory: title: EngagementChannelTypeHistory required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: EngagementChannelTypeHistory keyPrefix: '017' label: Engagement Channel Type History labelPlural: Engagement Channel Type History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/EngagementChannelTypeHistory FlowInterview: title: FlowInterview required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: FlowInterview keyPrefix: 0Fo label: Flow Interview labelPlural: Flow Interviews nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/FlowInterview FlowOrchestrationInstance: title: FlowOrchestrationInstance required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: FlowOrchestrationInstance keyPrefix: 0jE label: Orchestration Run labelPlural: Orchestration Runs nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/FlowOrchestrationInstance FlowOrchestrationStageInstance: title: FlowOrchestrationStageInstance required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: FlowOrchestrationStageInstance keyPrefix: 0jF label: Orchestration Stage Run labelPlural: Orchestration Stage Runs nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/FlowOrchestrationStageInstance FlowOrchestrationStepInstance: title: FlowOrchestrationStepInstance required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: FlowOrchestrationStepInstance keyPrefix: 0jL label: Orchestration Step Run labelPlural: Orchestration Step Runs nameFields: - Name objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/FlowOrchestrationStepInstance FlowOrchestrationWorkItem: title: FlowOrchestrationWorkItem required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: FlowOrchestrationWorkItem keyPrefix: 0jf label: Orchestration Work Item labelPlural: Orchestration Work Items nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/FlowOrchestrationWorkItem Group2: title: Group2 required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: Group keyPrefix: 00G label: Group labelPlural: Group nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Group Holiday: title: Holiday required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: Holiday keyPrefix: 0C0 label: Holiday labelPlural: Holidays nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Holiday IPAddressRange: title: IPAddressRange required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: IPAddressRange keyPrefix: 9s4 label: IP Address Range labelPlural: IP Address Ranges nameFields: - DeveloperName objectInfoUrl: /services/data/v58.0/ui-api/object-info/IPAddressRange Image: title: Image required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: Image keyPrefix: 4YL label: Image labelPlural: Images nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Image ImageHistory: title: ImageHistory required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: ImageHistory keyPrefix: '017' label: Image History labelPlural: Image History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/ImageHistory Individual: title: Individual required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: Individual keyPrefix: 0PK label: Individual labelPlural: Individuals nameFields: - FirstName - LastName - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Individual IndividualHistory: title: IndividualHistory required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: IndividualHistory keyPrefix: '017' label: Individual History labelPlural: Individual History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/IndividualHistory Lead2: title: Lead2 required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: Lead keyPrefix: 00Q label: Lead labelPlural: Leads nameFields: - FirstName - LastName - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Lead LeadHistory: title: LeadHistory required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: LeadHistory keyPrefix: '017' label: Lead History labelPlural: Lead History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/LeadHistory ListEmail: title: ListEmail required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: ListEmail keyPrefix: 0XB label: List Email labelPlural: List Emails nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ListEmail Macro: title: Macro required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: Macro keyPrefix: 0JZ label: Macro labelPlural: Macros nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Macro MacroHistory: title: MacroHistory required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: MacroHistory keyPrefix: '017' label: Macro History labelPlural: Macro History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/MacroHistory ManagedContent: title: ManagedContent required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: ManagedContent keyPrefix: 20Y label: Managed Content labelPlural: Managed Contents nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ManagedContent ManagedContentVariant: title: ManagedContentVariant required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: ManagedContentVariant keyPrefix: 9Ps label: Managed Content Variant labelPlural: Managed Content Variants nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ManagedContentVariant MerchandiseC: title: MerchandiseC required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: Merchandise__c keyPrefix: a00 label: Merchandise labelPlural: Merchandise nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Merchandise__c MerchandisingMixC: title: MerchandisingMixC required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: Merchandising_Mix__c keyPrefix: a01 label: Merchandise Mix labelPlural: Merchandise Mixes nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Merchandising_Mix__c MixItemC: title: MixItemC required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: Mix_Item__c keyPrefix: a02 label: Mix Item labelPlural: Mix Items nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Mix_Item__c NamespaceRegistry: title: NamespaceRegistry required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: NamespaceRegistry keyPrefix: 1NR label: Namespace Registry labelPlural: Namespace Registries nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/NamespaceRegistry NamespaceRegistryHistory: title: NamespaceRegistryHistory required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: NamespaceRegistryHistory keyPrefix: '017' label: Namespace Registry History labelPlural: Namespace Registry History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/NamespaceRegistryHistory Note: title: Note required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: Note keyPrefix: '002' label: Note labelPlural: Notes nameFields: - Title objectInfoUrl: /services/data/v58.0/ui-api/object-info/Note Opportunity4: title: Opportunity4 required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: Opportunity keyPrefix: '006' label: Opportunity labelPlural: Opportunities nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Opportunity OpportunityContactRole: title: OpportunityContactRole required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: OpportunityContactRole keyPrefix: 00K label: Opportunity Contact Role labelPlural: Opportunity Contact Role nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/OpportunityContactRole OpportunityFieldHistory: title: OpportunityFieldHistory required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: OpportunityFieldHistory keyPrefix: '017' label: Opportunity Field History labelPlural: Opportunity Field History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/OpportunityFieldHistory OpportunityHistory: title: OpportunityHistory required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: OpportunityHistory keyPrefix: '008' label: Opportunity History labelPlural: Opportunity History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/OpportunityHistory OpportunityLineItem: title: OpportunityLineItem required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: OpportunityLineItem keyPrefix: 00k label: Opportunity Product labelPlural: Opportunity Product nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/OpportunityLineItem OpportunityPartner: title: OpportunityPartner required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: OpportunityPartner keyPrefix: 00I label: Opportunity Partner labelPlural: Opportunity Partner nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/OpportunityPartner Order: title: Order required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: Order keyPrefix: '801' label: Order labelPlural: Orders nameFields: - OrderNumber objectInfoUrl: /services/data/v58.0/ui-api/object-info/Order OrderHistory: title: OrderHistory required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: OrderHistory keyPrefix: '017' label: Order History labelPlural: Order History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/OrderHistory OrderItem: title: OrderItem required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: OrderItem keyPrefix: '802' label: Order Product labelPlural: Order Products nameFields: - OrderItemNumber objectInfoUrl: /services/data/v58.0/ui-api/object-info/OrderItem OrderItemHistory: title: OrderItemHistory required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: OrderItemHistory keyPrefix: '017' label: Order Product History labelPlural: Order Product History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/OrderItemHistory OrgMetric: title: OrgMetric required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: OrgMetric keyPrefix: 3v1 label: Org Metric labelPlural: Org Metrics nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/OrgMetric OrgMetricScanResult: title: OrgMetricScanResult required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: OrgMetricScanResult keyPrefix: 9aM label: Org Metric Scan Result labelPlural: Org Metric Scan Results nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/OrgMetricScanResult OrgMetricScanSummary: title: OrgMetricScanSummary required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: OrgMetricScanSummary keyPrefix: 6mX label: Org Metric Scan Summary labelPlural: Org Metric Scan Summaries nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/OrgMetricScanSummary Organization: title: Organization required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: Organization keyPrefix: 00D label: Organization labelPlural: Organizations nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Organization Partner: title: Partner required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: Partner keyPrefix: 00I label: Partner labelPlural: Partner nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/Partner PartnerFundAllocation: title: PartnerFundAllocation required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: PartnerFundAllocation keyPrefix: 0R8 label: Partner Fund Allocation labelPlural: Partner Fund Allocations nameFields: - Title objectInfoUrl: /services/data/v58.0/ui-api/object-info/PartnerFundAllocation PartnerFundAllocationHistory: title: PartnerFundAllocationHistory required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: PartnerFundAllocationHistory keyPrefix: '017' label: Partner Fund Allocation History labelPlural: Partner Fund Allocation History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/PartnerFundAllocationHistory PartnerFundClaim: title: PartnerFundClaim required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: PartnerFundClaim keyPrefix: 0RB label: Partner Fund Claim labelPlural: Partner Fund Claims nameFields: - Title objectInfoUrl: /services/data/v58.0/ui-api/object-info/PartnerFundClaim PartnerFundClaimHistory: title: PartnerFundClaimHistory required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: PartnerFundClaimHistory keyPrefix: '017' label: Partner Fund Claim History labelPlural: Partner Fund Claim History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/PartnerFundClaimHistory PartnerFundRequest: title: PartnerFundRequest required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: PartnerFundRequest keyPrefix: 0RJ label: Partner Fund Request labelPlural: Partner Fund Requests nameFields: - Title objectInfoUrl: /services/data/v58.0/ui-api/object-info/PartnerFundRequest PartnerFundRequestHistory: title: PartnerFundRequestHistory required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: PartnerFundRequestHistory keyPrefix: '017' label: Partner Fund Request History labelPlural: Partner Fund Request History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/PartnerFundRequestHistory PartnerMarketingBudget: title: PartnerMarketingBudget required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: PartnerMarketingBudget keyPrefix: 0Cw label: Partner Marketing Budget labelPlural: Partner Marketing Budgets nameFields: - Title objectInfoUrl: /services/data/v58.0/ui-api/object-info/PartnerMarketingBudget PartnerMarketingBudgetHistory: title: PartnerMarketingBudgetHistory required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: PartnerMarketingBudgetHistory keyPrefix: '017' label: Partner Marketing Budget History labelPlural: Partner Marketing Budget History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/PartnerMarketingBudgetHistory PartyConsent: title: PartyConsent required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: PartyConsent keyPrefix: 0g8 label: Party Consent labelPlural: Party Consents nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/PartyConsent PartyConsentHistory: title: PartyConsentHistory required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: PartyConsentHistory keyPrefix: '017' label: Party Consent History labelPlural: Party Consent History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/PartyConsentHistory Period: title: Period required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: Period keyPrefix: '026' label: Period labelPlural: Period nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/Period Pricebook2: title: Pricebook2 required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: Pricebook2 keyPrefix: 01s label: Price Book labelPlural: Price Books nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Pricebook2 Pricebook2History: title: Pricebook2History required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: Pricebook2History keyPrefix: '017' label: Price Book History labelPlural: Price Book History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/Pricebook2History PricebookEntry: title: PricebookEntry required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: PricebookEntry keyPrefix: 01u label: Price Book Entry labelPlural: Price Book Entries nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/PricebookEntry PricebookEntryHistory: title: PricebookEntryHistory required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: PricebookEntryHistory keyPrefix: '017' label: Price Book Entry History labelPlural: Price Book Entry History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/PricebookEntryHistory ProcessDefinition: title: ProcessDefinition required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: ProcessDefinition keyPrefix: 04a label: Process Definition labelPlural: Process Definition nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ProcessDefinition ProcessInstance: title: ProcessInstance required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: ProcessInstance keyPrefix: 04g label: Process Instance labelPlural: Process Instance nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/ProcessInstance Product2: title: Product2 required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: Product2 keyPrefix: 01t label: Product labelPlural: Products nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Product2 Product2History: title: Product2History required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: Product2History keyPrefix: '017' label: Product History labelPlural: Product History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/Product2History ProductConsumptionSchedule: title: ProductConsumptionSchedule required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: ProductConsumptionSchedule keyPrefix: 0Mq label: Product Consumption Schedule labelPlural: Product Consumption Schedules nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/ProductConsumptionSchedule ProfileSkill: title: ProfileSkill required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: ProfileSkill keyPrefix: 0Sk label: Skill labelPlural: Skills nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ProfileSkill ProfileSkillEndorsement: title: ProfileSkillEndorsement required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: ProfileSkillEndorsement keyPrefix: 0SE label: Endorsement labelPlural: Endorsements nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ProfileSkillEndorsement ProfileSkillEndorsementHistory: title: ProfileSkillEndorsementHistory required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: ProfileSkillEndorsementHistory keyPrefix: '017' label: Endorsement History labelPlural: Endorsement History nameFields: [] objectInfoUrl: >- /services/data/v58.0/ui-api/object-info/ProfileSkillEndorsementHistory ProfileSkillHistory: title: ProfileSkillHistory required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: ProfileSkillHistory keyPrefix: '017' label: Skill History labelPlural: Skill History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/ProfileSkillHistory ProfileSkillUser: title: ProfileSkillUser required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: ProfileSkillUser keyPrefix: 0SM label: Skill User labelPlural: Skill Users nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ProfileSkillUser ProfileSkillUserHistory: title: ProfileSkillUserHistory required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: ProfileSkillUserHistory keyPrefix: '017' label: Skill User History labelPlural: Skill User History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/ProfileSkillUserHistory QuickText: title: QuickText required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: QuickText keyPrefix: '574' label: Quick Text labelPlural: Quick Text nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/QuickText QuickTextHistory: title: QuickTextHistory required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: QuickTextHistory keyPrefix: '017' label: Quick Text History labelPlural: Quick Text History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/QuickTextHistory Recommendation: title: Recommendation required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: Recommendation keyPrefix: 0pr label: Recommendation labelPlural: Recommendations nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Recommendation RecordAction: title: RecordAction required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: RecordAction keyPrefix: 0Rw label: RecordAction labelPlural: RecordActions nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/RecordAction RecordType: title: RecordType required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: RecordType keyPrefix: '012' label: Record Type labelPlural: Record Types nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/RecordType Report: title: Report required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: Report keyPrefix: 00O label: Report labelPlural: Reports nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Report ReportAnomalyEventStore: title: ReportAnomalyEventStore required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: ReportAnomalyEventStore keyPrefix: 0Z7 label: Report Anomaly Event Store labelPlural: Report Anomaly Event Stores nameFields: - ReportAnomalyEventNumber objectInfoUrl: /services/data/v58.0/ui-api/object-info/ReportAnomalyEventStore Scorecard: title: Scorecard required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: Scorecard keyPrefix: 01f label: Scorecard labelPlural: Scorecards nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Scorecard ScorecardAssociation: title: ScorecardAssociation required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: ScorecardAssociation keyPrefix: 0Qn label: Scorecard Association labelPlural: Scorecard Associations nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ScorecardAssociation ScorecardMetric: title: ScorecardMetric required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: ScorecardMetric keyPrefix: 0Om label: Scorecard Metric labelPlural: Scorecard Metrics nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ScorecardMetric ScratchOrgInfo: title: ScratchOrgInfo required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: ScratchOrgInfo keyPrefix: 2SR label: Scratch Org Info labelPlural: Scratch Org Infos nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/ScratchOrgInfo ScratchOrgInfoHistory: title: ScratchOrgInfoHistory required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: ScratchOrgInfoHistory keyPrefix: '017' label: Scratch Org Info History labelPlural: Scratch Org Info History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/ScratchOrgInfoHistory SearchPromotionRule: title: SearchPromotionRule required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: SearchPromotionRule keyPrefix: 0MD label: Promoted Search Term labelPlural: Promoted Search Terms nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/SearchPromotionRule Seller: title: Seller required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: Seller keyPrefix: 0q6 label: Seller labelPlural: Sellers nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Seller SellerHistory: title: SellerHistory required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: SellerHistory keyPrefix: '017' label: Seller History labelPlural: Seller History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/SellerHistory SessionHijackingEventStore: title: SessionHijackingEventStore required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: SessionHijackingEventStore keyPrefix: 0Zj label: Session Hijacking Event Store labelPlural: Session Hijacking Event Stores nameFields: - SessionHijackingEventNumber objectInfoUrl: /services/data/v58.0/ui-api/object-info/SessionHijackingEventStore SetupAssistantStep: title: SetupAssistantStep required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: SetupAssistantStep keyPrefix: 3Ys label: Setup Assistant Step labelPlural: Setup Assistant Steps nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/SetupAssistantStep SiteHistory: title: SiteHistory required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: SiteHistory keyPrefix: '017' label: Site History labelPlural: Site History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/SiteHistory SolutionHistory: title: SolutionHistory required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: SolutionHistory keyPrefix: '017' label: Solution History labelPlural: Solution History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/SolutionHistory StaticResource: title: StaticResource required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: StaticResource keyPrefix: '081' label: Static Resource labelPlural: Static Resources nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/StaticResource StreamingChannel: title: StreamingChannel required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: StreamingChannel keyPrefix: 0M6 label: Streaming Channel labelPlural: Streaming Channels nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/StreamingChannel ThreatDetectionFeedback: title: ThreatDetectionFeedback required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: ThreatDetectionFeedback keyPrefix: 0hY label: Threat Detection Feedback labelPlural: Threat Detection Feedback nameFields: - ThreatDetectionFeedbackNumber objectInfoUrl: /services/data/v58.0/ui-api/object-info/ThreatDetectionFeedback Topic: title: Topic required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: Topic keyPrefix: 0TO label: Topic labelPlural: Topics nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/Topic TopicAssignment: title: TopicAssignment required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: TopicAssignment keyPrefix: 0FT label: Topic Assignment labelPlural: Topic Assignments nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/TopicAssignment Translation: title: Translation required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: Translation keyPrefix: 01h label: Language Translation labelPlural: Language Translation nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/Translation User8: title: User8 required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: User keyPrefix: '005' label: User labelPlural: People nameFields: - FirstName - LastName - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/User UserRole: title: UserRole required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: UserRole keyPrefix: 00E label: Role labelPlural: Role nameFields: - Name objectInfoUrl: /services/data/v58.0/ui-api/object-info/UserRole WorkBadgeDefinitionHistory: title: WorkBadgeDefinitionHistory required: - apiName - keyPrefix - label - labelPlural - nameFields - objectInfoUrl type: object properties: apiName: type: string example: example_value keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value nameFields: type: array items: type: string description: '' example: [] objectInfoUrl: type: string example: https://www.example.com examples: - apiName: WorkBadgeDefinitionHistory keyPrefix: '017' label: Badge History labelPlural: Badge History nameFields: [] objectInfoUrl: /services/data/v58.0/ui-api/object-info/WorkBadgeDefinitionHistory GetObjectMetadata: title: GetObjectMetadata required: - apiName - associateEntityType - associateParentEntity - childRelationships - createable - custom - defaultRecordTypeId - deletable - dependentFields - eTag - feedEnabled - fields - keyPrefix - label - labelPlural - layoutable - mruEnabled - nameFields - queryable - recordTypeInfos - searchable - themeInfo - updateable type: object properties: apiName: type: string example: example_value associateEntityType: type: - string - 'null' example: example_value associateParentEntity: type: - string - 'null' example: example_value childRelationships: type: array items: $ref: '#/components/schemas/ChildRelationship2' description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true defaultRecordTypeId: type: string example: '500123' deletable: type: boolean example: true dependentFields: type: object example: example_value eTag: type: string example: example_value feedEnabled: type: boolean example: true fields: $ref: '#/components/schemas/Fields15' keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value layoutable: type: boolean example: true mruEnabled: type: boolean example: true nameFields: type: array items: type: string description: '' example: [] queryable: type: boolean example: true recordTypeInfos: $ref: '#/components/schemas/RecordTypeInfos' searchable: type: boolean example: true themeInfo: $ref: '#/components/schemas/ThemeInfo' updateable: type: boolean example: true examples: - apiName: Account associateEntityType: associateParentEntity: childRelationships: - childObjectApiName: Account fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ChildAccounts - childObjectApiName: AccountBrand fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: AccountBrands - childObjectApiName: AccountCleanInfo fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: AccountCleanInfos - childObjectApiName: AccountContactRole fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: AccountContactRoles - childObjectApiName: AccountFeed fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Feeds - childObjectApiName: AccountHistory fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Histories - childObjectApiName: AccountPartner fieldName: AccountFromId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: AccountPartnersFrom - childObjectApiName: AccountPartner fieldName: AccountToId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: AccountPartnersTo - childObjectApiName: AccountShare fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Shares - childObjectApiName: ActivityHistory fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ActivityHistories - childObjectApiName: Asset fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Assets - childObjectApiName: Asset fieldName: AssetProvidedById junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ProvidedAssets - childObjectApiName: Asset fieldName: AssetServicedById junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ServicedAssets - childObjectApiName: AttachedContentDocument fieldName: LinkedEntityId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: AttachedContentDocuments - childObjectApiName: Attachment fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Attachments - childObjectApiName: AuthorizationFormConsent fieldName: ConsentGiverId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: AuthorizationFormConsents - childObjectApiName: AuthorizationFormConsent fieldName: RelatedRecordId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: RelatedAuthorizationFormConsents - childObjectApiName: Case fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Cases - childObjectApiName: ChannelProgramMember fieldName: PartnerId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ChannelProgramMembers - childObjectApiName: CleanInfo fieldName: TargetEntityId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: CleanInfos - childObjectApiName: CollaborationGroupRecord fieldName: RecordId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: RecordAssociatedGroups - childObjectApiName: CombinedAttachment fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: CombinedAttachments - childObjectApiName: Contact fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Contacts - childObjectApiName: ContactRequest fieldName: WhatId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ContactRequests - childObjectApiName: ContentDocumentLink fieldName: LinkedEntityId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ContentDocumentLinks - childObjectApiName: Contract fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Contracts - childObjectApiName: DelegatedAccount fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: DelegatedAccounts - childObjectApiName: DelegatedAccount fieldName: TargetId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ManagedAccount - childObjectApiName: DuplicateRecordItem fieldName: RecordId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: DuplicateRecordItems - childObjectApiName: EmailMessage fieldName: RelatedToId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Emails - childObjectApiName: EntitySubscription fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: FeedSubscriptionsForEntity - childObjectApiName: Event fieldName: WhatId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Events - childObjectApiName: FlowOrchestrationWorkItem fieldName: RelatedRecordId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: FlowOrchestrationWorkItems - childObjectApiName: NetworkActivityAudit fieldName: ParentEntityId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ParentEntities - childObjectApiName: Note fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Notes - childObjectApiName: NoteAndAttachment fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: NotesAndAttachments - childObjectApiName: OpenActivity fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: OpenActivities - childObjectApiName: Opportunity fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Opportunities - childObjectApiName: OpportunityPartner fieldName: AccountToId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: OpportunityPartnersTo - childObjectApiName: Order fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Orders - childObjectApiName: Partner fieldName: AccountFromId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: PartnersFrom - childObjectApiName: Partner fieldName: AccountToId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: PartnersTo - childObjectApiName: PartnerFundAllocation fieldName: ChannelPartnerId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: PartnerFundAllocations - childObjectApiName: PartnerFundClaim fieldName: ChannelPartnerId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: PartnerFundClaims - childObjectApiName: PartnerFundRequest fieldName: ChannelPartnerId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: PartnerFundRequests - childObjectApiName: PartnerMarketingBudget fieldName: ChannelPartnerId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: PartnerMarketingBudgets - childObjectApiName: ProcessInstance fieldName: TargetObjectId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ProcessInstances - childObjectApiName: ProcessInstanceHistory fieldName: TargetObjectId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ProcessSteps - childObjectApiName: RecordAction fieldName: RecordId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: RecordActions - childObjectApiName: RecordActionHistory fieldName: ParentRecordId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: RecordActionHistories - childObjectApiName: ScorecardAssociation fieldName: TargetEntityId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ScorecardAssociations - childObjectApiName: Task fieldName: WhatId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Tasks - childObjectApiName: TopicAssignment fieldName: EntityId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: TopicAssignments - childObjectApiName: User fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Users createable: true custom: false defaultRecordTypeId: 012000000000000AAA deletable: true dependentFields: {} eTag: 7b786e93cc2b9142accd7a29facc2474 feedEnabled: true fields: AccountNumber: apiName: AccountNumber calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account Number length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true AccountSource: apiName: AccountSource calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account Source length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Active__c: apiName: Active__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Active length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true AnnualRevenue: apiName: AnnualRevenue calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Currency extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Annual Revenue length: 0 nameField: false polymorphicForeignKey: false precision: 18 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true BillingAddress: apiName: BillingAddress calculated: false compound: true compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Address extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing Address length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: false unique: false updateable: false BillingCity: apiName: BillingCity calculated: false compound: false compoundComponentName: City compoundFieldName: BillingAddress controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing City length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true BillingCountry: apiName: BillingCountry calculated: false compound: false compoundComponentName: Country compoundFieldName: BillingAddress controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing Country length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true BillingGeocodeAccuracy: apiName: BillingGeocodeAccuracy calculated: false compound: false compoundComponentName: GeocodeAccuracy compoundFieldName: BillingAddress controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing Geocode Accuracy length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true BillingLatitude: apiName: BillingLatitude calculated: false compound: false compoundComponentName: Latitude compoundFieldName: BillingAddress controllerName: controllingFields: [] createable: true custom: false dataType: Double extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing Latitude length: 0 nameField: false polymorphicForeignKey: false precision: 18 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 15 searchPrefilterable: false sortable: true unique: false updateable: true BillingLongitude: apiName: BillingLongitude calculated: false compound: false compoundComponentName: Longitude compoundFieldName: BillingAddress controllerName: controllingFields: [] createable: true custom: false dataType: Double extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing Longitude length: 0 nameField: false polymorphicForeignKey: false precision: 18 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 15 searchPrefilterable: false sortable: true unique: false updateable: true BillingPostalCode: apiName: BillingPostalCode calculated: false compound: false compoundComponentName: PostalCode compoundFieldName: BillingAddress controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing Zip/Postal Code length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true BillingState: apiName: BillingState calculated: false compound: false compoundComponentName: State compoundFieldName: BillingAddress controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing State/Province length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true BillingStreet: apiName: BillingStreet calculated: false compound: false compoundComponentName: Street compoundFieldName: BillingAddress controllerName: controllingFields: [] createable: true custom: false dataType: TextArea extraTypeInfo: PlainTextArea filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing Street length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ChannelProgramLevelName: apiName: ChannelProgramLevelName calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: false filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Channel Program Level Name length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: false unique: false updateable: false ChannelProgramName: apiName: ChannelProgramName calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: false filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Channel Program Name length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: false unique: false updateable: false CleanStatus: apiName: CleanStatus calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Clean Status length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true CloneSourceId: apiName: CloneSourceId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Clone Source length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false CreatedById: apiName: CreatedById calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Created By ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: User nameFields: - FirstName - LastName - Name relationshipName: CreatedBy required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false CreatedDate: apiName: CreatedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Created Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false CustomerPriority__c: apiName: CustomerPriority__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Customer Priority length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true DandbCompanyId: apiName: DandbCompanyId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: D&B Company ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: DandBCompany nameFields: - Name relationshipName: DandbCompany required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: true Description: apiName: Description calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: TextArea extraTypeInfo: PlainTextArea filterable: false filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account Description length: 32000 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true DunsNumber: apiName: DunsNumber calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: D-U-N-S Number length: 9 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Fax: apiName: Fax calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Phone extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account Fax length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Id: apiName: Id calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Industry: apiName: Industry calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Industry length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true IsCustomerPortal: apiName: IsCustomerPortal calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Customer Portal Account length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true IsDeleted: apiName: IsDeleted calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Deleted length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false IsPartner: apiName: IsPartner calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Partner Account length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Jigsaw: apiName: Jigsaw calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Data.com Key length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true JigsawCompanyId: apiName: JigsawCompanyId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Jigsaw Company ID length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: JigsawCompany required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastActivityDate: apiName: LastActivityDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Date extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Activity length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastModifiedById: apiName: LastModifiedById calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Modified By ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: User nameFields: - FirstName - LastName - Name relationshipName: LastModifiedBy required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastModifiedDate: apiName: LastModifiedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Modified Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastReferencedDate: apiName: LastReferencedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Referenced Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastViewedDate: apiName: LastViewedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Viewed Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false MasterRecordId: apiName: MasterRecordId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Master Record ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Account nameFields: - Name relationshipName: MasterRecord required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false NaicsCode: apiName: NaicsCode calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: NAICS Code length: 8 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true NaicsDesc: apiName: NaicsDesc calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: NAICS Description length: 120 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Name: apiName: Name calculated: false compound: true compoundComponentName: compoundFieldName: Name controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: SwitchablePersonName filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account Name length: 255 nameField: true polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true NumberOfEmployees: apiName: NumberOfEmployees calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Int extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Employees length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true NumberofLocations__c: apiName: NumberofLocations__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: Double extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Number of Locations length: 0 nameField: false polymorphicForeignKey: false precision: 3 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true OwnerId: apiName: OwnerId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Owner ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: User nameFields: - FirstName - LastName - Name relationshipName: Owner required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Ownership: apiName: Ownership calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Ownership length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ParentId: apiName: ParentId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Parent Account ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Account nameFields: - Name relationshipName: Parent required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: true Phone: apiName: Phone calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Phone extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account Phone length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true PhotoUrl: apiName: PhotoUrl calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Url extraTypeInfo: ImageUrl filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Photo URL length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Rating: apiName: Rating calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account Rating length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SLAExpirationDate__c: apiName: SLAExpirationDate__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: Date extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SLA Expiration Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SLASerialNumber__c: apiName: SLASerialNumber__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SLA Serial Number length: 10 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SLA__c: apiName: SLA__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SLA length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ShippingAddress: apiName: ShippingAddress calculated: false compound: true compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Address extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping Address length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: false unique: false updateable: false ShippingCity: apiName: ShippingCity calculated: false compound: false compoundComponentName: City compoundFieldName: ShippingAddress controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping City length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ShippingCountry: apiName: ShippingCountry calculated: false compound: false compoundComponentName: Country compoundFieldName: ShippingAddress controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping Country length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ShippingGeocodeAccuracy: apiName: ShippingGeocodeAccuracy calculated: false compound: false compoundComponentName: GeocodeAccuracy compoundFieldName: ShippingAddress controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping Geocode Accuracy length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ShippingLatitude: apiName: ShippingLatitude calculated: false compound: false compoundComponentName: Latitude compoundFieldName: ShippingAddress controllerName: controllingFields: [] createable: true custom: false dataType: Double extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping Latitude length: 0 nameField: false polymorphicForeignKey: false precision: 18 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 15 searchPrefilterable: false sortable: true unique: false updateable: true ShippingLongitude: apiName: ShippingLongitude calculated: false compound: false compoundComponentName: Longitude compoundFieldName: ShippingAddress controllerName: controllingFields: [] createable: true custom: false dataType: Double extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping Longitude length: 0 nameField: false polymorphicForeignKey: false precision: 18 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 15 searchPrefilterable: false sortable: true unique: false updateable: true ShippingPostalCode: apiName: ShippingPostalCode calculated: false compound: false compoundComponentName: PostalCode compoundFieldName: ShippingAddress controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping Zip/Postal Code length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ShippingState: apiName: ShippingState calculated: false compound: false compoundComponentName: State compoundFieldName: ShippingAddress controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping State/Province length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ShippingStreet: apiName: ShippingStreet calculated: false compound: false compoundComponentName: Street compoundFieldName: ShippingAddress controllerName: controllingFields: [] createable: true custom: false dataType: TextArea extraTypeInfo: PlainTextArea filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping Street length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Sic: apiName: Sic calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SIC Code length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SicDesc: apiName: SicDesc calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SIC Description length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Site: apiName: Site calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account Site length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SystemModstamp: apiName: SystemModstamp calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: System Modstamp length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false TickerSymbol: apiName: TickerSymbol calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Ticker Symbol length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Tradestyle: apiName: Tradestyle calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Tradestyle length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Type: apiName: Type calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account Type length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true UpsellOpportunity__c: apiName: UpsellOpportunity__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Upsell Opportunity length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Website: apiName: Website calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Url extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Website length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true YearStarted: apiName: YearStarted calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Year Started length: 4 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true keyPrefix: '001' label: Account labelPlural: Accounts layoutable: true mruEnabled: true nameFields: - Name queryable: true recordTypeInfos: 012000000000000AAA: available: true defaultRecordTypeMapping: true master: true name: Master recordTypeId: 012000000000000AAA searchable: true themeInfo: color: '5867E8' iconUrl: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_120.png updateable: true Fields15: title: Fields15 required: - AccountNumber - AccountSource - Active__c - AnnualRevenue - BillingAddress - BillingCity - BillingCountry - BillingGeocodeAccuracy - BillingLatitude - BillingLongitude - BillingPostalCode - BillingState - BillingStreet - ChannelProgramLevelName - ChannelProgramName - CleanStatus - CloneSourceId - CreatedById - CreatedDate - CustomerPriority__c - DandbCompanyId - Description - DunsNumber - Fax - Id - Industry - IsCustomerPortal - IsDeleted - IsPartner - Jigsaw - JigsawCompanyId - LastActivityDate - LastModifiedById - LastModifiedDate - LastReferencedDate - LastViewedDate - MasterRecordId - NaicsCode - NaicsDesc - Name - NumberOfEmployees - NumberofLocations__c - OwnerId - Ownership - ParentId - Phone - PhotoUrl - Rating - SLAExpirationDate__c - SLASerialNumber__c - SLA__c - ShippingAddress - ShippingCity - ShippingCountry - ShippingGeocodeAccuracy - ShippingLatitude - ShippingLongitude - ShippingPostalCode - ShippingState - ShippingStreet - Sic - SicDesc - Site - SystemModstamp - TickerSymbol - Tradestyle - Type - UpsellOpportunity__c - Website - YearStarted type: object properties: AccountNumber: $ref: '#/components/schemas/AccountNumber1' AccountSource: $ref: '#/components/schemas/AccountSource1' Active__c: $ref: '#/components/schemas/ActiveC1' AnnualRevenue: $ref: '#/components/schemas/AnnualRevenue1' BillingAddress: $ref: '#/components/schemas/BillingAddress2' BillingCity: $ref: '#/components/schemas/BillingCity1' BillingCountry: $ref: '#/components/schemas/BillingCountry1' BillingGeocodeAccuracy: $ref: '#/components/schemas/BillingGeocodeAccuracy1' BillingLatitude: $ref: '#/components/schemas/BillingLatitude1' BillingLongitude: $ref: '#/components/schemas/BillingLongitude1' BillingPostalCode: $ref: '#/components/schemas/BillingPostalCode1' BillingState: $ref: '#/components/schemas/BillingState1' BillingStreet: $ref: '#/components/schemas/BillingStreet1' ChannelProgramLevelName: $ref: '#/components/schemas/ChannelProgramLevelName1' ChannelProgramName: $ref: '#/components/schemas/ChannelProgramName1' CleanStatus: $ref: '#/components/schemas/CleanStatus2' CloneSourceId: $ref: '#/components/schemas/CloneSourceId' CreatedById: $ref: '#/components/schemas/CreatedById2' CreatedDate: $ref: '#/components/schemas/CreatedDate2' CustomerPriority__c: $ref: '#/components/schemas/CustomerPriorityC1' DandbCompanyId: $ref: '#/components/schemas/DandbCompanyId1' Description: $ref: '#/components/schemas/Description5' DunsNumber: $ref: '#/components/schemas/DunsNumber1' Fax: $ref: '#/components/schemas/Fax2' Id: $ref: '#/components/schemas/Id4' Industry: $ref: '#/components/schemas/Industry1' IsCustomerPortal: $ref: '#/components/schemas/IsCustomerPortal1' IsDeleted: $ref: '#/components/schemas/IsDeleted2' IsPartner: $ref: '#/components/schemas/IsPartner1' Jigsaw: $ref: '#/components/schemas/Jigsaw2' JigsawCompanyId: $ref: '#/components/schemas/JigsawCompanyId1' LastActivityDate: $ref: '#/components/schemas/LastActivityDate2' LastModifiedById: $ref: '#/components/schemas/LastModifiedById2' LastModifiedDate: $ref: '#/components/schemas/LastModifiedDate2' LastReferencedDate: $ref: '#/components/schemas/LastReferencedDate2' LastViewedDate: $ref: '#/components/schemas/LastViewedDate2' MasterRecordId: $ref: '#/components/schemas/MasterRecordId2' NaicsCode: $ref: '#/components/schemas/NaicsCode1' NaicsDesc: $ref: '#/components/schemas/NaicsDesc1' Name: $ref: '#/components/schemas/Name19' NumberOfEmployees: $ref: '#/components/schemas/NumberOfEmployees1' NumberofLocations__c: $ref: '#/components/schemas/NumberofLocationsC1' OwnerId: $ref: '#/components/schemas/OwnerId2' Ownership: $ref: '#/components/schemas/Ownership1' ParentId: $ref: '#/components/schemas/ParentId1' Phone: $ref: '#/components/schemas/Phone2' PhotoUrl: $ref: '#/components/schemas/PhotoUrl2' Rating: $ref: '#/components/schemas/Rating1' SLAExpirationDate__c: $ref: '#/components/schemas/SLAExpirationDateC1' SLASerialNumber__c: $ref: '#/components/schemas/SLASerialNumberC1' SLA__c: $ref: '#/components/schemas/SLAC1' ShippingAddress: $ref: '#/components/schemas/ShippingAddress2' ShippingCity: $ref: '#/components/schemas/ShippingCity1' ShippingCountry: $ref: '#/components/schemas/ShippingCountry1' ShippingGeocodeAccuracy: $ref: '#/components/schemas/ShippingGeocodeAccuracy1' ShippingLatitude: $ref: '#/components/schemas/ShippingLatitude1' ShippingLongitude: $ref: '#/components/schemas/ShippingLongitude1' ShippingPostalCode: $ref: '#/components/schemas/ShippingPostalCode1' ShippingState: $ref: '#/components/schemas/ShippingState1' ShippingStreet: $ref: '#/components/schemas/ShippingStreet1' Sic: $ref: '#/components/schemas/Sic1' SicDesc: $ref: '#/components/schemas/SicDesc1' Site: $ref: '#/components/schemas/Site1' SystemModstamp: $ref: '#/components/schemas/SystemModstamp2' TickerSymbol: $ref: '#/components/schemas/TickerSymbol1' Tradestyle: $ref: '#/components/schemas/Tradestyle1' Type: $ref: '#/components/schemas/Type7' UpsellOpportunity__c: $ref: '#/components/schemas/UpsellOpportunityC1' Website: $ref: '#/components/schemas/Website1' YearStarted: $ref: '#/components/schemas/YearStarted1' examples: - AccountNumber: apiName: AccountNumber calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account Number length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true AccountSource: apiName: AccountSource calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account Source length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Active__c: apiName: Active__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Active length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true AnnualRevenue: apiName: AnnualRevenue calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Currency extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Annual Revenue length: 0 nameField: false polymorphicForeignKey: false precision: 18 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true BillingAddress: apiName: BillingAddress calculated: false compound: true compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Address extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing Address length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: false unique: false updateable: false BillingCity: apiName: BillingCity calculated: false compound: false compoundComponentName: City compoundFieldName: BillingAddress controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing City length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true BillingCountry: apiName: BillingCountry calculated: false compound: false compoundComponentName: Country compoundFieldName: BillingAddress controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing Country length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true BillingGeocodeAccuracy: apiName: BillingGeocodeAccuracy calculated: false compound: false compoundComponentName: GeocodeAccuracy compoundFieldName: BillingAddress controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing Geocode Accuracy length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true BillingLatitude: apiName: BillingLatitude calculated: false compound: false compoundComponentName: Latitude compoundFieldName: BillingAddress controllerName: controllingFields: [] createable: true custom: false dataType: Double extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing Latitude length: 0 nameField: false polymorphicForeignKey: false precision: 18 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 15 searchPrefilterable: false sortable: true unique: false updateable: true BillingLongitude: apiName: BillingLongitude calculated: false compound: false compoundComponentName: Longitude compoundFieldName: BillingAddress controllerName: controllingFields: [] createable: true custom: false dataType: Double extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing Longitude length: 0 nameField: false polymorphicForeignKey: false precision: 18 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 15 searchPrefilterable: false sortable: true unique: false updateable: true BillingPostalCode: apiName: BillingPostalCode calculated: false compound: false compoundComponentName: PostalCode compoundFieldName: BillingAddress controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing Zip/Postal Code length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true BillingState: apiName: BillingState calculated: false compound: false compoundComponentName: State compoundFieldName: BillingAddress controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing State/Province length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true BillingStreet: apiName: BillingStreet calculated: false compound: false compoundComponentName: Street compoundFieldName: BillingAddress controllerName: controllingFields: [] createable: true custom: false dataType: TextArea extraTypeInfo: PlainTextArea filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing Street length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ChannelProgramLevelName: apiName: ChannelProgramLevelName calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: false filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Channel Program Level Name length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: false unique: false updateable: false ChannelProgramName: apiName: ChannelProgramName calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: false filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Channel Program Name length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: false unique: false updateable: false CleanStatus: apiName: CleanStatus calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Clean Status length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true CloneSourceId: apiName: CloneSourceId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Clone Source length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false CreatedById: apiName: CreatedById calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Created By ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: User nameFields: - FirstName - LastName - Name relationshipName: CreatedBy required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false CreatedDate: apiName: CreatedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Created Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false CustomerPriority__c: apiName: CustomerPriority__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Customer Priority length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true DandbCompanyId: apiName: DandbCompanyId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: D&B Company ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: DandBCompany nameFields: - Name relationshipName: DandbCompany required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: true Description: apiName: Description calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: TextArea extraTypeInfo: PlainTextArea filterable: false filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account Description length: 32000 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true DunsNumber: apiName: DunsNumber calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: D-U-N-S Number length: 9 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Fax: apiName: Fax calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Phone extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account Fax length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Id: apiName: Id calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Industry: apiName: Industry calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Industry length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true IsCustomerPortal: apiName: IsCustomerPortal calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Customer Portal Account length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true IsDeleted: apiName: IsDeleted calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Deleted length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false IsPartner: apiName: IsPartner calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Partner Account length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Jigsaw: apiName: Jigsaw calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Data.com Key length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true JigsawCompanyId: apiName: JigsawCompanyId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Jigsaw Company ID length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: JigsawCompany required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastActivityDate: apiName: LastActivityDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Date extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Activity length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastModifiedById: apiName: LastModifiedById calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Modified By ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: User nameFields: - FirstName - LastName - Name relationshipName: LastModifiedBy required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastModifiedDate: apiName: LastModifiedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Modified Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastReferencedDate: apiName: LastReferencedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Referenced Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastViewedDate: apiName: LastViewedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Viewed Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false MasterRecordId: apiName: MasterRecordId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Master Record ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Account nameFields: - Name relationshipName: MasterRecord required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false NaicsCode: apiName: NaicsCode calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: NAICS Code length: 8 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true NaicsDesc: apiName: NaicsDesc calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: NAICS Description length: 120 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Name: apiName: Name calculated: false compound: true compoundComponentName: compoundFieldName: Name controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: SwitchablePersonName filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account Name length: 255 nameField: true polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true NumberOfEmployees: apiName: NumberOfEmployees calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Int extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Employees length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true NumberofLocations__c: apiName: NumberofLocations__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: Double extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Number of Locations length: 0 nameField: false polymorphicForeignKey: false precision: 3 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true OwnerId: apiName: OwnerId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Owner ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: User nameFields: - FirstName - LastName - Name relationshipName: Owner required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Ownership: apiName: Ownership calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Ownership length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ParentId: apiName: ParentId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Parent Account ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Account nameFields: - Name relationshipName: Parent required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: true Phone: apiName: Phone calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Phone extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account Phone length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true PhotoUrl: apiName: PhotoUrl calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Url extraTypeInfo: ImageUrl filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Photo URL length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Rating: apiName: Rating calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account Rating length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SLAExpirationDate__c: apiName: SLAExpirationDate__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: Date extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SLA Expiration Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SLASerialNumber__c: apiName: SLASerialNumber__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SLA Serial Number length: 10 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SLA__c: apiName: SLA__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SLA length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ShippingAddress: apiName: ShippingAddress calculated: false compound: true compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Address extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping Address length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: false unique: false updateable: false ShippingCity: apiName: ShippingCity calculated: false compound: false compoundComponentName: City compoundFieldName: ShippingAddress controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping City length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ShippingCountry: apiName: ShippingCountry calculated: false compound: false compoundComponentName: Country compoundFieldName: ShippingAddress controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping Country length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ShippingGeocodeAccuracy: apiName: ShippingGeocodeAccuracy calculated: false compound: false compoundComponentName: GeocodeAccuracy compoundFieldName: ShippingAddress controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping Geocode Accuracy length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ShippingLatitude: apiName: ShippingLatitude calculated: false compound: false compoundComponentName: Latitude compoundFieldName: ShippingAddress controllerName: controllingFields: [] createable: true custom: false dataType: Double extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping Latitude length: 0 nameField: false polymorphicForeignKey: false precision: 18 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 15 searchPrefilterable: false sortable: true unique: false updateable: true ShippingLongitude: apiName: ShippingLongitude calculated: false compound: false compoundComponentName: Longitude compoundFieldName: ShippingAddress controllerName: controllingFields: [] createable: true custom: false dataType: Double extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping Longitude length: 0 nameField: false polymorphicForeignKey: false precision: 18 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 15 searchPrefilterable: false sortable: true unique: false updateable: true ShippingPostalCode: apiName: ShippingPostalCode calculated: false compound: false compoundComponentName: PostalCode compoundFieldName: ShippingAddress controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping Zip/Postal Code length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ShippingState: apiName: ShippingState calculated: false compound: false compoundComponentName: State compoundFieldName: ShippingAddress controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping State/Province length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ShippingStreet: apiName: ShippingStreet calculated: false compound: false compoundComponentName: Street compoundFieldName: ShippingAddress controllerName: controllingFields: [] createable: true custom: false dataType: TextArea extraTypeInfo: PlainTextArea filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping Street length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Sic: apiName: Sic calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SIC Code length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SicDesc: apiName: SicDesc calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SIC Description length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Site: apiName: Site calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account Site length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SystemModstamp: apiName: SystemModstamp calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: System Modstamp length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false TickerSymbol: apiName: TickerSymbol calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Ticker Symbol length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Tradestyle: apiName: Tradestyle calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Tradestyle length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Type: apiName: Type calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account Type length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true UpsellOpportunity__c: apiName: UpsellOpportunity__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Upsell Opportunity length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Website: apiName: Website calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Url extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Website length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true YearStarted: apiName: YearStarted calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Year Started length: 4 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true AccountNumber1: title: AccountNumber1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: AccountNumber calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account Number length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true AccountSource1: title: AccountSource1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: AccountSource calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account Source length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ActiveC1: title: ActiveC1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: Active__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Active length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true BillingAddress2: title: BillingAddress2 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: BillingAddress calculated: false compound: true compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Address extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing Address length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: false unique: false updateable: false BillingCity1: title: BillingCity1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: string example: example_value compoundFieldName: type: string example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: BillingCity calculated: false compound: false compoundComponentName: City compoundFieldName: BillingAddress controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing City length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true BillingCountry1: title: BillingCountry1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: string example: example_value compoundFieldName: type: string example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: BillingCountry calculated: false compound: false compoundComponentName: Country compoundFieldName: BillingAddress controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing Country length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true BillingGeocodeAccuracy1: title: BillingGeocodeAccuracy1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: string example: example_value compoundFieldName: type: string example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: BillingGeocodeAccuracy calculated: false compound: false compoundComponentName: GeocodeAccuracy compoundFieldName: BillingAddress controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing Geocode Accuracy length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true BillingLatitude1: title: BillingLatitude1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: string example: example_value compoundFieldName: type: string example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: BillingLatitude calculated: false compound: false compoundComponentName: Latitude compoundFieldName: BillingAddress controllerName: controllingFields: [] createable: true custom: false dataType: Double extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing Latitude length: 0 nameField: false polymorphicForeignKey: false precision: 18 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 15 searchPrefilterable: false sortable: true unique: false updateable: true BillingLongitude1: title: BillingLongitude1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: string example: example_value compoundFieldName: type: string example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: BillingLongitude calculated: false compound: false compoundComponentName: Longitude compoundFieldName: BillingAddress controllerName: controllingFields: [] createable: true custom: false dataType: Double extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing Longitude length: 0 nameField: false polymorphicForeignKey: false precision: 18 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 15 searchPrefilterable: false sortable: true unique: false updateable: true BillingPostalCode1: title: BillingPostalCode1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: string example: example_value compoundFieldName: type: string example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: BillingPostalCode calculated: false compound: false compoundComponentName: PostalCode compoundFieldName: BillingAddress controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing Zip/Postal Code length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true BillingState1: title: BillingState1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: string example: example_value compoundFieldName: type: string example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: BillingState calculated: false compound: false compoundComponentName: State compoundFieldName: BillingAddress controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing State/Province length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true BillingStreet1: title: BillingStreet1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: string example: example_value compoundFieldName: type: string example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: string example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: BillingStreet calculated: false compound: false compoundComponentName: Street compoundFieldName: BillingAddress controllerName: controllingFields: [] createable: true custom: false dataType: TextArea extraTypeInfo: PlainTextArea filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing Street length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ChannelProgramLevelName1: title: ChannelProgramLevelName1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: ChannelProgramLevelName calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: false filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Channel Program Level Name length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: false unique: false updateable: false ChannelProgramName1: title: ChannelProgramName1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: ChannelProgramName calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: false filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Channel Program Name length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: false unique: false updateable: false CustomerPriorityC1: title: CustomerPriorityC1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: CustomerPriority__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Customer Priority length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true DunsNumber1: title: DunsNumber1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: DunsNumber calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: D-U-N-S Number length: 9 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true IsCustomerPortal1: title: IsCustomerPortal1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: IsCustomerPortal calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Customer Portal Account length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true IsPartner1: title: IsPartner1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: IsPartner calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Partner Account length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true JigsawCompanyId1: title: JigsawCompanyId1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: string example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: JigsawCompanyId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Jigsaw Company ID length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: JigsawCompany required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false NaicsCode1: title: NaicsCode1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: NaicsCode calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: NAICS Code length: 8 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true NaicsDesc1: title: NaicsDesc1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: NaicsDesc calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: NAICS Description length: 120 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Ownership1: title: Ownership1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: Ownership calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Ownership length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ParentId1: title: ParentId1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: $ref: '#/components/schemas/ReferenceToInfo' description: '' example: [] relationshipName: type: string example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: ParentId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Parent Account ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Account nameFields: - Name relationshipName: Parent required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: true SLAExpirationDateC1: title: SLAExpirationDateC1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: SLAExpirationDate__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: Date extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SLA Expiration Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SLASerialNumberC1: title: SLASerialNumberC1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: SLASerialNumber__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SLA Serial Number length: 10 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SLAC1: title: SLAC1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: SLA__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SLA length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ShippingAddress2: title: ShippingAddress2 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: ShippingAddress calculated: false compound: true compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Address extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping Address length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: false unique: false updateable: false ShippingCity1: title: ShippingCity1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: string example: example_value compoundFieldName: type: string example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: ShippingCity calculated: false compound: false compoundComponentName: City compoundFieldName: ShippingAddress controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping City length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ShippingCountry1: title: ShippingCountry1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: string example: example_value compoundFieldName: type: string example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: ShippingCountry calculated: false compound: false compoundComponentName: Country compoundFieldName: ShippingAddress controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping Country length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ShippingGeocodeAccuracy1: title: ShippingGeocodeAccuracy1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: string example: example_value compoundFieldName: type: string example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: ShippingGeocodeAccuracy calculated: false compound: false compoundComponentName: GeocodeAccuracy compoundFieldName: ShippingAddress controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping Geocode Accuracy length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ShippingLatitude1: title: ShippingLatitude1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: string example: example_value compoundFieldName: type: string example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: ShippingLatitude calculated: false compound: false compoundComponentName: Latitude compoundFieldName: ShippingAddress controllerName: controllingFields: [] createable: true custom: false dataType: Double extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping Latitude length: 0 nameField: false polymorphicForeignKey: false precision: 18 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 15 searchPrefilterable: false sortable: true unique: false updateable: true ShippingLongitude1: title: ShippingLongitude1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: string example: example_value compoundFieldName: type: string example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: ShippingLongitude calculated: false compound: false compoundComponentName: Longitude compoundFieldName: ShippingAddress controllerName: controllingFields: [] createable: true custom: false dataType: Double extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping Longitude length: 0 nameField: false polymorphicForeignKey: false precision: 18 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 15 searchPrefilterable: false sortable: true unique: false updateable: true ShippingPostalCode1: title: ShippingPostalCode1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: string example: example_value compoundFieldName: type: string example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: ShippingPostalCode calculated: false compound: false compoundComponentName: PostalCode compoundFieldName: ShippingAddress controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping Zip/Postal Code length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ShippingState1: title: ShippingState1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: string example: example_value compoundFieldName: type: string example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: ShippingState calculated: false compound: false compoundComponentName: State compoundFieldName: ShippingAddress controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping State/Province length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ShippingStreet1: title: ShippingStreet1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: string example: example_value compoundFieldName: type: string example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: string example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: ShippingStreet calculated: false compound: false compoundComponentName: Street compoundFieldName: ShippingAddress controllerName: controllingFields: [] createable: true custom: false dataType: TextArea extraTypeInfo: PlainTextArea filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping Street length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Sic1: title: Sic1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: Sic calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SIC Code length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SicDesc1: title: SicDesc1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: SicDesc calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SIC Description length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Site1: title: Site1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: Site calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account Site length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true TickerSymbol1: title: TickerSymbol1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: TickerSymbol calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Ticker Symbol length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Tradestyle1: title: Tradestyle1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: Tradestyle calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Tradestyle length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true UpsellOpportunityC1: title: UpsellOpportunityC1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: UpsellOpportunity__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Upsell Opportunity length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true YearStarted1: title: YearStarted1 required: - apiName - calculated - compound - compoundComponentName - compoundFieldName - controllerName - controllingFields - createable - custom - dataType - extraTypeInfo - filterable - filteredLookupInfo - highScaleNumber - htmlFormatted - inlineHelpText - label - length - nameField - polymorphicForeignKey - precision - reference - referenceTargetField - referenceToInfos - relationshipName - required - scale - searchPrefilterable - sortable - unique - updateable type: object properties: apiName: type: string example: example_value calculated: type: boolean example: true compound: type: boolean example: true compoundComponentName: type: - string - 'null' example: example_value compoundFieldName: type: - string - 'null' example: example_value controllerName: type: - string - 'null' example: example_value controllingFields: type: array items: type: string description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true dataType: type: string example: example_value extraTypeInfo: type: - string - 'null' example: example_value filterable: type: boolean example: true filteredLookupInfo: type: - string - 'null' example: example_value highScaleNumber: type: boolean example: true htmlFormatted: type: boolean example: true inlineHelpText: type: - string - 'null' example: example_value label: type: string example: Example Title length: type: integer contentEncoding: int32 example: 10 nameField: type: boolean example: true polymorphicForeignKey: type: boolean example: true precision: type: integer contentEncoding: int32 example: 10 reference: type: boolean example: true referenceTargetField: type: - string - 'null' example: example_value referenceToInfos: type: array items: type: string description: '' example: [] relationshipName: type: - string - 'null' example: example_value required: type: boolean example: true scale: type: integer contentEncoding: int32 example: 10 searchPrefilterable: type: boolean example: true sortable: type: boolean example: true unique: type: boolean example: true updateable: type: boolean example: true examples: - apiName: YearStarted calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Year Started length: 4 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true GetValuesforaPicklistField: title: GetValuesforaPicklistField required: - controllerValues - defaultValue - eTag - url - values type: object properties: controllerValues: type: object example: example_value defaultValue: type: - string - 'null' example: example_value eTag: type: string example: example_value url: type: string example: https://www.example.com values: type: array items: $ref: '#/components/schemas/Value6' description: '' example: [] examples: - controllerValues: {} defaultValue: eTag: bee3e6401e143e18332a17639061c5ff url: >- /services/data/v51.0/ui-api/object-info/Account/picklist-values/012000000000000AAA/Industry values: - attributes: label: Agriculture validFor: [] value: Agriculture - attributes: label: Apparel validFor: [] value: Apparel - attributes: label: Banking validFor: [] value: Banking - attributes: label: Biotechnology validFor: [] value: Biotechnology - attributes: label: Chemicals validFor: [] value: Chemicals - attributes: label: Communications validFor: [] value: Communications - attributes: label: Construction validFor: [] value: Construction - attributes: label: Consulting validFor: [] value: Consulting - attributes: label: Education validFor: [] value: Education - attributes: label: Electronics validFor: [] value: Electronics - attributes: label: Energy validFor: [] value: Energy - attributes: label: Engineering validFor: [] value: Engineering - attributes: label: Entertainment validFor: [] value: Entertainment - attributes: label: Environmental validFor: [] value: Environmental - attributes: label: Finance validFor: [] value: Finance - attributes: label: Food & Beverage validFor: [] value: Food & Beverage - attributes: label: Government validFor: [] value: Government - attributes: label: Healthcare validFor: [] value: Healthcare - attributes: label: Hospitality validFor: [] value: Hospitality - attributes: label: Insurance validFor: [] value: Insurance - attributes: label: Machinery validFor: [] value: Machinery - attributes: label: Manufacturing validFor: [] value: Manufacturing - attributes: label: Media validFor: [] value: Media - attributes: label: Not For Profit validFor: [] value: Not For Profit - attributes: label: Recreation validFor: [] value: Recreation - attributes: label: Retail validFor: [] value: Retail - attributes: label: Shipping validFor: [] value: Shipping - attributes: label: Technology validFor: [] value: Technology - attributes: label: Telecommunications validFor: [] value: Telecommunications - attributes: label: Transportation validFor: [] value: Transportation - attributes: label: Utilities validFor: [] value: Utilities - attributes: label: Other validFor: [] value: Other Value6: title: Value6 required: - attributes - label - validFor - value type: object properties: attributes: type: - string - 'null' example: example_value label: type: string example: Example Title validFor: type: array items: type: string description: '' example: [] value: type: string example: example_value examples: - attributes: label: Agriculture validFor: [] value: Agriculture GetValuesforAllPicklistFieldsofaRecordType: title: GetValuesforAllPicklistFieldsofaRecordType required: - eTag - picklistFieldValues type: object properties: eTag: type: string example: example_value picklistFieldValues: $ref: '#/components/schemas/PicklistFieldValues' examples: - eTag: ef21257ca08f8952ff154f57dc775336 picklistFieldValues: CleanStatus: controllerValues: {} defaultValue: eTag: bd535d2876948d8bb91fad409b69e359 url: >- /services/data/v58.0/ui-api/object-info/Contact/picklist-values/012000000000000AAA/CleanStatus values: - attributes: label: In Sync validFor: [] value: Matched - attributes: label: Different validFor: [] value: Different - attributes: label: Reviewed validFor: [] value: Acknowledged - attributes: label: Not Found validFor: [] value: NotFound - attributes: label: Inactive validFor: [] value: Inactive - attributes: label: Not Compared validFor: [] value: Pending - attributes: label: Select Match validFor: [] value: SelectMatch - attributes: label: Skipped validFor: [] value: Skipped LeadSource: controllerValues: {} defaultValue: eTag: edb5c49da4ff7bfe2cf15ecae67a306c url: >- /services/data/v58.0/ui-api/object-info/Contact/picklist-values/012000000000000AAA/LeadSource values: - attributes: label: Web validFor: [] value: Web - attributes: label: Phone Inquiry validFor: [] value: Phone Inquiry - attributes: label: Partner Referral validFor: [] value: Partner Referral - attributes: label: Purchased List validFor: [] value: Purchased List - attributes: label: Other validFor: [] value: Other Level__c: controllerValues: {} defaultValue: eTag: ffef8adfed014c3057fd14658f5202c4 url: >- /services/data/v58.0/ui-api/object-info/Contact/picklist-values/012000000000000AAA/Level__c values: - attributes: label: Secondary validFor: [] value: Secondary - attributes: label: Tertiary validFor: [] value: Tertiary - attributes: label: Primary validFor: [] value: Primary MailingGeocodeAccuracy: controllerValues: {} defaultValue: eTag: 776a2f5e98c411bafb45081e39a6f1ec url: >- /services/data/v58.0/ui-api/object-info/Contact/picklist-values/012000000000000AAA/MailingGeocodeAccuracy values: - attributes: label: Address validFor: [] value: Address - attributes: label: NearAddress validFor: [] value: NearAddress - attributes: label: Block validFor: [] value: Block - attributes: label: Street validFor: [] value: Street - attributes: label: ExtendedZip validFor: [] value: ExtendedZip - attributes: label: Zip validFor: [] value: Zip - attributes: label: Neighborhood validFor: [] value: Neighborhood - attributes: label: City validFor: [] value: City - attributes: label: County validFor: [] value: County - attributes: label: State validFor: [] value: State - attributes: label: Unknown validFor: [] value: Unknown OtherGeocodeAccuracy: controllerValues: {} defaultValue: eTag: 776a2f5e98c411bafb45081e39a6f1ec url: >- /services/data/v58.0/ui-api/object-info/Contact/picklist-values/012000000000000AAA/OtherGeocodeAccuracy values: - attributes: label: Address validFor: [] value: Address - attributes: label: NearAddress validFor: [] value: NearAddress - attributes: label: Block validFor: [] value: Block - attributes: label: Street validFor: [] value: Street - attributes: label: ExtendedZip validFor: [] value: ExtendedZip - attributes: label: Zip validFor: [] value: Zip - attributes: label: Neighborhood validFor: [] value: Neighborhood - attributes: label: City validFor: [] value: City - attributes: label: County validFor: [] value: County - attributes: label: State validFor: [] value: State - attributes: label: Unknown validFor: [] value: Unknown Salutation: controllerValues: {} defaultValue: eTag: 2de0a04925bdf8e3c70fe1177129a63f url: >- /services/data/v58.0/ui-api/object-info/Contact/picklist-values/012000000000000AAA/Salutation values: - attributes: label: Mr. validFor: [] value: Mr. - attributes: label: Ms. validFor: [] value: Ms. - attributes: label: Mrs. validFor: [] value: Mrs. - attributes: label: Dr. validFor: [] value: Dr. - attributes: label: Prof. validFor: [] value: Prof. PicklistFieldValues: title: PicklistFieldValues required: - CleanStatus - LeadSource - Level__c - MailingGeocodeAccuracy - OtherGeocodeAccuracy - Salutation type: object properties: CleanStatus: $ref: '#/components/schemas/CleanStatus4' LeadSource: $ref: '#/components/schemas/LeadSource4' Level__c: $ref: '#/components/schemas/LevelC' MailingGeocodeAccuracy: $ref: '#/components/schemas/MailingGeocodeAccuracy1' OtherGeocodeAccuracy: $ref: '#/components/schemas/OtherGeocodeAccuracy1' Salutation: $ref: '#/components/schemas/Salutation4' examples: - CleanStatus: controllerValues: {} defaultValue: eTag: bd535d2876948d8bb91fad409b69e359 url: >- /services/data/v58.0/ui-api/object-info/Contact/picklist-values/012000000000000AAA/CleanStatus values: - attributes: label: In Sync validFor: [] value: Matched - attributes: label: Different validFor: [] value: Different - attributes: label: Reviewed validFor: [] value: Acknowledged - attributes: label: Not Found validFor: [] value: NotFound - attributes: label: Inactive validFor: [] value: Inactive - attributes: label: Not Compared validFor: [] value: Pending - attributes: label: Select Match validFor: [] value: SelectMatch - attributes: label: Skipped validFor: [] value: Skipped LeadSource: controllerValues: {} defaultValue: eTag: edb5c49da4ff7bfe2cf15ecae67a306c url: >- /services/data/v58.0/ui-api/object-info/Contact/picklist-values/012000000000000AAA/LeadSource values: - attributes: label: Web validFor: [] value: Web - attributes: label: Phone Inquiry validFor: [] value: Phone Inquiry - attributes: label: Partner Referral validFor: [] value: Partner Referral - attributes: label: Purchased List validFor: [] value: Purchased List - attributes: label: Other validFor: [] value: Other Level__c: controllerValues: {} defaultValue: eTag: ffef8adfed014c3057fd14658f5202c4 url: >- /services/data/v58.0/ui-api/object-info/Contact/picklist-values/012000000000000AAA/Level__c values: - attributes: label: Secondary validFor: [] value: Secondary - attributes: label: Tertiary validFor: [] value: Tertiary - attributes: label: Primary validFor: [] value: Primary MailingGeocodeAccuracy: controllerValues: {} defaultValue: eTag: 776a2f5e98c411bafb45081e39a6f1ec url: >- /services/data/v58.0/ui-api/object-info/Contact/picklist-values/012000000000000AAA/MailingGeocodeAccuracy values: - attributes: label: Address validFor: [] value: Address - attributes: label: NearAddress validFor: [] value: NearAddress - attributes: label: Block validFor: [] value: Block - attributes: label: Street validFor: [] value: Street - attributes: label: ExtendedZip validFor: [] value: ExtendedZip - attributes: label: Zip validFor: [] value: Zip - attributes: label: Neighborhood validFor: [] value: Neighborhood - attributes: label: City validFor: [] value: City - attributes: label: County validFor: [] value: County - attributes: label: State validFor: [] value: State - attributes: label: Unknown validFor: [] value: Unknown OtherGeocodeAccuracy: controllerValues: {} defaultValue: eTag: 776a2f5e98c411bafb45081e39a6f1ec url: >- /services/data/v58.0/ui-api/object-info/Contact/picklist-values/012000000000000AAA/OtherGeocodeAccuracy values: - attributes: label: Address validFor: [] value: Address - attributes: label: NearAddress validFor: [] value: NearAddress - attributes: label: Block validFor: [] value: Block - attributes: label: Street validFor: [] value: Street - attributes: label: ExtendedZip validFor: [] value: ExtendedZip - attributes: label: Zip validFor: [] value: Zip - attributes: label: Neighborhood validFor: [] value: Neighborhood - attributes: label: City validFor: [] value: City - attributes: label: County validFor: [] value: County - attributes: label: State validFor: [] value: State - attributes: label: Unknown validFor: [] value: Unknown Salutation: controllerValues: {} defaultValue: eTag: 2de0a04925bdf8e3c70fe1177129a63f url: >- /services/data/v58.0/ui-api/object-info/Contact/picklist-values/012000000000000AAA/Salutation values: - attributes: label: Mr. validFor: [] value: Mr. - attributes: label: Ms. validFor: [] value: Ms. - attributes: label: Mrs. validFor: [] value: Mrs. - attributes: label: Dr. validFor: [] value: Dr. - attributes: label: Prof. validFor: [] value: Prof. CleanStatus4: title: CleanStatus4 required: - controllerValues - defaultValue - eTag - url - values type: object properties: controllerValues: type: object example: example_value defaultValue: type: - string - 'null' example: example_value eTag: type: string example: example_value url: type: string example: https://www.example.com values: type: array items: $ref: '#/components/schemas/Value6' description: '' example: [] examples: - controllerValues: {} defaultValue: eTag: bd535d2876948d8bb91fad409b69e359 url: >- /services/data/v58.0/ui-api/object-info/Contact/picklist-values/012000000000000AAA/CleanStatus values: - attributes: label: In Sync validFor: [] value: Matched - attributes: label: Different validFor: [] value: Different - attributes: label: Reviewed validFor: [] value: Acknowledged - attributes: label: Not Found validFor: [] value: NotFound - attributes: label: Inactive validFor: [] value: Inactive - attributes: label: Not Compared validFor: [] value: Pending - attributes: label: Select Match validFor: [] value: SelectMatch - attributes: label: Skipped validFor: [] value: Skipped LeadSource4: title: LeadSource4 required: - controllerValues - defaultValue - eTag - url - values type: object properties: controllerValues: type: object example: example_value defaultValue: type: - string - 'null' example: example_value eTag: type: string example: example_value url: type: string example: https://www.example.com values: type: array items: $ref: '#/components/schemas/Value6' description: '' example: [] examples: - controllerValues: {} defaultValue: eTag: edb5c49da4ff7bfe2cf15ecae67a306c url: >- /services/data/v58.0/ui-api/object-info/Contact/picklist-values/012000000000000AAA/LeadSource values: - attributes: label: Web validFor: [] value: Web - attributes: label: Phone Inquiry validFor: [] value: Phone Inquiry - attributes: label: Partner Referral validFor: [] value: Partner Referral - attributes: label: Purchased List validFor: [] value: Purchased List - attributes: label: Other validFor: [] value: Other LevelC: title: LevelC required: - controllerValues - defaultValue - eTag - url - values type: object properties: controllerValues: type: object example: example_value defaultValue: type: - string - 'null' example: example_value eTag: type: string example: example_value url: type: string example: https://www.example.com values: type: array items: $ref: '#/components/schemas/Value6' description: '' example: [] examples: - controllerValues: {} defaultValue: eTag: ffef8adfed014c3057fd14658f5202c4 url: >- /services/data/v58.0/ui-api/object-info/Contact/picklist-values/012000000000000AAA/Level__c values: - attributes: label: Secondary validFor: [] value: Secondary - attributes: label: Tertiary validFor: [] value: Tertiary - attributes: label: Primary validFor: [] value: Primary MailingGeocodeAccuracy1: title: MailingGeocodeAccuracy1 required: - controllerValues - defaultValue - eTag - url - values type: object properties: controllerValues: type: object example: example_value defaultValue: type: - string - 'null' example: example_value eTag: type: string example: example_value url: type: string example: https://www.example.com values: type: array items: $ref: '#/components/schemas/Value6' description: '' example: [] examples: - controllerValues: {} defaultValue: eTag: 776a2f5e98c411bafb45081e39a6f1ec url: >- /services/data/v58.0/ui-api/object-info/Contact/picklist-values/012000000000000AAA/MailingGeocodeAccuracy values: - attributes: label: Address validFor: [] value: Address - attributes: label: NearAddress validFor: [] value: NearAddress - attributes: label: Block validFor: [] value: Block - attributes: label: Street validFor: [] value: Street - attributes: label: ExtendedZip validFor: [] value: ExtendedZip - attributes: label: Zip validFor: [] value: Zip - attributes: label: Neighborhood validFor: [] value: Neighborhood - attributes: label: City validFor: [] value: City - attributes: label: County validFor: [] value: County - attributes: label: State validFor: [] value: State - attributes: label: Unknown validFor: [] value: Unknown OtherGeocodeAccuracy1: title: OtherGeocodeAccuracy1 required: - controllerValues - defaultValue - eTag - url - values type: object properties: controllerValues: type: object example: example_value defaultValue: type: - string - 'null' example: example_value eTag: type: string example: example_value url: type: string example: https://www.example.com values: type: array items: $ref: '#/components/schemas/Value6' description: '' example: [] examples: - controllerValues: {} defaultValue: eTag: 776a2f5e98c411bafb45081e39a6f1ec url: >- /services/data/v58.0/ui-api/object-info/Contact/picklist-values/012000000000000AAA/OtherGeocodeAccuracy values: - attributes: label: Address validFor: [] value: Address - attributes: label: NearAddress validFor: [] value: NearAddress - attributes: label: Block validFor: [] value: Block - attributes: label: Street validFor: [] value: Street - attributes: label: ExtendedZip validFor: [] value: ExtendedZip - attributes: label: Zip validFor: [] value: Zip - attributes: label: Neighborhood validFor: [] value: Neighborhood - attributes: label: City validFor: [] value: City - attributes: label: County validFor: [] value: County - attributes: label: State validFor: [] value: State - attributes: label: Unknown validFor: [] value: Unknown Salutation4: title: Salutation4 required: - controllerValues - defaultValue - eTag - url - values type: object properties: controllerValues: type: object example: example_value defaultValue: type: - string - 'null' example: example_value eTag: type: string example: example_value url: type: string example: https://www.example.com values: type: array items: $ref: '#/components/schemas/Value6' description: '' example: [] examples: - controllerValues: {} defaultValue: eTag: 2de0a04925bdf8e3c70fe1177129a63f url: >- /services/data/v58.0/ui-api/object-info/Contact/picklist-values/012000000000000AAA/Salutation values: - attributes: label: Mr. validFor: [] value: Mr. - attributes: label: Ms. validFor: [] value: Ms. - attributes: label: Mrs. validFor: [] value: Mrs. - attributes: label: Dr. validFor: [] value: Dr. - attributes: label: Prof. validFor: [] value: Prof. GetChildRecords: title: GetChildRecords required: - count - currentPageToken - currentPageUrl - nextPageToken - nextPageUrl - previousPageToken - previousPageUrl - records type: object properties: count: type: integer contentEncoding: int32 example: 42 currentPageToken: type: string example: CAUQAA currentPageUrl: type: string example: https://www.example.com nextPageToken: type: - string - 'null' example: CAUQAA nextPageUrl: type: - string - 'null' example: https://www.example.com previousPageToken: type: - string - 'null' example: CAUQAA previousPageUrl: type: - string - 'null' example: https://www.example.com records: type: array items: $ref: '#/components/schemas/Records1' description: '' example: [] examples: - count: 1 currentPageToken: 1;5;001B000000UnQ2wIAF;Contacts;Contact.Id,Contact.Name; currentPageUrl: >- /services/data/v58.0/ui-api/records/001B000000UnQ2wIAF/child-relationships/Contacts?fields=Contact.Id%2CContact.Name&page=1&pageSize=5 nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: records: - apiName: Contact childRelationships: {} eTag: c3d33add9008aed557a1efa68173aa9b fields: AccountId: displayValue: value: 001B000000UnQ2wIAF Id: displayValue: value: 003B00000097MToIAM Name: displayValue: value: Jack Rogers id: 003B00000097MToIAM lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2017-08-18T14:46:22.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2017-08-18T14:46:22.000Z' weakEtag: 1503067582000 Records1: title: Records1 required: - apiName - childRelationships - eTag - fields - id - lastModifiedById - lastModifiedDate - recordTypeId - recordTypeInfo - systemModstamp - weakEtag type: object properties: apiName: type: string example: example_value childRelationships: type: object example: example_value eTag: type: string example: example_value fields: $ref: '#/components/schemas/Fields16' id: type: string example: abc123 lastModifiedById: type: string example: '500123' lastModifiedDate: type: string example: example_value recordTypeId: type: string example: '500123' recordTypeInfo: type: - string - 'null' example: example_value systemModstamp: type: string example: example_value weakEtag: type: integer contentEncoding: int64 example: 10 examples: - apiName: Contact childRelationships: {} eTag: c3d33add9008aed557a1efa68173aa9b fields: AccountId: displayValue: value: 001B000000UnQ2wIAF Id: displayValue: value: 003B00000097MToIAM Name: displayValue: value: Jack Rogers id: 003B00000097MToIAM lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2017-08-18T14:46:22.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2017-08-18T14:46:22.000Z' weakEtag: 1503067582000 Fields16: title: Fields16 required: - AccountId - Id - Name type: object properties: AccountId: $ref: '#/components/schemas/AccountId2' Id: $ref: '#/components/schemas/Id8' Name: $ref: '#/components/schemas/Name21' examples: - AccountId: displayValue: value: 001B000000UnQ2wIAF Id: displayValue: value: 003B00000097MToIAM Name: displayValue: value: Jack Rogers AccountId2: title: AccountId2 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: string example: example_value examples: - displayValue: value: 001B000000UnQ2wIAF GetaRecord: title: GetaRecord required: - apiName - childRelationships - eTag - fields - id - lastModifiedById - lastModifiedDate - recordTypeId - recordTypeInfo - systemModstamp - weakEtag type: object properties: apiName: type: string example: example_value childRelationships: type: object example: example_value eTag: type: string example: example_value fields: $ref: '#/components/schemas/Fields17' id: type: string example: abc123 lastModifiedById: type: string example: '500123' lastModifiedDate: type: string example: example_value recordTypeId: type: string example: '500123' recordTypeInfo: type: - string - 'null' example: example_value systemModstamp: type: string example: example_value weakEtag: type: integer contentEncoding: int64 example: 10 examples: - apiName: Account childRelationships: {} eTag: 8897eb60da3dea171b0d755821bf2c36 fields: Name: displayValue: value: Burlington Textiles Corp of America Rating: displayValue: Warm value: Warm id: 001B000000UnQ2wIAF lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2017-08-18T14:46:22.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2017-08-18T14:46:22.000Z' weakEtag: 1503067582000 Fields17: title: Fields17 required: - Name - Rating type: object properties: Name: $ref: '#/components/schemas/Name21' Rating: $ref: '#/components/schemas/Rating2' examples: - Name: displayValue: value: Burlington Textiles Corp of America Rating: displayValue: Warm value: Warm GetaBatchofRecords: title: GetaBatchofRecords required: - hasErrors - results type: object properties: hasErrors: type: boolean example: true results: type: array items: $ref: '#/components/schemas/Results4' description: '' example: [] examples: - hasErrors: false results: - result: apiName: Account childRelationships: {} eTag: 8aae3f4fbe3055e68df1d4c8a989a671 fields: AnnualRevenue: displayValue: $350,000,000 value: 350000000 BillingCity: displayValue: value: Burlington BillingCountry: displayValue: value: USA BillingPostalCode: displayValue: value: '27215' BillingState: displayValue: value: NC BillingStreet: displayValue: value: 525 S. Lexington Ave Industry: displayValue: Apparel value: Apparel Name: displayValue: value: Burlington Textiles Corp of America Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cc07f7ef1b08ddbd75074c69512dd388 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2023-02-02T10:32:12.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-09-27T15:47:51.000Z' weakEtag: 1695829671000 OwnerId: displayValue: value: 005B0000003TOI6IAO Parent: displayValue: value: ParentId: displayValue: value: Phone: displayValue: value: (336) 222-7000 PhotoUrl: displayValue: value: /services/images/photo/001B000000UnQ2wIAF Site: displayValue: value: Type: displayValue: Customer - Direct value: Customer - Direct Website: displayValue: value: www.burlington.com id: 001B000000UnQ2wIAF lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2017-08-18T14:46:22.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2017-08-18T14:46:22.000Z' weakEtag: 1503067582000 statusCode: 200 - result: apiName: Account childRelationships: {} eTag: a825a67a87fa16446d82b4948e5643c7 fields: AnnualRevenue: displayValue: $50,000,000 value: 50000000 BillingCity: displayValue: value: Lawrence BillingCountry: displayValue: value: USA BillingPostalCode: displayValue: value: '66045' BillingState: displayValue: value: KS BillingStreet: displayValue: value: 1301 Hoch Drive Industry: displayValue: Consulting value: Consulting Name: displayValue: value: Dickenson plc Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cc07f7ef1b08ddbd75074c69512dd388 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2023-02-02T10:32:12.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-09-27T15:47:51.000Z' weakEtag: 1695829671000 OwnerId: displayValue: value: 005B0000003TOI6IAO Parent: displayValue: value: ParentId: displayValue: value: Phone: displayValue: value: (785) 241-6200 PhotoUrl: displayValue: value: /services/images/photo/001B000000UnQ2yIAF Site: displayValue: value: Type: displayValue: Customer - Channel value: Customer - Channel Website: displayValue: value: dickenson-consulting.com id: 001B000000UnQ2yIAF lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2017-08-18T14:46:22.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2017-08-18T14:46:22.000Z' weakEtag: 1503067582000 statusCode: 200 Results4: title: Results4 required: - result - statusCode type: object properties: result: $ref: '#/components/schemas/Result6' statusCode: type: integer contentEncoding: int32 example: 10 examples: - result: apiName: Account childRelationships: {} eTag: 8aae3f4fbe3055e68df1d4c8a989a671 fields: AnnualRevenue: displayValue: $350,000,000 value: 350000000 BillingCity: displayValue: value: Burlington BillingCountry: displayValue: value: USA BillingPostalCode: displayValue: value: '27215' BillingState: displayValue: value: NC BillingStreet: displayValue: value: 525 S. Lexington Ave Industry: displayValue: Apparel value: Apparel Name: displayValue: value: Burlington Textiles Corp of America Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cc07f7ef1b08ddbd75074c69512dd388 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2023-02-02T10:32:12.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-09-27T15:47:51.000Z' weakEtag: 1695829671000 OwnerId: displayValue: value: 005B0000003TOI6IAO Parent: displayValue: value: ParentId: displayValue: value: Phone: displayValue: value: (336) 222-7000 PhotoUrl: displayValue: value: /services/images/photo/001B000000UnQ2wIAF Site: displayValue: value: Type: displayValue: Customer - Direct value: Customer - Direct Website: displayValue: value: www.burlington.com id: 001B000000UnQ2wIAF lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2017-08-18T14:46:22.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2017-08-18T14:46:22.000Z' weakEtag: 1503067582000 statusCode: 200 Result6: title: Result6 required: - apiName - childRelationships - eTag - fields - id - lastModifiedById - lastModifiedDate - recordTypeId - recordTypeInfo - systemModstamp - weakEtag type: object properties: apiName: type: string example: example_value childRelationships: type: object example: example_value eTag: type: string example: example_value fields: $ref: '#/components/schemas/Fields18' id: type: string example: abc123 lastModifiedById: type: string example: '500123' lastModifiedDate: type: string example: example_value recordTypeId: type: string example: '500123' recordTypeInfo: type: - string - 'null' example: example_value systemModstamp: type: string example: example_value weakEtag: type: integer contentEncoding: int64 example: 10 examples: - apiName: Account childRelationships: {} eTag: 8aae3f4fbe3055e68df1d4c8a989a671 fields: AnnualRevenue: displayValue: $350,000,000 value: 350000000 BillingCity: displayValue: value: Burlington BillingCountry: displayValue: value: USA BillingPostalCode: displayValue: value: '27215' BillingState: displayValue: value: NC BillingStreet: displayValue: value: 525 S. Lexington Ave Industry: displayValue: Apparel value: Apparel Name: displayValue: value: Burlington Textiles Corp of America Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cc07f7ef1b08ddbd75074c69512dd388 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2023-02-02T10:32:12.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-09-27T15:47:51.000Z' weakEtag: 1695829671000 OwnerId: displayValue: value: 005B0000003TOI6IAO Parent: displayValue: value: ParentId: displayValue: value: Phone: displayValue: value: (336) 222-7000 PhotoUrl: displayValue: value: /services/images/photo/001B000000UnQ2wIAF Site: displayValue: value: Type: displayValue: Customer - Direct value: Customer - Direct Website: displayValue: value: www.burlington.com id: 001B000000UnQ2wIAF lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2017-08-18T14:46:22.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2017-08-18T14:46:22.000Z' weakEtag: 1503067582000 Fields18: title: Fields18 required: - AnnualRevenue - BillingCity - BillingCountry - BillingPostalCode - BillingState - BillingStreet - Industry - Name - Owner - OwnerId - Parent - ParentId - Phone - PhotoUrl - Site - Type - Website type: object properties: AnnualRevenue: $ref: '#/components/schemas/AnnualRevenue2' BillingCity: $ref: '#/components/schemas/BillingCity2' BillingCountry: $ref: '#/components/schemas/BillingCountry2' BillingPostalCode: $ref: '#/components/schemas/BillingPostalCode2' BillingState: $ref: '#/components/schemas/BillingState2' BillingStreet: $ref: '#/components/schemas/BillingStreet2' Industry: $ref: '#/components/schemas/Industry2' Name: $ref: '#/components/schemas/Name21' Owner: $ref: '#/components/schemas/Owner6' OwnerId: $ref: '#/components/schemas/OwnerId4' Parent: $ref: '#/components/schemas/Parent7' ParentId: $ref: '#/components/schemas/ParentId2' Phone: $ref: '#/components/schemas/Phone5' PhotoUrl: $ref: '#/components/schemas/PhotoUrl4' Site: $ref: '#/components/schemas/Site2' Type: $ref: '#/components/schemas/Type10' Website: $ref: '#/components/schemas/Website5' examples: - AnnualRevenue: displayValue: $350,000,000 value: 350000000 BillingCity: displayValue: value: Burlington BillingCountry: displayValue: value: USA BillingPostalCode: displayValue: value: '27215' BillingState: displayValue: value: NC BillingStreet: displayValue: value: 525 S. Lexington Ave Industry: displayValue: Apparel value: Apparel Name: displayValue: value: Burlington Textiles Corp of America Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cc07f7ef1b08ddbd75074c69512dd388 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2023-02-02T10:32:12.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-09-27T15:47:51.000Z' weakEtag: 1695829671000 OwnerId: displayValue: value: 005B0000003TOI6IAO Parent: displayValue: value: ParentId: displayValue: value: Phone: displayValue: value: (336) 222-7000 PhotoUrl: displayValue: value: /services/images/photo/001B000000UnQ2wIAF Site: displayValue: value: Type: displayValue: Customer - Direct value: Customer - Direct Website: displayValue: value: www.burlington.com BillingCity2: title: BillingCity2 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: string example: example_value examples: - displayValue: value: Burlington BillingCountry2: title: BillingCountry2 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: string example: example_value examples: - displayValue: value: USA BillingPostalCode2: title: BillingPostalCode2 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: string example: example_value examples: - displayValue: value: '27215' BillingState2: title: BillingState2 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: string example: example_value examples: - displayValue: value: NC BillingStreet2: title: BillingStreet2 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: string example: example_value examples: - displayValue: value: 525 S. Lexington Ave Owner6: title: Owner6 required: - displayValue - value type: object properties: displayValue: type: string example: example_value value: $ref: '#/components/schemas/Value' examples: - displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cc07f7ef1b08ddbd75074c69512dd388 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2023-02-02T10:32:12.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-09-27T15:47:51.000Z' weakEtag: 1695829671000 Parent7: title: Parent7 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: - string - 'null' example: example_value examples: - displayValue: value: ParentId2: title: ParentId2 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: - string - 'null' example: example_value examples: - displayValue: value: PhotoUrl4: title: PhotoUrl4 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: string example: example_value examples: - displayValue: value: /services/images/photo/001B000000UnQ2wIAF Site2: title: Site2 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: - string - 'null' example: example_value examples: - displayValue: value: Type10: title: Type10 required: - displayValue - value type: object properties: displayValue: type: string example: example_value value: type: string example: example_value examples: - displayValue: Customer - Direct value: Customer - Direct Website5: title: Website5 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: string example: example_value examples: - displayValue: value: www.burlington.com CreateaRecordRequest: title: CreateaRecordRequest required: - allowSaveOnDuplicate - apiName - fields type: object properties: allowSaveOnDuplicate: type: boolean example: true apiName: type: string example: example_value fields: $ref: '#/components/schemas/Fields20' examples: - allowSaveOnDuplicate: false apiName: Object fields: FieldAPIName: FieldValue Fields20: title: Fields20 required: - FieldAPIName type: object properties: FieldAPIName: type: string example: example_value examples: - FieldAPIName: FieldValue CreateaRecord: title: CreateaRecord required: - apiName - childRelationships - eTag - fields - id - lastModifiedById - lastModifiedDate - recordTypeId - recordTypeInfo - systemModstamp - weakEtag type: object properties: apiName: type: string example: example_value childRelationships: type: object example: example_value eTag: type: string example: example_value fields: $ref: '#/components/schemas/Fields21' id: type: string example: abc123 lastModifiedById: type: string example: '500123' lastModifiedDate: type: string example: example_value recordTypeId: type: string example: '500123' recordTypeInfo: type: - string - 'null' example: example_value systemModstamp: type: string example: example_value weakEtag: type: integer contentEncoding: int64 example: 10 examples: - apiName: Account childRelationships: {} eTag: 057ae0953591faed613c5e19a086f7a8 fields: AccountNumber: displayValue: value: Active__c: displayValue: value: AnnualRevenue: displayValue: value: BillingCity: displayValue: value: BillingCountry: displayValue: value: BillingPostalCode: displayValue: value: BillingState: displayValue: value: BillingStreet: displayValue: value: CreatedBy: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cc07f7ef1b08ddbd75074c69512dd388 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2023-02-02T10:32:12.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-09-27T15:47:51.000Z' weakEtag: 1695829671000 CreatedById: displayValue: value: 005B0000003TOI6IAO CreatedDate: displayValue: 27/09/2023 18:01 value: '2023-09-27T16:01:14.000Z' CustomerPriority__c: displayValue: value: Description: displayValue: value: Fax: displayValue: value: Industry: displayValue: value: LastModifiedBy: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cc07f7ef1b08ddbd75074c69512dd388 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2023-02-02T10:32:12.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-09-27T15:47:51.000Z' weakEtag: 1695829671000 LastModifiedById: displayValue: value: 005B0000003TOI6IAO LastModifiedDate: displayValue: 27/09/2023 18:01 value: '2023-09-27T16:01:14.000Z' Name: displayValue: value: My New Account NumberOfEmployees: displayValue: value: NumberofLocations__c: displayValue: value: Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cc07f7ef1b08ddbd75074c69512dd388 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2023-02-02T10:32:12.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-09-27T15:47:51.000Z' weakEtag: 1695829671000 OwnerId: displayValue: value: 005B0000003TOI6IAO Ownership: displayValue: value: Parent: displayValue: value: ParentId: displayValue: value: Phone: displayValue: value: Rating: displayValue: value: SLAExpirationDate__c: displayValue: value: SLASerialNumber__c: displayValue: value: SLA__c: displayValue: value: ShippingCity: displayValue: value: ShippingCountry: displayValue: value: ShippingPostalCode: displayValue: value: ShippingState: displayValue: value: ShippingStreet: displayValue: value: Sic: displayValue: value: Site: displayValue: value: TickerSymbol: displayValue: value: Type: displayValue: value: UpsellOpportunity__c: displayValue: value: Website: displayValue: value: id: 0011Q00002Z2P5jQAF lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2023-09-27T16:01:14.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2023-09-27T16:01:14.000Z' weakEtag: 1695830474000 Fields21: title: Fields21 required: - AccountNumber - Active__c - AnnualRevenue - BillingCity - BillingCountry - BillingPostalCode - BillingState - BillingStreet - CreatedBy - CreatedById - CreatedDate - CustomerPriority__c - Description - Fax - Industry - LastModifiedBy - LastModifiedById - LastModifiedDate - Name - NumberOfEmployees - NumberofLocations__c - Owner - OwnerId - Ownership - Parent - ParentId - Phone - Rating - SLAExpirationDate__c - SLASerialNumber__c - SLA__c - ShippingCity - ShippingCountry - ShippingPostalCode - ShippingState - ShippingStreet - Sic - Site - TickerSymbol - Type - UpsellOpportunity__c - Website type: object properties: AccountNumber: $ref: '#/components/schemas/AccountNumber2' Active__c: $ref: '#/components/schemas/ActiveC2' AnnualRevenue: $ref: '#/components/schemas/AnnualRevenue3' BillingCity: $ref: '#/components/schemas/BillingCity3' BillingCountry: $ref: '#/components/schemas/BillingCountry3' BillingPostalCode: $ref: '#/components/schemas/BillingPostalCode3' BillingState: $ref: '#/components/schemas/BillingState3' BillingStreet: $ref: '#/components/schemas/BillingStreet3' CreatedBy: $ref: '#/components/schemas/CreatedBy3' CreatedById: $ref: '#/components/schemas/CreatedById5' CreatedDate: $ref: '#/components/schemas/CreatedDate5' CustomerPriority__c: $ref: '#/components/schemas/CustomerPriorityC2' Description: $ref: '#/components/schemas/Description6' Fax: $ref: '#/components/schemas/Fax5' Industry: $ref: '#/components/schemas/Industry3' LastModifiedBy: $ref: '#/components/schemas/LastModifiedBy3' LastModifiedById: $ref: '#/components/schemas/LastModifiedById5' LastModifiedDate: $ref: '#/components/schemas/LastModifiedDate5' Name: $ref: '#/components/schemas/Name21' NumberOfEmployees: $ref: '#/components/schemas/NumberOfEmployees2' NumberofLocations__c: $ref: '#/components/schemas/NumberofLocationsC5' Owner: $ref: '#/components/schemas/Owner6' OwnerId: $ref: '#/components/schemas/OwnerId4' Ownership: $ref: '#/components/schemas/Ownership2' Parent: $ref: '#/components/schemas/Parent7' ParentId: $ref: '#/components/schemas/ParentId2' Phone: $ref: '#/components/schemas/Phone9' Rating: $ref: '#/components/schemas/Rating3' SLAExpirationDate__c: $ref: '#/components/schemas/SLAExpirationDateC2' SLASerialNumber__c: $ref: '#/components/schemas/SLASerialNumberC2' SLA__c: $ref: '#/components/schemas/SLAC2' ShippingCity: $ref: '#/components/schemas/ShippingCity2' ShippingCountry: $ref: '#/components/schemas/ShippingCountry2' ShippingPostalCode: $ref: '#/components/schemas/ShippingPostalCode2' ShippingState: $ref: '#/components/schemas/ShippingState2' ShippingStreet: $ref: '#/components/schemas/ShippingStreet2' Sic: $ref: '#/components/schemas/Sic2' Site: $ref: '#/components/schemas/Site2' TickerSymbol: $ref: '#/components/schemas/TickerSymbol2' Type: $ref: '#/components/schemas/Type13' UpsellOpportunity__c: $ref: '#/components/schemas/UpsellOpportunityC2' Website: $ref: '#/components/schemas/Website2' examples: - AccountNumber: displayValue: value: Active__c: displayValue: value: AnnualRevenue: displayValue: value: BillingCity: displayValue: value: BillingCountry: displayValue: value: BillingPostalCode: displayValue: value: BillingState: displayValue: value: BillingStreet: displayValue: value: CreatedBy: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cc07f7ef1b08ddbd75074c69512dd388 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2023-02-02T10:32:12.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-09-27T15:47:51.000Z' weakEtag: 1695829671000 CreatedById: displayValue: value: 005B0000003TOI6IAO CreatedDate: displayValue: 27/09/2023 18:01 value: '2023-09-27T16:01:14.000Z' CustomerPriority__c: displayValue: value: Description: displayValue: value: Fax: displayValue: value: Industry: displayValue: value: LastModifiedBy: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cc07f7ef1b08ddbd75074c69512dd388 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2023-02-02T10:32:12.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-09-27T15:47:51.000Z' weakEtag: 1695829671000 LastModifiedById: displayValue: value: 005B0000003TOI6IAO LastModifiedDate: displayValue: 27/09/2023 18:01 value: '2023-09-27T16:01:14.000Z' Name: displayValue: value: My New Account NumberOfEmployees: displayValue: value: NumberofLocations__c: displayValue: value: Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cc07f7ef1b08ddbd75074c69512dd388 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2023-02-02T10:32:12.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-09-27T15:47:51.000Z' weakEtag: 1695829671000 OwnerId: displayValue: value: 005B0000003TOI6IAO Ownership: displayValue: value: Parent: displayValue: value: ParentId: displayValue: value: Phone: displayValue: value: Rating: displayValue: value: SLAExpirationDate__c: displayValue: value: SLASerialNumber__c: displayValue: value: SLA__c: displayValue: value: ShippingCity: displayValue: value: ShippingCountry: displayValue: value: ShippingPostalCode: displayValue: value: ShippingState: displayValue: value: ShippingStreet: displayValue: value: Sic: displayValue: value: Site: displayValue: value: TickerSymbol: displayValue: value: Type: displayValue: value: UpsellOpportunity__c: displayValue: value: Website: displayValue: value: AccountNumber2: title: AccountNumber2 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: - string - 'null' example: example_value examples: - displayValue: value: ActiveC2: title: ActiveC2 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: - string - 'null' example: example_value examples: - displayValue: value: BillingCity3: title: BillingCity3 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: - string - 'null' example: example_value examples: - displayValue: value: BillingCountry3: title: BillingCountry3 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: - string - 'null' example: example_value examples: - displayValue: value: BillingPostalCode3: title: BillingPostalCode3 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: - string - 'null' example: example_value examples: - displayValue: value: BillingState3: title: BillingState3 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: - string - 'null' example: example_value examples: - displayValue: value: BillingStreet3: title: BillingStreet3 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: - string - 'null' example: example_value examples: - displayValue: value: CustomerPriorityC2: title: CustomerPriorityC2 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: - string - 'null' example: example_value examples: - displayValue: value: NumberofLocationsC5: title: NumberofLocationsC5 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: - string - 'null' example: example_value examples: - displayValue: value: Ownership2: title: Ownership2 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: - string - 'null' example: example_value examples: - displayValue: value: Phone9: title: Phone9 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: - string - 'null' example: example_value examples: - displayValue: value: SLAExpirationDateC2: title: SLAExpirationDateC2 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: - string - 'null' example: example_value examples: - displayValue: value: SLASerialNumberC2: title: SLASerialNumberC2 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: - string - 'null' example: example_value examples: - displayValue: value: SLAC2: title: SLAC2 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: - string - 'null' example: example_value examples: - displayValue: value: ShippingCity2: title: ShippingCity2 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: - string - 'null' example: example_value examples: - displayValue: value: ShippingCountry2: title: ShippingCountry2 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: - string - 'null' example: example_value examples: - displayValue: value: ShippingPostalCode2: title: ShippingPostalCode2 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: - string - 'null' example: example_value examples: - displayValue: value: ShippingState2: title: ShippingState2 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: - string - 'null' example: example_value examples: - displayValue: value: ShippingStreet2: title: ShippingStreet2 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: - string - 'null' example: example_value examples: - displayValue: value: Sic2: title: Sic2 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: - string - 'null' example: example_value examples: - displayValue: value: TickerSymbol2: title: TickerSymbol2 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: - string - 'null' example: example_value examples: - displayValue: value: Type13: title: Type13 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: - string - 'null' example: example_value examples: - displayValue: value: UpsellOpportunityC2: title: UpsellOpportunityC2 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: - string - 'null' example: example_value examples: - displayValue: value: GetDefaultValuestoCloneaRecord: title: GetDefaultValuestoCloneaRecord required: - layout - objectInfos - record type: object properties: layout: $ref: '#/components/schemas/Layout' objectInfos: $ref: '#/components/schemas/ObjectInfos1' record: $ref: '#/components/schemas/Record27' Layout: title: Layout required: - eTag - id - layoutType - mode - objectApiName - recordTypeId - saveOptions - sections type: object properties: eTag: type: string example: example_value id: type: string example: abc123 layoutType: type: string example: example_value mode: type: string example: example_value objectApiName: type: string example: example_value recordTypeId: type: string example: '500123' saveOptions: type: array items: type: string description: '' example: [] sections: type: array items: $ref: '#/components/schemas/Section1' description: '' example: [] ObjectInfos1: title: ObjectInfos1 required: - Account - User type: object properties: Account: $ref: '#/components/schemas/Account13' User: $ref: '#/components/schemas/User7' examples: - Account: apiName: Account associateEntityType: associateParentEntity: childRelationships: - childObjectApiName: Account fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ChildAccounts - childObjectApiName: AccountBrand fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: AccountBrands - childObjectApiName: AccountCleanInfo fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: AccountCleanInfos - childObjectApiName: AccountContactRole fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: AccountContactRoles - childObjectApiName: AccountFeed fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Feeds - childObjectApiName: AccountHistory fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Histories - childObjectApiName: AccountPartner fieldName: AccountFromId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: AccountPartnersFrom - childObjectApiName: AccountPartner fieldName: AccountToId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: AccountPartnersTo - childObjectApiName: AccountShare fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Shares - childObjectApiName: ActivityHistory fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ActivityHistories - childObjectApiName: Asset fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Assets - childObjectApiName: Asset fieldName: AssetProvidedById junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ProvidedAssets - childObjectApiName: Asset fieldName: AssetServicedById junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ServicedAssets - childObjectApiName: AttachedContentDocument fieldName: LinkedEntityId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: AttachedContentDocuments - childObjectApiName: Attachment fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Attachments - childObjectApiName: AuthorizationFormConsent fieldName: ConsentGiverId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: AuthorizationFormConsents - childObjectApiName: AuthorizationFormConsent fieldName: RelatedRecordId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: RelatedAuthorizationFormConsents - childObjectApiName: Case fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Cases - childObjectApiName: ChannelProgramMember fieldName: PartnerId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ChannelProgramMembers - childObjectApiName: CleanInfo fieldName: TargetEntityId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: CleanInfos - childObjectApiName: CollaborationGroupRecord fieldName: RecordId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: RecordAssociatedGroups - childObjectApiName: CombinedAttachment fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: CombinedAttachments - childObjectApiName: Contact fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Contacts - childObjectApiName: ContactRequest fieldName: WhatId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ContactRequests - childObjectApiName: ContentDocumentLink fieldName: LinkedEntityId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ContentDocumentLinks - childObjectApiName: Contract fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Contracts - childObjectApiName: DelegatedAccount fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: DelegatedAccounts - childObjectApiName: DelegatedAccount fieldName: TargetId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ManagedAccount - childObjectApiName: DuplicateRecordItem fieldName: RecordId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: DuplicateRecordItems - childObjectApiName: EmailMessage fieldName: RelatedToId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Emails - childObjectApiName: EntitySubscription fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: FeedSubscriptionsForEntity - childObjectApiName: Event fieldName: WhatId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Events - childObjectApiName: FlowOrchestrationWorkItem fieldName: RelatedRecordId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: FlowOrchestrationWorkItems - childObjectApiName: NetworkActivityAudit fieldName: ParentEntityId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ParentEntities - childObjectApiName: Note fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Notes - childObjectApiName: NoteAndAttachment fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: NotesAndAttachments - childObjectApiName: OpenActivity fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: OpenActivities - childObjectApiName: Opportunity fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Opportunities - childObjectApiName: OpportunityPartner fieldName: AccountToId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: OpportunityPartnersTo - childObjectApiName: Order fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Orders - childObjectApiName: Partner fieldName: AccountFromId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: PartnersFrom - childObjectApiName: Partner fieldName: AccountToId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: PartnersTo - childObjectApiName: PartnerFundAllocation fieldName: ChannelPartnerId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: PartnerFundAllocations - childObjectApiName: PartnerFundClaim fieldName: ChannelPartnerId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: PartnerFundClaims - childObjectApiName: PartnerFundRequest fieldName: ChannelPartnerId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: PartnerFundRequests - childObjectApiName: PartnerMarketingBudget fieldName: ChannelPartnerId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: PartnerMarketingBudgets - childObjectApiName: ProcessInstance fieldName: TargetObjectId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ProcessInstances - childObjectApiName: ProcessInstanceHistory fieldName: TargetObjectId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ProcessSteps - childObjectApiName: RecordAction fieldName: RecordId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: RecordActions - childObjectApiName: RecordActionHistory fieldName: ParentRecordId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: RecordActionHistories - childObjectApiName: ScorecardAssociation fieldName: TargetEntityId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ScorecardAssociations - childObjectApiName: Task fieldName: WhatId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Tasks - childObjectApiName: TopicAssignment fieldName: EntityId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: TopicAssignments - childObjectApiName: User fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Users createable: true custom: false defaultRecordTypeId: 012000000000000AAA deletable: true dependentFields: {} eTag: 7b786e93cc2b9142accd7a29facc2474 feedEnabled: true fields: AccountNumber: apiName: AccountNumber calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account Number length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true AccountSource: apiName: AccountSource calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account Source length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Active__c: apiName: Active__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Active length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true AnnualRevenue: apiName: AnnualRevenue calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Currency extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Annual Revenue length: 0 nameField: false polymorphicForeignKey: false precision: 18 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true BillingAddress: apiName: BillingAddress calculated: false compound: true compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Address extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing Address length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: false unique: false updateable: false BillingCity: apiName: BillingCity calculated: false compound: false compoundComponentName: City compoundFieldName: BillingAddress controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing City length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true BillingCountry: apiName: BillingCountry calculated: false compound: false compoundComponentName: Country compoundFieldName: BillingAddress controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing Country length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true BillingGeocodeAccuracy: apiName: BillingGeocodeAccuracy calculated: false compound: false compoundComponentName: GeocodeAccuracy compoundFieldName: BillingAddress controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing Geocode Accuracy length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true BillingLatitude: apiName: BillingLatitude calculated: false compound: false compoundComponentName: Latitude compoundFieldName: BillingAddress controllerName: controllingFields: [] createable: true custom: false dataType: Double extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing Latitude length: 0 nameField: false polymorphicForeignKey: false precision: 18 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 15 searchPrefilterable: false sortable: true unique: false updateable: true BillingLongitude: apiName: BillingLongitude calculated: false compound: false compoundComponentName: Longitude compoundFieldName: BillingAddress controllerName: controllingFields: [] createable: true custom: false dataType: Double extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing Longitude length: 0 nameField: false polymorphicForeignKey: false precision: 18 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 15 searchPrefilterable: false sortable: true unique: false updateable: true BillingPostalCode: apiName: BillingPostalCode calculated: false compound: false compoundComponentName: PostalCode compoundFieldName: BillingAddress controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing Zip/Postal Code length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true BillingState: apiName: BillingState calculated: false compound: false compoundComponentName: State compoundFieldName: BillingAddress controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing State/Province length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true BillingStreet: apiName: BillingStreet calculated: false compound: false compoundComponentName: Street compoundFieldName: BillingAddress controllerName: controllingFields: [] createable: true custom: false dataType: TextArea extraTypeInfo: PlainTextArea filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing Street length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ChannelProgramLevelName: apiName: ChannelProgramLevelName calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: false filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Channel Program Level Name length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: false unique: false updateable: false ChannelProgramName: apiName: ChannelProgramName calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: false filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Channel Program Name length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: false unique: false updateable: false CleanStatus: apiName: CleanStatus calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Clean Status length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true CloneSourceId: apiName: CloneSourceId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Clone Source length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false CreatedById: apiName: CreatedById calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Created By ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: User nameFields: - FirstName - LastName - Name relationshipName: CreatedBy required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false CreatedDate: apiName: CreatedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Created Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false CustomerPriority__c: apiName: CustomerPriority__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Customer Priority length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true DandbCompanyId: apiName: DandbCompanyId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: D&B Company ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: DandBCompany nameFields: - Name relationshipName: DandbCompany required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: true Description: apiName: Description calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: TextArea extraTypeInfo: PlainTextArea filterable: false filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account Description length: 32000 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true DunsNumber: apiName: DunsNumber calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: D-U-N-S Number length: 9 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Fax: apiName: Fax calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Phone extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account Fax length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Id: apiName: Id calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Industry: apiName: Industry calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Industry length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true IsCustomerPortal: apiName: IsCustomerPortal calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Customer Portal Account length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true IsDeleted: apiName: IsDeleted calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Deleted length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false IsPartner: apiName: IsPartner calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Partner Account length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Jigsaw: apiName: Jigsaw calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Data.com Key length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true JigsawCompanyId: apiName: JigsawCompanyId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Jigsaw Company ID length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: JigsawCompany required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastActivityDate: apiName: LastActivityDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Date extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Activity length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastModifiedById: apiName: LastModifiedById calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Modified By ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: User nameFields: - FirstName - LastName - Name relationshipName: LastModifiedBy required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastModifiedDate: apiName: LastModifiedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Modified Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastReferencedDate: apiName: LastReferencedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Referenced Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastViewedDate: apiName: LastViewedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Viewed Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false MasterRecordId: apiName: MasterRecordId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Master Record ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Account nameFields: - Name relationshipName: MasterRecord required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false NaicsCode: apiName: NaicsCode calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: NAICS Code length: 8 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true NaicsDesc: apiName: NaicsDesc calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: NAICS Description length: 120 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Name: apiName: Name calculated: false compound: true compoundComponentName: compoundFieldName: Name controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: SwitchablePersonName filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account Name length: 255 nameField: true polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true NumberOfEmployees: apiName: NumberOfEmployees calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Int extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Employees length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true NumberofLocations__c: apiName: NumberofLocations__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: Double extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Number of Locations length: 0 nameField: false polymorphicForeignKey: false precision: 3 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true OwnerId: apiName: OwnerId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Owner ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: User nameFields: - FirstName - LastName - Name relationshipName: Owner required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Ownership: apiName: Ownership calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Ownership length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ParentId: apiName: ParentId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Parent Account ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Account nameFields: - Name relationshipName: Parent required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: true Phone: apiName: Phone calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Phone extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account Phone length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true PhotoUrl: apiName: PhotoUrl calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Url extraTypeInfo: ImageUrl filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Photo URL length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Rating: apiName: Rating calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account Rating length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SLAExpirationDate__c: apiName: SLAExpirationDate__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: Date extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SLA Expiration Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SLASerialNumber__c: apiName: SLASerialNumber__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SLA Serial Number length: 10 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SLA__c: apiName: SLA__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SLA length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ShippingAddress: apiName: ShippingAddress calculated: false compound: true compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Address extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping Address length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: false unique: false updateable: false ShippingCity: apiName: ShippingCity calculated: false compound: false compoundComponentName: City compoundFieldName: ShippingAddress controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping City length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ShippingCountry: apiName: ShippingCountry calculated: false compound: false compoundComponentName: Country compoundFieldName: ShippingAddress controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping Country length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ShippingGeocodeAccuracy: apiName: ShippingGeocodeAccuracy calculated: false compound: false compoundComponentName: GeocodeAccuracy compoundFieldName: ShippingAddress controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping Geocode Accuracy length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ShippingLatitude: apiName: ShippingLatitude calculated: false compound: false compoundComponentName: Latitude compoundFieldName: ShippingAddress controllerName: controllingFields: [] createable: true custom: false dataType: Double extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping Latitude length: 0 nameField: false polymorphicForeignKey: false precision: 18 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 15 searchPrefilterable: false sortable: true unique: false updateable: true ShippingLongitude: apiName: ShippingLongitude calculated: false compound: false compoundComponentName: Longitude compoundFieldName: ShippingAddress controllerName: controllingFields: [] createable: true custom: false dataType: Double extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping Longitude length: 0 nameField: false polymorphicForeignKey: false precision: 18 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 15 searchPrefilterable: false sortable: true unique: false updateable: true ShippingPostalCode: apiName: ShippingPostalCode calculated: false compound: false compoundComponentName: PostalCode compoundFieldName: ShippingAddress controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping Zip/Postal Code length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ShippingState: apiName: ShippingState calculated: false compound: false compoundComponentName: State compoundFieldName: ShippingAddress controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping State/Province length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ShippingStreet: apiName: ShippingStreet calculated: false compound: false compoundComponentName: Street compoundFieldName: ShippingAddress controllerName: controllingFields: [] createable: true custom: false dataType: TextArea extraTypeInfo: PlainTextArea filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping Street length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Sic: apiName: Sic calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SIC Code length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SicDesc: apiName: SicDesc calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SIC Description length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Site: apiName: Site calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account Site length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SystemModstamp: apiName: SystemModstamp calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: System Modstamp length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false TickerSymbol: apiName: TickerSymbol calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Ticker Symbol length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Tradestyle: apiName: Tradestyle calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Tradestyle length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Type: apiName: Type calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account Type length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true UpsellOpportunity__c: apiName: UpsellOpportunity__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Upsell Opportunity length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Website: apiName: Website calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Url extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Website length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true YearStarted: apiName: YearStarted calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Year Started length: 4 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true keyPrefix: '001' label: Account labelPlural: Accounts layoutable: true mruEnabled: true nameFields: - Name queryable: true recordTypeInfos: 012000000000000AAA: available: true defaultRecordTypeMapping: true master: true name: Master recordTypeId: 012000000000000AAA searchable: true themeInfo: color: '5867E8' iconUrl: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_120.png updateable: true User: apiName: User associateEntityType: associateParentEntity: childRelationships: - childObjectApiName: AcceptedEventRelation fieldName: RelationId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: AcceptedEventRelations - childObjectApiName: AccountCleanInfo fieldName: LastStatusChangedById junctionIdListNames: [] junctionReferenceTo: [] relationshipName: AccountCleanInfoReviewers - childObjectApiName: AnalyticNotification fieldName: RunAsId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: AnalyticNotificationRunAsUsers - childObjectApiName: AttachedContentDocument fieldName: LinkedEntityId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: AttachedContentDocuments - childObjectApiName: AuthorizationFormConsent fieldName: ConsentGiverId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: AuthorizationFormConsents - childObjectApiName: CollaborationGroupMember fieldName: MemberId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: GroupMemberships - childObjectApiName: CollaborationGroupMemberRequest fieldName: RequesterId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: GroupMembershipRequests - childObjectApiName: CombinedAttachment fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: CombinedAttachments - childObjectApiName: ContactCleanInfo fieldName: LastStatusChangedById junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ContactCleanInfoReviewers - childObjectApiName: ContactRequest fieldName: WhoId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ContactRequests - childObjectApiName: ContentDocumentLink fieldName: LinkedEntityId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ContentDocumentLinks - childObjectApiName: Contract fieldName: CompanySignedId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ContractsSigned - childObjectApiName: DeclinedEventRelation fieldName: RelationId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: DeclinedEventRelations - childObjectApiName: DelegatedAccount fieldName: ManagedById junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ParentId - childObjectApiName: EmailMessageRelation fieldName: RelationId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: EmailMessageRelations - childObjectApiName: EntitySubscription fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: FeedSubscriptionsForEntity - childObjectApiName: EntitySubscription fieldName: SubscriberId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: FeedSubscriptions - childObjectApiName: EventRelation fieldName: RelationId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: EventRelations - childObjectApiName: ExternalDataUserAuth fieldName: UserId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ExternalDataUserAuths - childObjectApiName: FlowOrchestrationWorkItem fieldName: RelatedRecordId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: FlowOrchestrationWorkItems - childObjectApiName: InstalledMobileApp fieldName: UserId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: InstalledMobileApps - childObjectApiName: LeadCleanInfo fieldName: LastStatusChangedById junctionIdListNames: [] junctionReferenceTo: [] relationshipName: LeadCleanInfoReviewers - childObjectApiName: NetworkActivityAudit fieldName: EntityCreatedById junctionIdListNames: [] junctionReferenceTo: [] relationshipName: EntityCreators - childObjectApiName: NetworkActivityAudit fieldName: ParentEntityId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ParentEntities - childObjectApiName: NetworkMember fieldName: MemberId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: NetworkMemberUsers - childObjectApiName: NetworkUserHistoryRecent fieldName: NetworkUserId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: NetworkUserHistoryRecentToUser - childObjectApiName: OutgoingEmailRelation fieldName: RelationId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: OutgoingEmailRelations - childObjectApiName: OwnedContentDocument fieldName: OwnerId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: OwnedContentDocuments - childObjectApiName: PermissionSetAssignment fieldName: AssigneeId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: PermissionSetAssignments - childObjectApiName: PermissionSetLicenseAssign fieldName: AssigneeId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: PermissionSetLicenseAssignments - childObjectApiName: Photo fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Photos - childObjectApiName: ProfileSkillEndorsement fieldName: UserId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: UserProfileSkillUserEndorsements - childObjectApiName: ProfileSkillUser fieldName: UserId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: UserProfileSkillChildren - childObjectApiName: RecordAction fieldName: RecordId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: RecordActions - childObjectApiName: RecordActionHistory fieldName: ParentRecordId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: RecordActionHistories - childObjectApiName: SessionPermSetActivation fieldName: UserId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: SessionPermSetActivations - childObjectApiName: Site fieldName: AdminId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: UserSites - childObjectApiName: UndecidedEventRelation fieldName: RelationId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: UndecidedEventRelations - childObjectApiName: User fieldName: DelegatedApproverId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: DelegatedUsers - childObjectApiName: User fieldName: ManagerId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ManagedUsers - childObjectApiName: UserEmailPreferredPerson fieldName: PersonRecordId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: PersonRecord - childObjectApiName: UserEntityAccess fieldName: UserId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: UserEntityAccessRights - childObjectApiName: UserFeed fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Feeds - childObjectApiName: UserFieldAccess fieldName: UserId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: UserFieldAccessRights - childObjectApiName: UserPreference fieldName: UserId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: UserPreferences - childObjectApiName: UserShare fieldName: UserId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Shares - childObjectApiName: WorkBadge fieldName: RecipientId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Badges - childObjectApiName: WorkThanks fieldName: GiverId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: GivenThanks createable: true custom: false defaultRecordTypeId: deletable: false dependentFields: {} eTag: d448e1084760248d7990ca72c7ab1ef4 feedEnabled: true fields: AboutMe: apiName: AboutMe calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: TextArea extraTypeInfo: PlainTextArea filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: About Me length: 1000 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true AccountId: apiName: AccountId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Account nameFields: - Name relationshipName: Account required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: false Address: apiName: Address calculated: false compound: true compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Address extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Address length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: false unique: false updateable: false Alias: apiName: Alias calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Alias length: 8 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true BadgeText: apiName: BadgeText calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: User Photo badge text overlay length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false BannerPhotoId: apiName: BannerPhotoId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Photo ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Photo nameFields: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false BannerPhotoUrl: apiName: BannerPhotoUrl calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Url extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Url for banner photo length: 1024 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false CallCenterId: apiName: CallCenterId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Call Center ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: CallCenter nameFields: - Name relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true City: apiName: City calculated: false compound: false compoundComponentName: City compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: City length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true CommunityNickname: apiName: CommunityNickname calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Nickname length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true CompanyName: apiName: CompanyName calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Company Name length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ContactId: apiName: ContactId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Contact ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Contact nameFields: - FirstName - LastName - Name relationshipName: Contact required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: true Country: apiName: Country calculated: false compound: false compoundComponentName: Country compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Country length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true CreatedById: apiName: CreatedById calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Created By ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: User nameFields: - FirstName - LastName - Name relationshipName: CreatedBy required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false CreatedDate: apiName: CreatedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Created Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false DefaultGroupNotificationFrequency: apiName: DefaultGroupNotificationFrequency calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Default Notification Frequency when Joining Groups length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true DelegatedApproverId: apiName: DelegatedApproverId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Delegated Approver ID length: 18 nameField: false polymorphicForeignKey: true precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Group nameFields: - Name - apiName: User nameFields: - FirstName - LastName - Name relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Department: apiName: Department calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Department length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true DigestFrequency: apiName: DigestFrequency calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Chatter Email Highlights Frequency length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Division: apiName: Division calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Division length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Email: apiName: Email calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Email extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Email length: 128 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true EmailEncodingKey: apiName: EmailEncodingKey calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Email Encoding length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true EmailPreferencesAutoBcc: apiName: EmailPreferencesAutoBcc calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: AutoBcc length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true EmailPreferencesAutoBccStayInTouch: apiName: EmailPreferencesAutoBccStayInTouch calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: AutoBccStayInTouch length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true EmailPreferencesStayInTouchReminder: apiName: EmailPreferencesStayInTouchReminder calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: StayInTouchReminder length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true EmployeeNumber: apiName: EmployeeNumber calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Employee Number length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Extension: apiName: Extension calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Phone extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Extension length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Fax: apiName: Fax calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Phone extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Fax length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true FederationIdentifier: apiName: FederationIdentifier calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SAML Federation ID length: 512 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true FirstName: apiName: FirstName calculated: false compound: false compoundComponentName: FirstName compoundFieldName: Name controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: PersonName filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: First Name length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ForecastEnabled: apiName: ForecastEnabled calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Allow Forecasting length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true FullPhotoUrl: apiName: FullPhotoUrl calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Url extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Url for full-sized Photo length: 1024 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false GeocodeAccuracy: apiName: GeocodeAccuracy calculated: false compound: false compoundComponentName: GeocodeAccuracy compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Geocode Accuracy length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Id: apiName: Id calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: User ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false IndividualId: apiName: IndividualId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Individual ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Individual nameFields: - FirstName - LastName - Name relationshipName: Individual required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: true IsActive: apiName: IsActive calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Active length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true IsExtIndicatorVisible: apiName: IsExtIndicatorVisible calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Show external indicator length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false IsPortalEnabled: apiName: IsPortalEnabled calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Is Portal Enabled length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true IsProfilePhotoActive: apiName: IsProfilePhotoActive calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Has Profile Photo length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false JigsawImportLimitOverride: apiName: JigsawImportLimitOverride calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Int extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Data.com Monthly Addition Limit length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true LanguageLocaleKey: apiName: LanguageLocaleKey calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Language length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true LastLoginDate: apiName: LastLoginDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Login length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastModifiedById: apiName: LastModifiedById calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Modified By ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: User nameFields: - FirstName - LastName - Name relationshipName: LastModifiedBy required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastModifiedDate: apiName: LastModifiedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Modified Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastName: apiName: LastName calculated: false compound: false compoundComponentName: LastName compoundFieldName: Name controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: PersonName filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Name length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true LastPasswordChangeDate: apiName: LastPasswordChangeDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Password Change or Reset length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastReferencedDate: apiName: LastReferencedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Referenced Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastViewedDate: apiName: LastViewedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Viewed Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Latitude: apiName: Latitude calculated: false compound: false compoundComponentName: Latitude compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: Double extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Latitude length: 0 nameField: false polymorphicForeignKey: false precision: 18 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 15 searchPrefilterable: false sortable: true unique: false updateable: true LocaleSidKey: apiName: LocaleSidKey calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Locale length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Longitude: apiName: Longitude calculated: false compound: false compoundComponentName: Longitude compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: Double extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Longitude length: 0 nameField: false polymorphicForeignKey: false precision: 18 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 15 searchPrefilterable: false sortable: true unique: false updateable: true ManagerId: apiName: ManagerId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Manager ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: User nameFields: - FirstName - LastName - Name relationshipName: Manager required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: true MediumBannerPhotoUrl: apiName: MediumBannerPhotoUrl calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Url extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Url for Android banner photo length: 1024 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false MediumPhotoUrl: apiName: MediumPhotoUrl calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Url extraTypeInfo: ImageUrl filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Url for medium profile photo length: 1024 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false MobilePhone: apiName: MobilePhone calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Phone extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Mobile length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Name: apiName: Name calculated: false compound: true compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: PersonName filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Full Name length: 121 nameField: true polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false NumberOfFailedLogins: apiName: NumberOfFailedLogins calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Int extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Failed Login Attempts length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false OfflinePdaTrialExpirationDate: apiName: OfflinePdaTrialExpirationDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Sales Anywhere Trial Expiration Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false OfflineTrialExpirationDate: apiName: OfflineTrialExpirationDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Offline Edition Trial Expiration Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false OutOfOfficeMessage: apiName: OutOfOfficeMessage calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Out of office message length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Phone: apiName: Phone calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Phone extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Phone length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true PortalRole: apiName: PortalRole calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Portal Role Level length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true PostalCode: apiName: PostalCode calculated: false compound: false compoundComponentName: PostalCode compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Zip/Postal Code length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ProfileId: apiName: ProfileId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Profile ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Profile nameFields: - Name relationshipName: Profile required: true scale: 0 searchPrefilterable: true sortable: true unique: false updateable: true ProfilePhotoId: apiName: ProfilePhotoId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Photo ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Photo nameFields: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false ReceivesAdminInfoEmails: apiName: ReceivesAdminInfoEmails calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Admin Info Emails length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ReceivesInfoEmails: apiName: ReceivesInfoEmails calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Info Emails length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SenderEmail: apiName: SenderEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Email extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Email Sender Address length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SenderName: apiName: SenderName calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Email Sender Name length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Signature: apiName: Signature calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: TextArea extraTypeInfo: PlainTextArea filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Email Signature length: 1333 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SmallBannerPhotoUrl: apiName: SmallBannerPhotoUrl calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Url extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Url for IOS banner photo length: 1024 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false SmallPhotoUrl: apiName: SmallPhotoUrl calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Url extraTypeInfo: ImageUrl filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Photo length: 1024 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false State: apiName: State calculated: false compound: false compoundComponentName: State compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: State/Province length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true StayInTouchNote: apiName: StayInTouchNote calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Stay-in-Touch Email Note length: 512 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true StayInTouchSignature: apiName: StayInTouchSignature calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: TextArea extraTypeInfo: PlainTextArea filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Stay-in-Touch Email Signature length: 512 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true StayInTouchSubject: apiName: StayInTouchSubject calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Stay-in-Touch Email Subject length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Street: apiName: Street calculated: false compound: false compoundComponentName: Street compoundFieldName: Address controllerName: controllingFields: [] createable: true custom: false dataType: TextArea extraTypeInfo: PlainTextArea filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Street length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SystemModstamp: apiName: SystemModstamp calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: System Modstamp length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false TimeZoneSidKey: apiName: TimeZoneSidKey calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Time Zone length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Title: apiName: Title calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Title length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true UserPermissionsCallCenterAutoLogin: apiName: UserPermissionsCallCenterAutoLogin calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Auto-login To Call Center length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPermissionsInteractionUser: apiName: UserPermissionsInteractionUser calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Flow User length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPermissionsJigsawProspectingUser: apiName: UserPermissionsJigsawProspectingUser calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Data.com User length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPermissionsKnowledgeUser: apiName: UserPermissionsKnowledgeUser calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Knowledge User length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPermissionsMarketingUser: apiName: UserPermissionsMarketingUser calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Marketing User length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPermissionsOfflineUser: apiName: UserPermissionsOfflineUser calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Offline User length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPermissionsSFContentUser: apiName: UserPermissionsSFContentUser calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Salesforce CRM Content User length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPermissionsSiteforceContributorUser: apiName: UserPermissionsSiteforceContributorUser calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Site.com Contributor User length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPermissionsSiteforcePublisherUser: apiName: UserPermissionsSiteforcePublisherUser calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Site.com Publisher User length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPermissionsSupportUser: apiName: UserPermissionsSupportUser calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Service Cloud User length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPermissionsWorkDotComUserFeature: apiName: UserPermissionsWorkDotComUserFeature calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: WDC User length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesActivityRemindersPopup: apiName: UserPreferencesActivityRemindersPopup calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ActivityRemindersPopup length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesApexPagesDeveloperMode: apiName: UserPreferencesApexPagesDeveloperMode calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ApexPagesDeveloperMode length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesCacheDiagnostics: apiName: UserPreferencesCacheDiagnostics calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: CacheDiagnostics length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesContentEmailAsAndWhen: apiName: UserPreferencesContentEmailAsAndWhen calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ContentEmailAsAndWhen length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesContentNoEmail: apiName: UserPreferencesContentNoEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ContentNoEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesCreateLEXAppsWTShown: apiName: UserPreferencesCreateLEXAppsWTShown calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: CreateLEXAppsWTShown length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDedupeStorageMigrationComplete: apiName: UserPreferencesDedupeStorageMigrationComplete calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DedupeStorageMigrationComplete length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisCommentAfterLikeEmail: apiName: UserPreferencesDisCommentAfterLikeEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisCommentAfterLikeEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisMentionsCommentEmail: apiName: UserPreferencesDisMentionsCommentEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisMentionsCommentEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisProfPostCommentEmail: apiName: UserPreferencesDisProfPostCommentEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisProfPostCommentEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableAllFeedsEmail: apiName: UserPreferencesDisableAllFeedsEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableAllFeedsEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableBookmarkEmail: apiName: UserPreferencesDisableBookmarkEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableBookmarkEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableChangeCommentEmail: apiName: UserPreferencesDisableChangeCommentEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableChangeCommentEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableEndorsementEmail: apiName: UserPreferencesDisableEndorsementEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableEndorsementEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableFileShareNotificationsForApi: apiName: UserPreferencesDisableFileShareNotificationsForApi calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableFileShareNotificationsForApi length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableFollowersEmail: apiName: UserPreferencesDisableFollowersEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableFollowersEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableLaterCommentEmail: apiName: UserPreferencesDisableLaterCommentEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableLaterCommentEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableLikeEmail: apiName: UserPreferencesDisableLikeEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableLikeEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableMentionsPostEmail: apiName: UserPreferencesDisableMentionsPostEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableMentionsPostEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableMessageEmail: apiName: UserPreferencesDisableMessageEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableMessageEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableProfilePostEmail: apiName: UserPreferencesDisableProfilePostEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableProfilePostEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesDisableSharePostEmail: apiName: UserPreferencesDisableSharePostEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: DisableSharePostEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesEnableAutoSubForFeeds: apiName: UserPreferencesEnableAutoSubForFeeds calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: EnableAutoSubForFeeds length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesEventRemindersCheckboxDefault: apiName: UserPreferencesEventRemindersCheckboxDefault calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: EventRemindersCheckboxDefault length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesExcludeMailAppAttachments: apiName: UserPreferencesExcludeMailAppAttachments calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ExcludeMailAppAttachments length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesFavoritesShowTopFavorites: apiName: UserPreferencesFavoritesShowTopFavorites calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: FavoritesShowTopFavorites length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesFavoritesWTShown: apiName: UserPreferencesFavoritesWTShown calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: FavoritesWTShown length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesFirstTimeInLightning: apiName: UserPreferencesFirstTimeInLightning calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: FirstTimeInLightning length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesGlobalNavBarWTShown: apiName: UserPreferencesGlobalNavBarWTShown calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: GlobalNavBarWTShown length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesGlobalNavGridMenuWTShown: apiName: UserPreferencesGlobalNavGridMenuWTShown calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: GlobalNavGridMenuWTShown length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHasCelebrationBadge: apiName: UserPreferencesHasCelebrationBadge calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HasCelebrationBadge length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHasSentWarningEmail: apiName: UserPreferencesHasSentWarningEmail calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HasSentWarningEmail length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHasSentWarningEmail238: apiName: UserPreferencesHasSentWarningEmail238 calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HasSentWarningEmail238 length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHasSentWarningEmail240: apiName: UserPreferencesHasSentWarningEmail240 calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HasSentWarningEmail240 length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHeavyPagePromptEnabled: apiName: UserPreferencesHeavyPagePromptEnabled calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HeavyPagePromptEnabled length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideBiggerPhotoCallout: apiName: UserPreferencesHideBiggerPhotoCallout calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideBiggerPhotoCallout length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideCSNDesktopTask: apiName: UserPreferencesHideCSNDesktopTask calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideCSNDesktopTask length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideCSNGetChatterMobileTask: apiName: UserPreferencesHideCSNGetChatterMobileTask calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideCSNGetChatterMobileTask length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideChatterOnboardingSplash: apiName: UserPreferencesHideChatterOnboardingSplash calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideChatterOnboardingSplash length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideEndUserOnboardingAssistantModal: apiName: UserPreferencesHideEndUserOnboardingAssistantModal calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideEndUserOnboardingAssistantModal length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideEventCalendar: apiName: UserPreferencesHideEventCalendar calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideEventCalendar length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideLearningPathModal: apiName: UserPreferencesHideLearningPathModal calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideLearningPathModal length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideLightningMigrationModal: apiName: UserPreferencesHideLightningMigrationModal calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideLightningMigrationModal length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideMailAppEAPUserGuidance: apiName: UserPreferencesHideMailAppEAPUserGuidance calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideMailAppEAPUserGuidance length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideMailAppWelcomeMat: apiName: UserPreferencesHideMailAppWelcomeMat calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideMailAppWelcomeMat length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideS1BrowserUI: apiName: UserPreferencesHideS1BrowserUI calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideS1BrowserUI length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideSecondChatterOnboardingSplash: apiName: UserPreferencesHideSecondChatterOnboardingSplash calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideSecondChatterOnboardingSplash length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideSfxWelcomeMat: apiName: UserPreferencesHideSfxWelcomeMat calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideSfxWelcomeMat length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideTaskListViewsPopover: apiName: UserPreferencesHideTaskListViewsPopover calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideTaskListViewsPopover length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideTrialsCelebration: apiName: UserPreferencesHideTrialsCelebration calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideTrialsCelebration length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesHideTrialsWelcomeMat: apiName: UserPreferencesHideTrialsWelcomeMat calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: HideTrialsWelcomeMat length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesJigsawListUser: apiName: UserPreferencesJigsawListUser calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: JigsawListUser length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesLightningExperiencePreferred: apiName: UserPreferencesLightningExperiencePreferred calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: LightningExperiencePreferred length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesLtngPromoReserved10UserPref: apiName: UserPreferencesLtngPromoReserved10UserPref calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: LtngPromoReserved10UserPref length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesLtngPromoReserved16UserPref: apiName: UserPreferencesLtngPromoReserved16UserPref calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: LtngPromoReserved16UserPref length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesLtngPromoReserved19UserPref: apiName: UserPreferencesLtngPromoReserved19UserPref calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: LtngPromoReserved19UserPref length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesNativeEmailClient: apiName: UserPreferencesNativeEmailClient calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: NativeEmailClient length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesNewLightningReportRunPageEnabled: apiName: UserPreferencesNewLightningReportRunPageEnabled calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: NewLightningReportRunPageEnabled length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesPathAssistantCollapsed: apiName: UserPreferencesPathAssistantCollapsed calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: PathAssistantCollapsed length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesPreviewCustomTheme: apiName: UserPreferencesPreviewCustomTheme calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: PreviewCustomTheme length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesPreviewLightning: apiName: UserPreferencesPreviewLightning calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: PreviewLightning length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesReadReceiptLastToggleValue: apiName: UserPreferencesReadReceiptLastToggleValue calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ReadReceiptLastToggleValue length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesReceiveNoNotificationsAsApprover: apiName: UserPreferencesReceiveNoNotificationsAsApprover calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ReceiveNoNotificationsAsApprover length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesReceiveNotificationsAsDelegatedApprover: apiName: UserPreferencesReceiveNotificationsAsDelegatedApprover calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ReceiveNotificationsAsDelegatedApprover length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesRecordHomeReservedWTShown: apiName: UserPreferencesRecordHomeReservedWTShown calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: RecordHomeReservedWTShown length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesRecordHomeSectionCollapseWTShown: apiName: UserPreferencesRecordHomeSectionCollapseWTShown calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: RecordHomeSectionCollapseWTShown length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesReminderSoundOff: apiName: UserPreferencesReminderSoundOff calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ReminderSoundOff length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesReverseOpenActivitiesView: apiName: UserPreferencesReverseOpenActivitiesView calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ReverseOpenActivitiesView length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesSRHOverrideActivities: apiName: UserPreferencesSRHOverrideActivities calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SRHOverrideActivities length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesSalesEssentialsSetupAssistantCompleted: apiName: UserPreferencesSalesEssentialsSetupAssistantCompleted calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SalesEssentialsSetupAssistantCompleted length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesSetupAssistantUserPref1: apiName: UserPreferencesSetupAssistantUserPref1 calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SetupAssistantUserPref1 length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowCityToExternalUsers: apiName: UserPreferencesShowCityToExternalUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowCityToExternalUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowCityToGuestUsers: apiName: UserPreferencesShowCityToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowCityToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowCountryToExternalUsers: apiName: UserPreferencesShowCountryToExternalUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowCountryToExternalUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowCountryToGuestUsers: apiName: UserPreferencesShowCountryToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowCountryToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowEmailToExternalUsers: apiName: UserPreferencesShowEmailToExternalUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowEmailToExternalUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowEmailToGuestUsers: apiName: UserPreferencesShowEmailToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowEmailToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowFaxToExternalUsers: apiName: UserPreferencesShowFaxToExternalUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowFaxToExternalUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowFaxToGuestUsers: apiName: UserPreferencesShowFaxToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowFaxToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowForecastingChangeSignals: apiName: UserPreferencesShowForecastingChangeSignals calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowForecastingChangeSignals length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowManagerToExternalUsers: apiName: UserPreferencesShowManagerToExternalUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowManagerToExternalUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowManagerToGuestUsers: apiName: UserPreferencesShowManagerToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowManagerToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowMobilePhoneToExternalUsers: apiName: UserPreferencesShowMobilePhoneToExternalUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowMobilePhoneToExternalUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowMobilePhoneToGuestUsers: apiName: UserPreferencesShowMobilePhoneToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowMobilePhoneToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowPostalCodeToExternalUsers: apiName: UserPreferencesShowPostalCodeToExternalUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowPostalCodeToExternalUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowPostalCodeToGuestUsers: apiName: UserPreferencesShowPostalCodeToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowPostalCodeToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowProfilePicToGuestUsers: apiName: UserPreferencesShowProfilePicToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowProfilePicToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowStateToExternalUsers: apiName: UserPreferencesShowStateToExternalUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowStateToExternalUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowStateToGuestUsers: apiName: UserPreferencesShowStateToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowStateToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowStreetAddressToExternalUsers: apiName: UserPreferencesShowStreetAddressToExternalUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowStreetAddressToExternalUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowStreetAddressToGuestUsers: apiName: UserPreferencesShowStreetAddressToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowStreetAddressToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowTitleToExternalUsers: apiName: UserPreferencesShowTitleToExternalUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowTitleToExternalUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowTitleToGuestUsers: apiName: UserPreferencesShowTitleToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowTitleToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowWorkPhoneToExternalUsers: apiName: UserPreferencesShowWorkPhoneToExternalUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowWorkPhoneToExternalUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesShowWorkPhoneToGuestUsers: apiName: UserPreferencesShowWorkPhoneToGuestUsers calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: ShowWorkPhoneToGuestUsers length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesSortFeedByComment: apiName: UserPreferencesSortFeedByComment calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SortFeedByComment length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesSuppressEventSFXReminders: apiName: UserPreferencesSuppressEventSFXReminders calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SuppressEventSFXReminders length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesSuppressTaskSFXReminders: apiName: UserPreferencesSuppressTaskSFXReminders calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SuppressTaskSFXReminders length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesTaskRemindersCheckboxDefault: apiName: UserPreferencesTaskRemindersCheckboxDefault calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: TaskRemindersCheckboxDefault length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesTodayGettingStarted: apiName: UserPreferencesTodayGettingStarted calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: TodayGettingStarted length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesTrailheadBadgeCreated: apiName: UserPreferencesTrailheadBadgeCreated calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: TrailheadBadgeCreated length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserPreferencesUserDebugModePref: apiName: UserPreferencesUserDebugModePref calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: UserDebugModePref length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true UserRoleId: apiName: UserRoleId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Role ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: UserRole nameFields: - Name relationshipName: UserRole required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: true UserType: apiName: UserType calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: User Type length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Username: apiName: Username calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Username length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true keyPrefix: '005' label: User labelPlural: People layoutable: true mruEnabled: true nameFields: - FirstName - LastName - Name queryable: true recordTypeInfos: {} searchable: true themeInfo: color: 1B96FF iconUrl: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/t4v35/standard/user_120.png updateable: true Account13: title: Account13 required: - apiName - associateEntityType - associateParentEntity - childRelationships - createable - custom - defaultRecordTypeId - deletable - dependentFields - eTag - feedEnabled - fields - keyPrefix - label - labelPlural - layoutable - mruEnabled - nameFields - queryable - recordTypeInfos - searchable - themeInfo - updateable type: object properties: apiName: type: string example: example_value associateEntityType: type: - string - 'null' example: example_value associateParentEntity: type: - string - 'null' example: example_value childRelationships: type: array items: $ref: '#/components/schemas/ChildRelationship2' description: '' example: [] createable: type: boolean example: true custom: type: boolean example: true defaultRecordTypeId: type: string example: '500123' deletable: type: boolean example: true dependentFields: type: object example: example_value eTag: type: string example: example_value feedEnabled: type: boolean example: true fields: $ref: '#/components/schemas/Fields15' keyPrefix: type: string example: example_value label: type: string example: Example Title labelPlural: type: string example: example_value layoutable: type: boolean example: true mruEnabled: type: boolean example: true nameFields: type: array items: type: string description: '' example: [] queryable: type: boolean example: true recordTypeInfos: $ref: '#/components/schemas/RecordTypeInfos' searchable: type: boolean example: true themeInfo: $ref: '#/components/schemas/ThemeInfo' updateable: type: boolean example: true examples: - apiName: Account associateEntityType: associateParentEntity: childRelationships: - childObjectApiName: Account fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ChildAccounts - childObjectApiName: AccountBrand fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: AccountBrands - childObjectApiName: AccountCleanInfo fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: AccountCleanInfos - childObjectApiName: AccountContactRole fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: AccountContactRoles - childObjectApiName: AccountFeed fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Feeds - childObjectApiName: AccountHistory fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Histories - childObjectApiName: AccountPartner fieldName: AccountFromId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: AccountPartnersFrom - childObjectApiName: AccountPartner fieldName: AccountToId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: AccountPartnersTo - childObjectApiName: AccountShare fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Shares - childObjectApiName: ActivityHistory fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ActivityHistories - childObjectApiName: Asset fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Assets - childObjectApiName: Asset fieldName: AssetProvidedById junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ProvidedAssets - childObjectApiName: Asset fieldName: AssetServicedById junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ServicedAssets - childObjectApiName: AttachedContentDocument fieldName: LinkedEntityId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: AttachedContentDocuments - childObjectApiName: Attachment fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Attachments - childObjectApiName: AuthorizationFormConsent fieldName: ConsentGiverId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: AuthorizationFormConsents - childObjectApiName: AuthorizationFormConsent fieldName: RelatedRecordId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: RelatedAuthorizationFormConsents - childObjectApiName: Case fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Cases - childObjectApiName: ChannelProgramMember fieldName: PartnerId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ChannelProgramMembers - childObjectApiName: CleanInfo fieldName: TargetEntityId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: CleanInfos - childObjectApiName: CollaborationGroupRecord fieldName: RecordId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: RecordAssociatedGroups - childObjectApiName: CombinedAttachment fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: CombinedAttachments - childObjectApiName: Contact fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Contacts - childObjectApiName: ContactRequest fieldName: WhatId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ContactRequests - childObjectApiName: ContentDocumentLink fieldName: LinkedEntityId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ContentDocumentLinks - childObjectApiName: Contract fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Contracts - childObjectApiName: DelegatedAccount fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: DelegatedAccounts - childObjectApiName: DelegatedAccount fieldName: TargetId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ManagedAccount - childObjectApiName: DuplicateRecordItem fieldName: RecordId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: DuplicateRecordItems - childObjectApiName: EmailMessage fieldName: RelatedToId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Emails - childObjectApiName: EntitySubscription fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: FeedSubscriptionsForEntity - childObjectApiName: Event fieldName: WhatId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Events - childObjectApiName: FlowOrchestrationWorkItem fieldName: RelatedRecordId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: FlowOrchestrationWorkItems - childObjectApiName: NetworkActivityAudit fieldName: ParentEntityId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ParentEntities - childObjectApiName: Note fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Notes - childObjectApiName: NoteAndAttachment fieldName: ParentId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: NotesAndAttachments - childObjectApiName: OpenActivity fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: OpenActivities - childObjectApiName: Opportunity fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Opportunities - childObjectApiName: OpportunityPartner fieldName: AccountToId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: OpportunityPartnersTo - childObjectApiName: Order fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Orders - childObjectApiName: Partner fieldName: AccountFromId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: PartnersFrom - childObjectApiName: Partner fieldName: AccountToId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: PartnersTo - childObjectApiName: PartnerFundAllocation fieldName: ChannelPartnerId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: PartnerFundAllocations - childObjectApiName: PartnerFundClaim fieldName: ChannelPartnerId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: PartnerFundClaims - childObjectApiName: PartnerFundRequest fieldName: ChannelPartnerId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: PartnerFundRequests - childObjectApiName: PartnerMarketingBudget fieldName: ChannelPartnerId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: PartnerMarketingBudgets - childObjectApiName: ProcessInstance fieldName: TargetObjectId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ProcessInstances - childObjectApiName: ProcessInstanceHistory fieldName: TargetObjectId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ProcessSteps - childObjectApiName: RecordAction fieldName: RecordId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: RecordActions - childObjectApiName: RecordActionHistory fieldName: ParentRecordId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: RecordActionHistories - childObjectApiName: ScorecardAssociation fieldName: TargetEntityId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: ScorecardAssociations - childObjectApiName: Task fieldName: WhatId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Tasks - childObjectApiName: TopicAssignment fieldName: EntityId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: TopicAssignments - childObjectApiName: User fieldName: AccountId junctionIdListNames: [] junctionReferenceTo: [] relationshipName: Users createable: true custom: false defaultRecordTypeId: 012000000000000AAA deletable: true dependentFields: {} eTag: 7b786e93cc2b9142accd7a29facc2474 feedEnabled: true fields: AccountNumber: apiName: AccountNumber calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account Number length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true AccountSource: apiName: AccountSource calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account Source length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Active__c: apiName: Active__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Active length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true AnnualRevenue: apiName: AnnualRevenue calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Currency extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Annual Revenue length: 0 nameField: false polymorphicForeignKey: false precision: 18 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true BillingAddress: apiName: BillingAddress calculated: false compound: true compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Address extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing Address length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: false unique: false updateable: false BillingCity: apiName: BillingCity calculated: false compound: false compoundComponentName: City compoundFieldName: BillingAddress controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing City length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true BillingCountry: apiName: BillingCountry calculated: false compound: false compoundComponentName: Country compoundFieldName: BillingAddress controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing Country length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true BillingGeocodeAccuracy: apiName: BillingGeocodeAccuracy calculated: false compound: false compoundComponentName: GeocodeAccuracy compoundFieldName: BillingAddress controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing Geocode Accuracy length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true BillingLatitude: apiName: BillingLatitude calculated: false compound: false compoundComponentName: Latitude compoundFieldName: BillingAddress controllerName: controllingFields: [] createable: true custom: false dataType: Double extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing Latitude length: 0 nameField: false polymorphicForeignKey: false precision: 18 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 15 searchPrefilterable: false sortable: true unique: false updateable: true BillingLongitude: apiName: BillingLongitude calculated: false compound: false compoundComponentName: Longitude compoundFieldName: BillingAddress controllerName: controllingFields: [] createable: true custom: false dataType: Double extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing Longitude length: 0 nameField: false polymorphicForeignKey: false precision: 18 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 15 searchPrefilterable: false sortable: true unique: false updateable: true BillingPostalCode: apiName: BillingPostalCode calculated: false compound: false compoundComponentName: PostalCode compoundFieldName: BillingAddress controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing Zip/Postal Code length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true BillingState: apiName: BillingState calculated: false compound: false compoundComponentName: State compoundFieldName: BillingAddress controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing State/Province length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true BillingStreet: apiName: BillingStreet calculated: false compound: false compoundComponentName: Street compoundFieldName: BillingAddress controllerName: controllingFields: [] createable: true custom: false dataType: TextArea extraTypeInfo: PlainTextArea filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Billing Street length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ChannelProgramLevelName: apiName: ChannelProgramLevelName calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: false filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Channel Program Level Name length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: false unique: false updateable: false ChannelProgramName: apiName: ChannelProgramName calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: false filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Channel Program Name length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: false unique: false updateable: false CleanStatus: apiName: CleanStatus calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Clean Status length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true CloneSourceId: apiName: CloneSourceId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Clone Source length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false CreatedById: apiName: CreatedById calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Created By ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: User nameFields: - FirstName - LastName - Name relationshipName: CreatedBy required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false CreatedDate: apiName: CreatedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Created Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false CustomerPriority__c: apiName: CustomerPriority__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Customer Priority length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true DandbCompanyId: apiName: DandbCompanyId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: D&B Company ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: DandBCompany nameFields: - Name relationshipName: DandbCompany required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: true Description: apiName: Description calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: TextArea extraTypeInfo: PlainTextArea filterable: false filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account Description length: 32000 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: false unique: false updateable: true DunsNumber: apiName: DunsNumber calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: D-U-N-S Number length: 9 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Fax: apiName: Fax calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Phone extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account Fax length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Id: apiName: Id calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Industry: apiName: Industry calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Industry length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true IsCustomerPortal: apiName: IsCustomerPortal calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Customer Portal Account length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true IsDeleted: apiName: IsDeleted calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Deleted length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false IsPartner: apiName: IsPartner calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Boolean extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Partner Account length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Jigsaw: apiName: Jigsaw calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Data.com Key length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true JigsawCompanyId: apiName: JigsawCompanyId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Jigsaw Company ID length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: JigsawCompany required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastActivityDate: apiName: LastActivityDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Date extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Activity length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastModifiedById: apiName: LastModifiedById calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Modified By ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: User nameFields: - FirstName - LastName - Name relationshipName: LastModifiedBy required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastModifiedDate: apiName: LastModifiedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Modified Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastReferencedDate: apiName: LastReferencedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Referenced Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false LastViewedDate: apiName: LastViewedDate calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Last Viewed Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false MasterRecordId: apiName: MasterRecordId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Master Record ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Account nameFields: - Name relationshipName: MasterRecord required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false NaicsCode: apiName: NaicsCode calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: NAICS Code length: 8 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true NaicsDesc: apiName: NaicsDesc calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: NAICS Description length: 120 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Name: apiName: Name calculated: false compound: true compoundComponentName: compoundFieldName: Name controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: SwitchablePersonName filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account Name length: 255 nameField: true polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true NumberOfEmployees: apiName: NumberOfEmployees calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Int extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Employees length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true NumberofLocations__c: apiName: NumberofLocations__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: Double extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Number of Locations length: 0 nameField: false polymorphicForeignKey: false precision: 3 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true OwnerId: apiName: OwnerId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Owner ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: User nameFields: - FirstName - LastName - Name relationshipName: Owner required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Ownership: apiName: Ownership calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Ownership length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ParentId: apiName: ParentId calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Reference extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Parent Account ID length: 18 nameField: false polymorphicForeignKey: false precision: 0 reference: true referenceTargetField: referenceToInfos: - apiName: Account nameFields: - Name relationshipName: Parent required: false scale: 0 searchPrefilterable: true sortable: true unique: false updateable: true Phone: apiName: Phone calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Phone extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account Phone length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true PhotoUrl: apiName: PhotoUrl calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Url extraTypeInfo: ImageUrl filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Photo URL length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false Rating: apiName: Rating calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account Rating length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SLAExpirationDate__c: apiName: SLAExpirationDate__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: Date extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SLA Expiration Date length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SLASerialNumber__c: apiName: SLASerialNumber__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SLA Serial Number length: 10 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SLA__c: apiName: SLA__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SLA length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ShippingAddress: apiName: ShippingAddress calculated: false compound: true compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: Address extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping Address length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: false unique: false updateable: false ShippingCity: apiName: ShippingCity calculated: false compound: false compoundComponentName: City compoundFieldName: ShippingAddress controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping City length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ShippingCountry: apiName: ShippingCountry calculated: false compound: false compoundComponentName: Country compoundFieldName: ShippingAddress controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping Country length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ShippingGeocodeAccuracy: apiName: ShippingGeocodeAccuracy calculated: false compound: false compoundComponentName: GeocodeAccuracy compoundFieldName: ShippingAddress controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping Geocode Accuracy length: 40 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ShippingLatitude: apiName: ShippingLatitude calculated: false compound: false compoundComponentName: Latitude compoundFieldName: ShippingAddress controllerName: controllingFields: [] createable: true custom: false dataType: Double extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping Latitude length: 0 nameField: false polymorphicForeignKey: false precision: 18 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 15 searchPrefilterable: false sortable: true unique: false updateable: true ShippingLongitude: apiName: ShippingLongitude calculated: false compound: false compoundComponentName: Longitude compoundFieldName: ShippingAddress controllerName: controllingFields: [] createable: true custom: false dataType: Double extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping Longitude length: 0 nameField: false polymorphicForeignKey: false precision: 18 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 15 searchPrefilterable: false sortable: true unique: false updateable: true ShippingPostalCode: apiName: ShippingPostalCode calculated: false compound: false compoundComponentName: PostalCode compoundFieldName: ShippingAddress controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping Zip/Postal Code length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ShippingState: apiName: ShippingState calculated: false compound: false compoundComponentName: State compoundFieldName: ShippingAddress controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping State/Province length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true ShippingStreet: apiName: ShippingStreet calculated: false compound: false compoundComponentName: Street compoundFieldName: ShippingAddress controllerName: controllingFields: [] createable: true custom: false dataType: TextArea extraTypeInfo: PlainTextArea filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Shipping Street length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Sic: apiName: Sic calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SIC Code length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SicDesc: apiName: SicDesc calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: SIC Description length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Site: apiName: Site calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account Site length: 80 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true SystemModstamp: apiName: SystemModstamp calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: false custom: false dataType: DateTime extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: System Modstamp length: 0 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: true scale: 0 searchPrefilterable: false sortable: true unique: false updateable: false TickerSymbol: apiName: TickerSymbol calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Ticker Symbol length: 20 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Tradestyle: apiName: Tradestyle calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Tradestyle length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Type: apiName: Type calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Account Type length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true UpsellOpportunity__c: apiName: UpsellOpportunity__c calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: true dataType: Picklist extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Upsell Opportunity length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true Website: apiName: Website calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: Url extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Website length: 255 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true YearStarted: apiName: YearStarted calculated: false compound: false compoundComponentName: compoundFieldName: controllerName: controllingFields: [] createable: true custom: false dataType: String extraTypeInfo: filterable: true filteredLookupInfo: highScaleNumber: false htmlFormatted: false inlineHelpText: label: Year Started length: 4 nameField: false polymorphicForeignKey: false precision: 0 reference: false referenceTargetField: referenceToInfos: [] relationshipName: required: false scale: 0 searchPrefilterable: false sortable: true unique: false updateable: true keyPrefix: '001' label: Account labelPlural: Accounts layoutable: true mruEnabled: true nameFields: - Name queryable: true recordTypeInfos: 012000000000000AAA: available: true defaultRecordTypeMapping: true master: true name: Master recordTypeId: 012000000000000AAA searchable: true themeInfo: color: '5867E8' iconUrl: >- https://nto-df17-demo-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_120.png updateable: true Record27: title: Record27 required: - apiName - childRelationships - eTag - fields - id - lastModifiedById - lastModifiedDate - recordTypeId - recordTypeInfo - systemModstamp - weakEtag type: object properties: apiName: type: string example: example_value childRelationships: type: object example: example_value eTag: type: string example: example_value fields: $ref: '#/components/schemas/Fields27' id: type: - string - 'null' example: abc123 lastModifiedById: type: - string - 'null' example: '500123' lastModifiedDate: type: - string - 'null' example: example_value recordTypeId: type: string example: '500123' recordTypeInfo: type: - string - 'null' example: example_value systemModstamp: type: - string - 'null' example: example_value weakEtag: type: integer contentEncoding: int32 example: 10 examples: - apiName: Account childRelationships: {} eTag: 5facf9dfb1b0feae1ee6b348b8b5f942 fields: AccountNumber: displayValue: value: CC634267 Active__c: displayValue: 'Yes' value: 'Yes' AnnualRevenue: displayValue: $50,000,000 value: 50000000 BillingCity: displayValue: value: Lawrence BillingCountry: displayValue: value: USA BillingPostalCode: displayValue: value: '66045' BillingState: displayValue: value: KS BillingStreet: displayValue: value: 1301 Hoch Drive CloneSourceId: displayValue: value: 001B000000UnQ2yIAF CustomerPriority__c: displayValue: Low value: Low Description: displayValue: value: Fax: displayValue: value: (785) 241-6201 Industry: displayValue: Consulting value: Consulting Name: displayValue: value: Dickenson plc NumberOfEmployees: displayValue: value: 120 NumberofLocations__c: displayValue: value: 2 Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: e8465cd0d7506b4905dc7e11f6b8ab50 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: lastModifiedDate: recordTypeId: recordTypeInfo: systemModstamp: weakEtag: 0 OwnerId: displayValue: value: 005B0000003TOI6IAO Ownership: displayValue: Private value: Private Parent: displayValue: value: ParentId: displayValue: value: Phone: displayValue: value: (785) 241-6200 Rating: displayValue: value: SLAExpirationDate__c: displayValue: 15/03/2017 value: '2017-03-15T00:00:00.000Z' SLASerialNumber__c: displayValue: value: '7425' SLA__c: displayValue: Bronze value: Bronze ShippingCity: displayValue: value: Lawrence ShippingCountry: displayValue: value: USA ShippingPostalCode: displayValue: value: '66045' ShippingState: displayValue: value: KS ShippingStreet: displayValue: value: 1301 Hoch Drive Sic: displayValue: value: '6752' Site: displayValue: value: TickerSymbol: displayValue: value: Type: displayValue: Customer - Channel value: Customer - Channel UpsellOpportunity__c: displayValue: 'No' value: 'No' Website: displayValue: value: dickenson-consulting.com id: lastModifiedById: lastModifiedDate: recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: weakEtag: 0 Fields27: title: Fields27 required: - AccountNumber - Active__c - AnnualRevenue - BillingCity - BillingCountry - BillingPostalCode - BillingState - BillingStreet - CloneSourceId - CustomerPriority__c - Description - Fax - Industry - Name - NumberOfEmployees - NumberofLocations__c - Owner - OwnerId - Ownership - Parent - ParentId - Phone - Rating - SLAExpirationDate__c - SLASerialNumber__c - SLA__c - ShippingCity - ShippingCountry - ShippingPostalCode - ShippingState - ShippingStreet - Sic - Site - TickerSymbol - Type - UpsellOpportunity__c - Website type: object properties: AccountNumber: $ref: '#/components/schemas/AccountNumber4' Active__c: $ref: '#/components/schemas/ActiveC4' AnnualRevenue: $ref: '#/components/schemas/AnnualRevenue2' BillingCity: $ref: '#/components/schemas/BillingCity2' BillingCountry: $ref: '#/components/schemas/BillingCountry2' BillingPostalCode: $ref: '#/components/schemas/BillingPostalCode2' BillingState: $ref: '#/components/schemas/BillingState2' BillingStreet: $ref: '#/components/schemas/BillingStreet2' CloneSourceId: $ref: '#/components/schemas/CloneSourceId3' CustomerPriority__c: $ref: '#/components/schemas/CustomerPriorityC4' Description: $ref: '#/components/schemas/Description6' Fax: $ref: '#/components/schemas/Fax4' Industry: $ref: '#/components/schemas/Industry2' Name: $ref: '#/components/schemas/Name21' NumberOfEmployees: $ref: '#/components/schemas/NumberOfEmployees7' NumberofLocations__c: $ref: '#/components/schemas/NumberofLocationsC2' Owner: $ref: '#/components/schemas/Owner4' OwnerId: $ref: '#/components/schemas/OwnerId4' Ownership: $ref: '#/components/schemas/Ownership4' Parent: $ref: '#/components/schemas/Parent7' ParentId: $ref: '#/components/schemas/ParentId2' Phone: $ref: '#/components/schemas/Phone5' Rating: $ref: '#/components/schemas/Rating3' SLAExpirationDate__c: $ref: '#/components/schemas/SLAExpirationDateC4' SLASerialNumber__c: $ref: '#/components/schemas/SLASerialNumberC4' SLA__c: $ref: '#/components/schemas/SLAC4' ShippingCity: $ref: '#/components/schemas/ShippingCity4' ShippingCountry: $ref: '#/components/schemas/ShippingCountry4' ShippingPostalCode: $ref: '#/components/schemas/ShippingPostalCode4' ShippingState: $ref: '#/components/schemas/ShippingState4' ShippingStreet: $ref: '#/components/schemas/ShippingStreet4' Sic: $ref: '#/components/schemas/Sic4' Site: $ref: '#/components/schemas/Site2' TickerSymbol: $ref: '#/components/schemas/TickerSymbol2' Type: $ref: '#/components/schemas/Type10' UpsellOpportunity__c: $ref: '#/components/schemas/UpsellOpportunityC4' Website: $ref: '#/components/schemas/Website5' examples: - AccountNumber: displayValue: value: CC634267 Active__c: displayValue: 'Yes' value: 'Yes' AnnualRevenue: displayValue: $50,000,000 value: 50000000 BillingCity: displayValue: value: Lawrence BillingCountry: displayValue: value: USA BillingPostalCode: displayValue: value: '66045' BillingState: displayValue: value: KS BillingStreet: displayValue: value: 1301 Hoch Drive CloneSourceId: displayValue: value: 001B000000UnQ2yIAF CustomerPriority__c: displayValue: Low value: Low Description: displayValue: value: Fax: displayValue: value: (785) 241-6201 Industry: displayValue: Consulting value: Consulting Name: displayValue: value: Dickenson plc NumberOfEmployees: displayValue: value: 120 NumberofLocations__c: displayValue: value: 2 Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: e8465cd0d7506b4905dc7e11f6b8ab50 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: lastModifiedDate: recordTypeId: recordTypeInfo: systemModstamp: weakEtag: 0 OwnerId: displayValue: value: 005B0000003TOI6IAO Ownership: displayValue: Private value: Private Parent: displayValue: value: ParentId: displayValue: value: Phone: displayValue: value: (785) 241-6200 Rating: displayValue: value: SLAExpirationDate__c: displayValue: 15/03/2017 value: '2017-03-15T00:00:00.000Z' SLASerialNumber__c: displayValue: value: '7425' SLA__c: displayValue: Bronze value: Bronze ShippingCity: displayValue: value: Lawrence ShippingCountry: displayValue: value: USA ShippingPostalCode: displayValue: value: '66045' ShippingState: displayValue: value: KS ShippingStreet: displayValue: value: 1301 Hoch Drive Sic: displayValue: value: '6752' Site: displayValue: value: TickerSymbol: displayValue: value: Type: displayValue: Customer - Channel value: Customer - Channel UpsellOpportunity__c: displayValue: 'No' value: 'No' Website: displayValue: value: dickenson-consulting.com AccountNumber4: title: AccountNumber4 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: string example: example_value examples: - displayValue: value: CC634267 ActiveC4: title: ActiveC4 required: - displayValue - value type: object properties: displayValue: type: string example: example_value value: type: string example: example_value examples: - displayValue: 'Yes' value: 'Yes' CloneSourceId3: title: CloneSourceId3 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: string example: example_value examples: - displayValue: value: 001B000000UnQ2yIAF CustomerPriorityC4: title: CustomerPriorityC4 required: - displayValue - value type: object properties: displayValue: type: string example: example_value value: type: string example: example_value examples: - displayValue: Low value: Low NumberOfEmployees7: title: NumberOfEmployees7 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: integer contentEncoding: int32 example: 10 examples: - displayValue: value: 120 Ownership4: title: Ownership4 required: - displayValue - value type: object properties: displayValue: type: string example: example_value value: type: string example: example_value examples: - displayValue: Private value: Private SLAExpirationDateC4: title: SLAExpirationDateC4 required: - displayValue - value type: object properties: displayValue: type: string example: example_value value: type: string example: example_value examples: - displayValue: 15/03/2017 value: '2017-03-15T00:00:00.000Z' SLASerialNumberC4: title: SLASerialNumberC4 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: string example: example_value examples: - displayValue: value: '7425' SLAC4: title: SLAC4 required: - displayValue - value type: object properties: displayValue: type: string example: example_value value: type: string example: example_value examples: - displayValue: Bronze value: Bronze ShippingCity4: title: ShippingCity4 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: string example: example_value examples: - displayValue: value: Lawrence ShippingCountry4: title: ShippingCountry4 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: string example: example_value examples: - displayValue: value: USA ShippingPostalCode4: title: ShippingPostalCode4 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: string example: example_value examples: - displayValue: value: '66045' ShippingState4: title: ShippingState4 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: string example: example_value examples: - displayValue: value: KS ShippingStreet4: title: ShippingStreet4 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: string example: example_value examples: - displayValue: value: 1301 Hoch Drive Sic4: title: Sic4 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: string example: example_value examples: - displayValue: value: '6752' UpsellOpportunityC4: title: UpsellOpportunityC4 required: - displayValue - value type: object properties: displayValue: type: string example: example_value value: type: string example: example_value examples: - displayValue: 'No' value: 'No' GetDefaultValuestoCreateaRecord: title: GetDefaultValuestoCreateaRecord required: - layout - objectInfos - record type: object properties: layout: $ref: '#/components/schemas/Layout1' objectInfos: $ref: '#/components/schemas/ObjectInfos1' record: $ref: '#/components/schemas/Record28' Layout1: title: Layout1 required: - eTag - id - layoutType - mode - objectApiName - recordTypeId - saveOptions - sections type: object properties: eTag: type: string example: example_value id: type: string example: abc123 layoutType: type: string example: example_value mode: type: string example: example_value objectApiName: type: string example: example_value recordTypeId: type: string example: '500123' saveOptions: type: array items: type: string description: '' example: [] sections: type: array items: $ref: '#/components/schemas/Section' description: '' example: [] Record28: title: Record28 required: - apiName - childRelationships - eTag - fields - id - lastModifiedById - lastModifiedDate - recordTypeId - recordTypeInfo - systemModstamp - weakEtag type: object properties: apiName: type: string example: example_value childRelationships: type: object example: example_value eTag: type: string example: example_value fields: $ref: '#/components/schemas/Fields31' id: type: - string - 'null' example: abc123 lastModifiedById: type: - string - 'null' example: '500123' lastModifiedDate: type: - string - 'null' example: example_value recordTypeId: type: string example: '500123' recordTypeInfo: type: - string - 'null' example: example_value systemModstamp: type: - string - 'null' example: example_value weakEtag: type: integer contentEncoding: int32 example: 10 examples: - apiName: Account childRelationships: {} eTag: 3a2af430441878fee09664963c96136b fields: AccountNumber: displayValue: value: Active__c: displayValue: value: AnnualRevenue: displayValue: value: BillingCity: displayValue: value: BillingCountry: displayValue: value: BillingPostalCode: displayValue: value: BillingState: displayValue: value: BillingStreet: displayValue: value: CustomerPriority__c: displayValue: value: Description: displayValue: value: Fax: displayValue: value: Industry: displayValue: value: Name: displayValue: value: NumberOfEmployees: displayValue: value: NumberofLocations__c: displayValue: value: Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: e8465cd0d7506b4905dc7e11f6b8ab50 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: lastModifiedDate: recordTypeId: recordTypeInfo: systemModstamp: weakEtag: 0 OwnerId: displayValue: value: 005B0000003TOI6IAO Ownership: displayValue: value: Parent: displayValue: value: ParentId: displayValue: value: Phone: displayValue: value: Rating: displayValue: value: SLAExpirationDate__c: displayValue: value: SLASerialNumber__c: displayValue: value: SLA__c: displayValue: value: ShippingCity: displayValue: value: ShippingCountry: displayValue: value: ShippingPostalCode: displayValue: value: ShippingState: displayValue: value: ShippingStreet: displayValue: value: Sic: displayValue: value: Site: displayValue: value: TickerSymbol: displayValue: value: Type: displayValue: value: UpsellOpportunity__c: displayValue: value: Website: displayValue: value: id: lastModifiedById: lastModifiedDate: recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: weakEtag: 0 Fields31: title: Fields31 required: - AccountNumber - Active__c - AnnualRevenue - BillingCity - BillingCountry - BillingPostalCode - BillingState - BillingStreet - CustomerPriority__c - Description - Fax - Industry - Name - NumberOfEmployees - NumberofLocations__c - Owner - OwnerId - Ownership - Parent - ParentId - Phone - Rating - SLAExpirationDate__c - SLASerialNumber__c - SLA__c - ShippingCity - ShippingCountry - ShippingPostalCode - ShippingState - ShippingStreet - Sic - Site - TickerSymbol - Type - UpsellOpportunity__c - Website type: object properties: AccountNumber: $ref: '#/components/schemas/AccountNumber2' Active__c: $ref: '#/components/schemas/ActiveC2' AnnualRevenue: $ref: '#/components/schemas/AnnualRevenue3' BillingCity: $ref: '#/components/schemas/BillingCity3' BillingCountry: $ref: '#/components/schemas/BillingCountry3' BillingPostalCode: $ref: '#/components/schemas/BillingPostalCode3' BillingState: $ref: '#/components/schemas/BillingState3' BillingStreet: $ref: '#/components/schemas/BillingStreet3' CustomerPriority__c: $ref: '#/components/schemas/CustomerPriorityC2' Description: $ref: '#/components/schemas/Description6' Fax: $ref: '#/components/schemas/Fax5' Industry: $ref: '#/components/schemas/Industry3' Name: $ref: '#/components/schemas/Name42' NumberOfEmployees: $ref: '#/components/schemas/NumberOfEmployees2' NumberofLocations__c: $ref: '#/components/schemas/NumberofLocationsC5' Owner: $ref: '#/components/schemas/Owner4' OwnerId: $ref: '#/components/schemas/OwnerId4' Ownership: $ref: '#/components/schemas/Ownership2' Parent: $ref: '#/components/schemas/Parent7' ParentId: $ref: '#/components/schemas/ParentId2' Phone: $ref: '#/components/schemas/Phone9' Rating: $ref: '#/components/schemas/Rating3' SLAExpirationDate__c: $ref: '#/components/schemas/SLAExpirationDateC2' SLASerialNumber__c: $ref: '#/components/schemas/SLASerialNumberC2' SLA__c: $ref: '#/components/schemas/SLAC2' ShippingCity: $ref: '#/components/schemas/ShippingCity2' ShippingCountry: $ref: '#/components/schemas/ShippingCountry2' ShippingPostalCode: $ref: '#/components/schemas/ShippingPostalCode2' ShippingState: $ref: '#/components/schemas/ShippingState2' ShippingStreet: $ref: '#/components/schemas/ShippingStreet2' Sic: $ref: '#/components/schemas/Sic2' Site: $ref: '#/components/schemas/Site2' TickerSymbol: $ref: '#/components/schemas/TickerSymbol2' Type: $ref: '#/components/schemas/Type13' UpsellOpportunity__c: $ref: '#/components/schemas/UpsellOpportunityC2' Website: $ref: '#/components/schemas/Website2' examples: - AccountNumber: displayValue: value: Active__c: displayValue: value: AnnualRevenue: displayValue: value: BillingCity: displayValue: value: BillingCountry: displayValue: value: BillingPostalCode: displayValue: value: BillingState: displayValue: value: BillingStreet: displayValue: value: CustomerPriority__c: displayValue: value: Description: displayValue: value: Fax: displayValue: value: Industry: displayValue: value: Name: displayValue: value: NumberOfEmployees: displayValue: value: NumberofLocations__c: displayValue: value: Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: e8465cd0d7506b4905dc7e11f6b8ab50 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: lastModifiedDate: recordTypeId: recordTypeInfo: systemModstamp: weakEtag: 0 OwnerId: displayValue: value: 005B0000003TOI6IAO Ownership: displayValue: value: Parent: displayValue: value: ParentId: displayValue: value: Phone: displayValue: value: Rating: displayValue: value: SLAExpirationDate__c: displayValue: value: SLASerialNumber__c: displayValue: value: SLA__c: displayValue: value: ShippingCity: displayValue: value: ShippingCountry: displayValue: value: ShippingPostalCode: displayValue: value: ShippingState: displayValue: value: ShippingStreet: displayValue: value: Sic: displayValue: value: Site: displayValue: value: TickerSymbol: displayValue: value: Type: displayValue: value: UpsellOpportunity__c: displayValue: value: Website: displayValue: value: Name42: title: Name42 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: - string - 'null' example: example_value examples: - displayValue: value: UpdateaRecordRequest: title: UpdateaRecordRequest required: - allowSaveOnDuplicate - fields type: object properties: allowSaveOnDuplicate: type: boolean example: true fields: $ref: '#/components/schemas/Fields20' examples: - allowSaveOnDuplicate: false fields: FieldAPIName: FieldValue UpdateaRecord: title: UpdateaRecord required: - apiName - childRelationships - eTag - fields - id - lastModifiedById - lastModifiedDate - recordTypeId - recordTypeInfo - systemModstamp - weakEtag type: object properties: apiName: type: string example: example_value childRelationships: type: object example: example_value eTag: type: string example: example_value fields: $ref: '#/components/schemas/Fields21' id: type: string example: abc123 lastModifiedById: type: string example: '500123' lastModifiedDate: type: string example: example_value recordTypeId: type: string example: '500123' recordTypeInfo: type: - string - 'null' example: example_value systemModstamp: type: string example: example_value weakEtag: type: integer contentEncoding: int64 example: 10 examples: - apiName: Account childRelationships: {} eTag: 1be6f040e46732e79a0999d6fea9fe7d fields: AccountNumber: displayValue: value: Active__c: displayValue: value: AnnualRevenue: displayValue: value: BillingCity: displayValue: value: BillingCountry: displayValue: value: BillingPostalCode: displayValue: value: BillingState: displayValue: value: BillingStreet: displayValue: value: CreatedBy: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cc07f7ef1b08ddbd75074c69512dd388 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2023-02-02T10:32:12.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-09-27T15:47:51.000Z' weakEtag: 1695829671000 CreatedById: displayValue: value: 005B0000003TOI6IAO CreatedDate: displayValue: 27/09/2023 18:01 value: '2023-09-27T16:01:14.000Z' CustomerPriority__c: displayValue: value: Description: displayValue: value: Fax: displayValue: value: Industry: displayValue: value: LastModifiedBy: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cc07f7ef1b08ddbd75074c69512dd388 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2023-02-02T10:32:12.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-09-27T15:47:51.000Z' weakEtag: 1695829671000 LastModifiedById: displayValue: value: 005B0000003TOI6IAO LastModifiedDate: displayValue: 27/09/2023 18:04 value: '2023-09-27T16:04:41.000Z' Name: displayValue: value: My Renamed Account NumberOfEmployees: displayValue: value: NumberofLocations__c: displayValue: value: Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cc07f7ef1b08ddbd75074c69512dd388 fields: Id: displayValue: value: 005B0000003TOI6IAO Name: displayValue: value: Philippe Ozil id: 005B0000003TOI6IAO lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2023-02-02T10:32:12.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-09-27T15:47:51.000Z' weakEtag: 1695829671000 OwnerId: displayValue: value: 005B0000003TOI6IAO Ownership: displayValue: value: Parent: displayValue: value: ParentId: displayValue: value: Phone: displayValue: value: Rating: displayValue: value: SLAExpirationDate__c: displayValue: value: SLASerialNumber__c: displayValue: value: SLA__c: displayValue: value: ShippingCity: displayValue: value: ShippingCountry: displayValue: value: ShippingPostalCode: displayValue: value: ShippingState: displayValue: value: ShippingStreet: displayValue: value: Sic: displayValue: value: Site: displayValue: value: TickerSymbol: displayValue: value: Type: displayValue: value: UpsellOpportunity__c: displayValue: value: Website: displayValue: value: id: 0011Q00002Z2P5jQAF lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2023-09-27T16:04:41.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2023-09-27T16:04:41.000Z' weakEtag: 1695830681000 GetLookupFieldSuggestions: title: GetLookupFieldSuggestions required: - lookupResults - metadata type: object properties: lookupResults: $ref: '#/components/schemas/LookupResults' metadata: $ref: '#/components/schemas/Metadata18' examples: - lookupResults: Account: count: 2 currentPageToken: currentPageUrl: >- /services/data/v58.0/ui-api/lookups/Contact/AccountId/Account?searchType=Recent&page=1&pageSize=25 nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: records: - apiName: Account childRelationships: {} eTag: 610a250509b966f2eb376b3205824a8b fields: Id: displayValue: value: 001B000000UnQ2yIAF Name: displayValue: value: Dickenson plc Site: displayValue: value: id: 001B000000UnQ2yIAF lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2017-08-18T14:46:22.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2017-08-18T14:46:22.000Z' weakEtag: 1503067582000 - apiName: Account childRelationships: {} eTag: d0b7cec61a65e01f88b2596dea75cbd8 fields: Id: displayValue: value: 001B000000UnQ2wIAF Name: displayValue: value: Burlington Textiles Corp of America Site: displayValue: value: id: 001B000000UnQ2wIAF lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2017-08-18T14:46:22.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2017-08-18T14:46:22.000Z' weakEtag: 1503067582000 metadata: Account: fieldApiName: objectApiName: secondaryField: Site targetInfo: {} LookupResults: title: LookupResults required: - Account type: object properties: Account: $ref: '#/components/schemas/Account15' examples: - Account: count: 2 currentPageToken: currentPageUrl: >- /services/data/v58.0/ui-api/lookups/Contact/AccountId/Account?searchType=Recent&page=1&pageSize=25 nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: records: - apiName: Account childRelationships: {} eTag: 610a250509b966f2eb376b3205824a8b fields: Id: displayValue: value: 001B000000UnQ2yIAF Name: displayValue: value: Dickenson plc Site: displayValue: value: id: 001B000000UnQ2yIAF lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2017-08-18T14:46:22.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2017-08-18T14:46:22.000Z' weakEtag: 1503067582000 - apiName: Account childRelationships: {} eTag: d0b7cec61a65e01f88b2596dea75cbd8 fields: Id: displayValue: value: 001B000000UnQ2wIAF Name: displayValue: value: Burlington Textiles Corp of America Site: displayValue: value: id: 001B000000UnQ2wIAF lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2017-08-18T14:46:22.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2017-08-18T14:46:22.000Z' weakEtag: 1503067582000 Account15: title: Account15 required: - count - currentPageToken - currentPageUrl - nextPageToken - nextPageUrl - previousPageToken - previousPageUrl - records type: object properties: count: type: integer contentEncoding: int32 example: 42 currentPageToken: type: - string - 'null' example: CAUQAA currentPageUrl: type: string example: https://www.example.com nextPageToken: type: - string - 'null' example: CAUQAA nextPageUrl: type: - string - 'null' example: https://www.example.com previousPageToken: type: - string - 'null' example: CAUQAA previousPageUrl: type: - string - 'null' example: https://www.example.com records: type: array items: $ref: '#/components/schemas/Records2' description: '' example: [] examples: - count: 2 currentPageToken: currentPageUrl: >- /services/data/v58.0/ui-api/lookups/Contact/AccountId/Account?searchType=Recent&page=1&pageSize=25 nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: records: - apiName: Account childRelationships: {} eTag: 610a250509b966f2eb376b3205824a8b fields: Id: displayValue: value: 001B000000UnQ2yIAF Name: displayValue: value: Dickenson plc Site: displayValue: value: id: 001B000000UnQ2yIAF lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2017-08-18T14:46:22.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2017-08-18T14:46:22.000Z' weakEtag: 1503067582000 - apiName: Account childRelationships: {} eTag: d0b7cec61a65e01f88b2596dea75cbd8 fields: Id: displayValue: value: 001B000000UnQ2wIAF Name: displayValue: value: Burlington Textiles Corp of America Site: displayValue: value: id: 001B000000UnQ2wIAF lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2017-08-18T14:46:22.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2017-08-18T14:46:22.000Z' weakEtag: 1503067582000 Records2: title: Records2 required: - apiName - childRelationships - eTag - fields - id - lastModifiedById - lastModifiedDate - recordTypeId - recordTypeInfo - systemModstamp - weakEtag type: object properties: apiName: type: string example: example_value childRelationships: type: object example: example_value eTag: type: string example: example_value fields: $ref: '#/components/schemas/Fields38' id: type: string example: abc123 lastModifiedById: type: string example: '500123' lastModifiedDate: type: string example: example_value recordTypeId: type: string example: '500123' recordTypeInfo: type: - string - 'null' example: example_value systemModstamp: type: string example: example_value weakEtag: type: integer contentEncoding: int64 example: 10 examples: - apiName: Account childRelationships: {} eTag: 610a250509b966f2eb376b3205824a8b fields: Id: displayValue: value: 001B000000UnQ2yIAF Name: displayValue: value: Dickenson plc Site: displayValue: value: id: 001B000000UnQ2yIAF lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2017-08-18T14:46:22.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2017-08-18T14:46:22.000Z' weakEtag: 1503067582000 Fields38: title: Fields38 required: - Id - Name - Site type: object properties: Id: $ref: '#/components/schemas/Id8' Name: $ref: '#/components/schemas/Name21' Site: $ref: '#/components/schemas/Site2' examples: - Id: displayValue: value: 001B000000UnQ2yIAF Name: displayValue: value: Dickenson plc Site: displayValue: value: Metadata18: title: Metadata18 required: - Account type: object properties: Account: $ref: '#/components/schemas/Account16' examples: - Account: fieldApiName: objectApiName: secondaryField: Site targetInfo: {} Account16: title: Account16 required: - fieldApiName - objectApiName - secondaryField - targetInfo type: object properties: fieldApiName: type: - string - 'null' example: example_value objectApiName: type: - string - 'null' example: example_value secondaryField: type: string example: example_value targetInfo: type: object example: example_value examples: - fieldApiName: objectApiName: secondaryField: Site targetInfo: {} GetLookupFieldSuggestionsforaSpecifiedObject: title: GetLookupFieldSuggestionsforaSpecifiedObject required: - count - currentPageToken - currentPageUrl - nextPageToken - nextPageUrl - previousPageToken - previousPageUrl - records type: object properties: count: type: integer contentEncoding: int32 example: 42 currentPageToken: type: - string - 'null' example: CAUQAA currentPageUrl: type: string example: https://www.example.com nextPageToken: type: - string - 'null' example: CAUQAA nextPageUrl: type: - string - 'null' example: https://www.example.com previousPageToken: type: - string - 'null' example: CAUQAA previousPageUrl: type: - string - 'null' example: https://www.example.com records: type: array items: $ref: '#/components/schemas/Records3' description: '' example: [] examples: - count: 2 currentPageToken: currentPageUrl: >- /services/data/v58.0/ui-api/lookups/Contact/AccountId/Account?searchType=Recent&page=1&pageSize=25 nextPageToken: nextPageUrl: previousPageToken: previousPageUrl: records: - apiName: Account childRelationships: {} eTag: 2316c5f4a27ac31b407d91aab610b281 fields: DisambiguationField: displayValue: value: Id: displayValue: value: 001B000000UnQ2yIAF Name: displayValue: value: Dickenson plc Site: displayValue: value: id: 001B000000UnQ2yIAF lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2017-08-18T14:46:22.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2017-08-18T14:46:22.000Z' weakEtag: 1503067582000 - apiName: Account childRelationships: {} eTag: cb5afb4494d9c9f6f81ab0e5f214585c fields: DisambiguationField: displayValue: value: Id: displayValue: value: 001B000000UnQ2wIAF Name: displayValue: value: Burlington Textiles Corp of America Site: displayValue: value: id: 001B000000UnQ2wIAF lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2017-08-18T14:46:22.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2017-08-18T14:46:22.000Z' weakEtag: 1503067582000 Records3: title: Records3 required: - apiName - childRelationships - eTag - fields - id - lastModifiedById - lastModifiedDate - recordTypeId - recordTypeInfo - systemModstamp - weakEtag type: object properties: apiName: type: string example: example_value childRelationships: type: object example: example_value eTag: type: string example: example_value fields: $ref: '#/components/schemas/Fields39' id: type: string example: abc123 lastModifiedById: type: string example: '500123' lastModifiedDate: type: string example: example_value recordTypeId: type: string example: '500123' recordTypeInfo: type: - string - 'null' example: example_value systemModstamp: type: string example: example_value weakEtag: type: integer contentEncoding: int64 example: 10 examples: - apiName: Account childRelationships: {} eTag: 2316c5f4a27ac31b407d91aab610b281 fields: DisambiguationField: displayValue: value: Id: displayValue: value: 001B000000UnQ2yIAF Name: displayValue: value: Dickenson plc Site: displayValue: value: id: 001B000000UnQ2yIAF lastModifiedById: 005B0000003TOI6IAO lastModifiedDate: '2017-08-18T14:46:22.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2017-08-18T14:46:22.000Z' weakEtag: 1503067582000 Fields39: title: Fields39 required: - DisambiguationField - Id - Name - Site type: object properties: DisambiguationField: $ref: '#/components/schemas/DisambiguationField' Id: $ref: '#/components/schemas/Id8' Name: $ref: '#/components/schemas/Name21' Site: $ref: '#/components/schemas/Site2' examples: - DisambiguationField: displayValue: value: Id: displayValue: value: 001B000000UnQ2yIAF Name: displayValue: value: Dickenson plc Site: displayValue: value: DisambiguationField: title: DisambiguationField required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: - string - 'null' example: example_value examples: - displayValue: value: GetGlobalActions: title: GetGlobalActions required: - actions - eTag - url type: object properties: actions: $ref: '#/components/schemas/Actions' eTag: type: string example: example_value url: type: string example: https://www.example.com examples: - actions: Global: actions: - actionListContext: Global actionTarget: actionTargetType: apiName: FeedItem.TextPost externalId: 00D58000000arpq:Global::Global:Desktop:FeedItem.TextPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_post_120.png id: 0JV4H0000279052WAA isMassAction: 'false' label: Post lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: CollaborateComposer sourceObject: Global subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Global actionTarget: actionTargetType: apiName: FeedItem.ContentPost externalId: 00D58000000arpq:Global::Global:Desktop:FeedItem.ContentPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_file_120.png id: 0JV4H0000279053WAA isMassAction: 'false' label: File lwcComponent: primaryColor: '939393' relatedListRecordId: relatedSourceObject: section: sourceObject: Global subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Global actionTarget: /services/data/v58.0/quickActions/NewEvent/describe actionTargetType: Describe apiName: Global.NewEvent externalId: 00D58000000arpq:Global::Global:Desktop:09D58000002PE2j iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_event_120.png id: 0JV4H0000279054WAA isMassAction: 'false' label: New Event lwcComponent: primaryColor: FF538A relatedListRecordId: relatedSourceObject: section: ActivityComposer sourceObject: Global subtype: Create targetObject: Event targetUrl: type: QuickAction - actionListContext: Global actionTarget: /services/data/v58.0/quickActions/NewTask/describe actionTargetType: Describe apiName: Global.NewTask externalId: 00D58000000arpq:Global::Global:Desktop:09D58000002PE2f iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_task_120.png id: 0JV4H0000279055WAA isMassAction: 'false' label: New Task lwcComponent: primaryColor: 3BA755 relatedListRecordId: relatedSourceObject: section: ActivityComposer sourceObject: Global subtype: Create targetObject: Task targetUrl: type: QuickAction - actionListContext: Global actionTarget: /services/data/v58.0/quickActions/NewContact/describe actionTargetType: Describe apiName: Global.NewContact externalId: 00D58000000arpq:Global::Global:Desktop:09D58000002PE2k iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_contact_120.png id: 0JV4H0000279056WAA isMassAction: 'false' label: New Contact lwcComponent: primaryColor: '5867E8' relatedListRecordId: relatedSourceObject: section: Page sourceObject: Global subtype: Create targetObject: Contact targetUrl: type: QuickAction - actionListContext: Global actionTarget: /services/data/v58.0/quickActions/LogACall/describe actionTargetType: Describe apiName: Global.LogACall externalId: 00D58000000arpq:Global::Global:Desktop:09D58000002PE2g iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/log_a_call_120.png id: 0JV4H0000279057WAA isMassAction: 'false' label: Log a Call lwcComponent: primaryColor: 06A59A relatedListRecordId: relatedSourceObject: section: ActivityComposer sourceObject: Global subtype: LogACall targetObject: Task targetUrl: type: QuickAction - actionListContext: Global actionTarget: /services/data/v58.0/quickActions/NewOpportunity/describe actionTargetType: Describe apiName: Global.NewOpportunity externalId: 00D58000000arpq:Global::Global:Desktop:09D58000002PE2l iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_opportunity_120.png id: 0JV4H0000279058WAA isMassAction: 'false' label: New Opportunity lwcComponent: primaryColor: FF5D2D relatedListRecordId: relatedSourceObject: section: Page sourceObject: Global subtype: Create targetObject: Opportunity targetUrl: type: QuickAction - actionListContext: Global actionTarget: /services/data/v58.0/quickActions/NewCase/describe actionTargetType: Describe apiName: Global.NewCase externalId: 00D58000000arpq:Global::Global:Desktop:09D58000002PE2h iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_case_120.png id: 0JV4H0000279059WAA isMassAction: 'false' label: New Case lwcComponent: primaryColor: FF5D2D relatedListRecordId: relatedSourceObject: section: Page sourceObject: Global subtype: Create targetObject: Case targetUrl: type: QuickAction - actionListContext: Global actionTarget: /services/data/v58.0/quickActions/NewLead/describe actionTargetType: Describe apiName: Global.NewLead externalId: 00D58000000arpq:Global::Global:Desktop:09D58000002PE2m iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_lead_120.png id: 0JV4H0000279060WAA isMassAction: 'false' label: New Lead lwcComponent: primaryColor: FF5D2D relatedListRecordId: relatedSourceObject: section: Page sourceObject: Global subtype: Create targetObject: Lead targetUrl: type: QuickAction - actionListContext: Global actionTarget: actionTargetType: apiName: FeedItem.LinkPost externalId: 00D58000000arpq:Global::Global:Desktop:FeedItem.LinkPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_link_120.png id: 0JV4H0000279061WAA isMassAction: 'false' label: Link lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: sourceObject: Global subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Global actionTarget: actionTargetType: apiName: FeedItem.PollPost externalId: 00D58000000arpq:Global::Global:Desktop:FeedItem.PollPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_poll_120.png id: 0JV4H0000279062WAA isMassAction: 'false' label: Poll lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: CollaborateComposer sourceObject: Global subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Global actionTarget: actionTargetType: apiName: FeedItem.QuestionPost externalId: 00D58000000arpq:Global::Global:Desktop:FeedItem.QuestionPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/question_post_action_120.png id: 0JV4H0000279063WAA isMassAction: 'false' label: Question lwcComponent: primaryColor: 3BA755 relatedListRecordId: relatedSourceObject: section: CollaborateComposer sourceObject: Global subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Global actionTarget: >- /services/data/v58.0/quickActions/New_Detailed_Account/describe actionTargetType: Describe apiName: Global.New_Detailed_Account externalId: 00D58000000arpq:Global::Global:Desktop:09D58000002Pbt9 iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_account_120.png id: 0JV4H0000279064WAA isMassAction: 'false' label: New Detailed Account lwcComponent: primaryColor: '5867E8' relatedListRecordId: relatedSourceObject: section: Page sourceObject: Global subtype: Create targetObject: Account targetUrl: type: QuickAction links: [] url: /services/data/v58.0/ui-api/actions/global eTag: 96082978ff1803b51fcee9ce34121cfa url: /services/data/v58.0/ui-api/actions/global Actions: title: Actions required: - Global type: object properties: Global: $ref: '#/components/schemas/Global' examples: - Global: actions: - actionListContext: Global actionTarget: actionTargetType: apiName: FeedItem.TextPost externalId: 00D58000000arpq:Global::Global:Desktop:FeedItem.TextPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_post_120.png id: 0JV4H0000279052WAA isMassAction: 'false' label: Post lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: CollaborateComposer sourceObject: Global subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Global actionTarget: actionTargetType: apiName: FeedItem.ContentPost externalId: 00D58000000arpq:Global::Global:Desktop:FeedItem.ContentPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_file_120.png id: 0JV4H0000279053WAA isMassAction: 'false' label: File lwcComponent: primaryColor: '939393' relatedListRecordId: relatedSourceObject: section: sourceObject: Global subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Global actionTarget: /services/data/v58.0/quickActions/NewEvent/describe actionTargetType: Describe apiName: Global.NewEvent externalId: 00D58000000arpq:Global::Global:Desktop:09D58000002PE2j iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_event_120.png id: 0JV4H0000279054WAA isMassAction: 'false' label: New Event lwcComponent: primaryColor: FF538A relatedListRecordId: relatedSourceObject: section: ActivityComposer sourceObject: Global subtype: Create targetObject: Event targetUrl: type: QuickAction - actionListContext: Global actionTarget: /services/data/v58.0/quickActions/NewTask/describe actionTargetType: Describe apiName: Global.NewTask externalId: 00D58000000arpq:Global::Global:Desktop:09D58000002PE2f iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_task_120.png id: 0JV4H0000279055WAA isMassAction: 'false' label: New Task lwcComponent: primaryColor: 3BA755 relatedListRecordId: relatedSourceObject: section: ActivityComposer sourceObject: Global subtype: Create targetObject: Task targetUrl: type: QuickAction - actionListContext: Global actionTarget: /services/data/v58.0/quickActions/NewContact/describe actionTargetType: Describe apiName: Global.NewContact externalId: 00D58000000arpq:Global::Global:Desktop:09D58000002PE2k iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_contact_120.png id: 0JV4H0000279056WAA isMassAction: 'false' label: New Contact lwcComponent: primaryColor: '5867E8' relatedListRecordId: relatedSourceObject: section: Page sourceObject: Global subtype: Create targetObject: Contact targetUrl: type: QuickAction - actionListContext: Global actionTarget: /services/data/v58.0/quickActions/LogACall/describe actionTargetType: Describe apiName: Global.LogACall externalId: 00D58000000arpq:Global::Global:Desktop:09D58000002PE2g iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/log_a_call_120.png id: 0JV4H0000279057WAA isMassAction: 'false' label: Log a Call lwcComponent: primaryColor: 06A59A relatedListRecordId: relatedSourceObject: section: ActivityComposer sourceObject: Global subtype: LogACall targetObject: Task targetUrl: type: QuickAction - actionListContext: Global actionTarget: /services/data/v58.0/quickActions/NewOpportunity/describe actionTargetType: Describe apiName: Global.NewOpportunity externalId: 00D58000000arpq:Global::Global:Desktop:09D58000002PE2l iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_opportunity_120.png id: 0JV4H0000279058WAA isMassAction: 'false' label: New Opportunity lwcComponent: primaryColor: FF5D2D relatedListRecordId: relatedSourceObject: section: Page sourceObject: Global subtype: Create targetObject: Opportunity targetUrl: type: QuickAction - actionListContext: Global actionTarget: /services/data/v58.0/quickActions/NewCase/describe actionTargetType: Describe apiName: Global.NewCase externalId: 00D58000000arpq:Global::Global:Desktop:09D58000002PE2h iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_case_120.png id: 0JV4H0000279059WAA isMassAction: 'false' label: New Case lwcComponent: primaryColor: FF5D2D relatedListRecordId: relatedSourceObject: section: Page sourceObject: Global subtype: Create targetObject: Case targetUrl: type: QuickAction - actionListContext: Global actionTarget: /services/data/v58.0/quickActions/NewLead/describe actionTargetType: Describe apiName: Global.NewLead externalId: 00D58000000arpq:Global::Global:Desktop:09D58000002PE2m iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_lead_120.png id: 0JV4H0000279060WAA isMassAction: 'false' label: New Lead lwcComponent: primaryColor: FF5D2D relatedListRecordId: relatedSourceObject: section: Page sourceObject: Global subtype: Create targetObject: Lead targetUrl: type: QuickAction - actionListContext: Global actionTarget: actionTargetType: apiName: FeedItem.LinkPost externalId: 00D58000000arpq:Global::Global:Desktop:FeedItem.LinkPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_link_120.png id: 0JV4H0000279061WAA isMassAction: 'false' label: Link lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: sourceObject: Global subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Global actionTarget: actionTargetType: apiName: FeedItem.PollPost externalId: 00D58000000arpq:Global::Global:Desktop:FeedItem.PollPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_poll_120.png id: 0JV4H0000279062WAA isMassAction: 'false' label: Poll lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: CollaborateComposer sourceObject: Global subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Global actionTarget: actionTargetType: apiName: FeedItem.QuestionPost externalId: 00D58000000arpq:Global::Global:Desktop:FeedItem.QuestionPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/question_post_action_120.png id: 0JV4H0000279063WAA isMassAction: 'false' label: Question lwcComponent: primaryColor: 3BA755 relatedListRecordId: relatedSourceObject: section: CollaborateComposer sourceObject: Global subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Global actionTarget: >- /services/data/v58.0/quickActions/New_Detailed_Account/describe actionTargetType: Describe apiName: Global.New_Detailed_Account externalId: 00D58000000arpq:Global::Global:Desktop:09D58000002Pbt9 iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_account_120.png id: 0JV4H0000279064WAA isMassAction: 'false' label: New Detailed Account lwcComponent: primaryColor: '5867E8' relatedListRecordId: relatedSourceObject: section: Page sourceObject: Global subtype: Create targetObject: Account targetUrl: type: QuickAction links: [] url: /services/data/v58.0/ui-api/actions/global Global: title: Global required: - actions - links - url type: object properties: actions: type: array items: $ref: '#/components/schemas/Actions1' description: '' example: [] links: type: array items: type: string description: '' example: [] url: type: string example: https://www.example.com examples: - actions: - actionListContext: Global actionTarget: actionTargetType: apiName: FeedItem.TextPost externalId: 00D58000000arpq:Global::Global:Desktop:FeedItem.TextPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_post_120.png id: 0JV4H0000279052WAA isMassAction: 'false' label: Post lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: CollaborateComposer sourceObject: Global subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Global actionTarget: actionTargetType: apiName: FeedItem.ContentPost externalId: 00D58000000arpq:Global::Global:Desktop:FeedItem.ContentPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_file_120.png id: 0JV4H0000279053WAA isMassAction: 'false' label: File lwcComponent: primaryColor: '939393' relatedListRecordId: relatedSourceObject: section: sourceObject: Global subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Global actionTarget: /services/data/v58.0/quickActions/NewEvent/describe actionTargetType: Describe apiName: Global.NewEvent externalId: 00D58000000arpq:Global::Global:Desktop:09D58000002PE2j iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_event_120.png id: 0JV4H0000279054WAA isMassAction: 'false' label: New Event lwcComponent: primaryColor: FF538A relatedListRecordId: relatedSourceObject: section: ActivityComposer sourceObject: Global subtype: Create targetObject: Event targetUrl: type: QuickAction - actionListContext: Global actionTarget: /services/data/v58.0/quickActions/NewTask/describe actionTargetType: Describe apiName: Global.NewTask externalId: 00D58000000arpq:Global::Global:Desktop:09D58000002PE2f iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_task_120.png id: 0JV4H0000279055WAA isMassAction: 'false' label: New Task lwcComponent: primaryColor: 3BA755 relatedListRecordId: relatedSourceObject: section: ActivityComposer sourceObject: Global subtype: Create targetObject: Task targetUrl: type: QuickAction - actionListContext: Global actionTarget: /services/data/v58.0/quickActions/NewContact/describe actionTargetType: Describe apiName: Global.NewContact externalId: 00D58000000arpq:Global::Global:Desktop:09D58000002PE2k iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_contact_120.png id: 0JV4H0000279056WAA isMassAction: 'false' label: New Contact lwcComponent: primaryColor: '5867E8' relatedListRecordId: relatedSourceObject: section: Page sourceObject: Global subtype: Create targetObject: Contact targetUrl: type: QuickAction - actionListContext: Global actionTarget: /services/data/v58.0/quickActions/LogACall/describe actionTargetType: Describe apiName: Global.LogACall externalId: 00D58000000arpq:Global::Global:Desktop:09D58000002PE2g iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/log_a_call_120.png id: 0JV4H0000279057WAA isMassAction: 'false' label: Log a Call lwcComponent: primaryColor: 06A59A relatedListRecordId: relatedSourceObject: section: ActivityComposer sourceObject: Global subtype: LogACall targetObject: Task targetUrl: type: QuickAction - actionListContext: Global actionTarget: /services/data/v58.0/quickActions/NewOpportunity/describe actionTargetType: Describe apiName: Global.NewOpportunity externalId: 00D58000000arpq:Global::Global:Desktop:09D58000002PE2l iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_opportunity_120.png id: 0JV4H0000279058WAA isMassAction: 'false' label: New Opportunity lwcComponent: primaryColor: FF5D2D relatedListRecordId: relatedSourceObject: section: Page sourceObject: Global subtype: Create targetObject: Opportunity targetUrl: type: QuickAction - actionListContext: Global actionTarget: /services/data/v58.0/quickActions/NewCase/describe actionTargetType: Describe apiName: Global.NewCase externalId: 00D58000000arpq:Global::Global:Desktop:09D58000002PE2h iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_case_120.png id: 0JV4H0000279059WAA isMassAction: 'false' label: New Case lwcComponent: primaryColor: FF5D2D relatedListRecordId: relatedSourceObject: section: Page sourceObject: Global subtype: Create targetObject: Case targetUrl: type: QuickAction - actionListContext: Global actionTarget: /services/data/v58.0/quickActions/NewLead/describe actionTargetType: Describe apiName: Global.NewLead externalId: 00D58000000arpq:Global::Global:Desktop:09D58000002PE2m iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_lead_120.png id: 0JV4H0000279060WAA isMassAction: 'false' label: New Lead lwcComponent: primaryColor: FF5D2D relatedListRecordId: relatedSourceObject: section: Page sourceObject: Global subtype: Create targetObject: Lead targetUrl: type: QuickAction - actionListContext: Global actionTarget: actionTargetType: apiName: FeedItem.LinkPost externalId: 00D58000000arpq:Global::Global:Desktop:FeedItem.LinkPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_link_120.png id: 0JV4H0000279061WAA isMassAction: 'false' label: Link lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: sourceObject: Global subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Global actionTarget: actionTargetType: apiName: FeedItem.PollPost externalId: 00D58000000arpq:Global::Global:Desktop:FeedItem.PollPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_poll_120.png id: 0JV4H0000279062WAA isMassAction: 'false' label: Poll lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: CollaborateComposer sourceObject: Global subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Global actionTarget: actionTargetType: apiName: FeedItem.QuestionPost externalId: 00D58000000arpq:Global::Global:Desktop:FeedItem.QuestionPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/question_post_action_120.png id: 0JV4H0000279063WAA isMassAction: 'false' label: Question lwcComponent: primaryColor: 3BA755 relatedListRecordId: relatedSourceObject: section: CollaborateComposer sourceObject: Global subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Global actionTarget: /services/data/v58.0/quickActions/New_Detailed_Account/describe actionTargetType: Describe apiName: Global.New_Detailed_Account externalId: 00D58000000arpq:Global::Global:Desktop:09D58000002Pbt9 iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_account_120.png id: 0JV4H0000279064WAA isMassAction: 'false' label: New Detailed Account lwcComponent: primaryColor: '5867E8' relatedListRecordId: relatedSourceObject: section: Page sourceObject: Global subtype: Create targetObject: Account targetUrl: type: QuickAction links: [] url: /services/data/v58.0/ui-api/actions/global Actions1: title: Actions1 required: - actionListContext - actionTarget - actionTargetType - apiName - externalId - iconUrl - id - isMassAction - label - lwcComponent - primaryColor - relatedListRecordId - relatedSourceObject - section - sourceObject - subtype - targetObject - targetUrl - type type: object properties: actionListContext: type: string example: example_value actionTarget: type: - string - 'null' example: example_value actionTargetType: type: - string - 'null' example: example_value apiName: type: string example: example_value externalId: type: string example: '500123' iconUrl: type: string example: https://www.example.com id: type: string example: abc123 isMassAction: type: string example: example_value label: type: string example: Example Title lwcComponent: type: - string - 'null' example: example_value primaryColor: type: string example: example_value relatedListRecordId: type: - string - 'null' example: '500123' relatedSourceObject: type: - string - 'null' example: example_value section: type: - string - 'null' example: example_value sourceObject: type: string example: example_value subtype: type: string example: example_value targetObject: type: - string - 'null' example: example_value targetUrl: type: - string - 'null' example: https://www.example.com type: type: string example: example_value examples: - actionListContext: Global actionTarget: actionTargetType: apiName: FeedItem.TextPost externalId: 00D58000000arpq:Global::Global:Desktop:FeedItem.TextPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_post_120.png id: 0JV4H0000279052WAA isMassAction: 'false' label: Post lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: CollaborateComposer sourceObject: Global subtype: Post targetObject: targetUrl: type: QuickAction GetRecordDetailPageActions: title: GetRecordDetailPageActions required: - actions - eTag - url type: object properties: actions: $ref: '#/components/schemas/Actions2' eTag: type: string example: example_value url: type: string example: https://www.example.com examples: - actions: 0014H00002LbR7QQAV: actions: - actionListContext: Chatter actionTarget: actionTargetType: Invoke apiName: Follow externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Chatter:Desktop:StandardButton:Follow iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/follow_120.png id: 0JV4H0000328007WAA isMassAction: 'false' label: Follow lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: SingleActionLinks sourceObject: 0014H00002LbR7QQAV subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Chatter actionTarget: actionTargetType: apiName: FollowInStream externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Chatter:Desktop:StandardButton:FollowInStream iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/follow_120.png id: 0JV4H0000328008WAA isMassAction: 'false' label: Follow in Stream lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: SingleActionLinks sourceObject: 0014H00002LbR7QQAV subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: /services/data/v58.0/quickActions/NewTask/describe actionTargetType: Describe apiName: Global.NewTask externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:09D58000002PE2f iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_task_120.png id: 0JV4H0000328011WAA isMassAction: 'false' label: New Task lwcComponent: primaryColor: 3BA755 relatedListRecordId: relatedSourceObject: section: ActivityComposer sourceObject: 0014H00002LbR7QQAV subtype: Create targetObject: Task targetUrl: type: QuickAction - actionListContext: Record actionTarget: /services/data/v58.0/quickActions/NewEvent/describe actionTargetType: Describe apiName: Global.NewEvent externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:09D58000002PE2j iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_event_120.png id: 0JV4H0000328012WAA isMassAction: 'false' label: New Event lwcComponent: primaryColor: FF538A relatedListRecordId: relatedSourceObject: section: ActivityComposer sourceObject: 0014H00002LbR7QQAV subtype: Create targetObject: Event targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: apiName: FeedItem.TextPost externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:FeedItem.TextPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_post_120.png id: 0JV4H0000328013WAA isMassAction: 'false' label: Post lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: CollaborateComposer sourceObject: 0014H00002LbR7QQAV subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: Edit externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:StandardButton:Edit iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/edit_120.png id: 0JV4H0000328014WAA isMassAction: 'false' label: Edit lwcComponent: dxp_records:lwcEditActionHandler primaryColor: 06A59A relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: ScreenAction targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: apiName: FeedItem.ContentPost externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:FeedItem.ContentPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_file_120.png id: 0JV4H0000328015WAA isMassAction: 'false' label: File lwcComponent: primaryColor: '939393' relatedListRecordId: relatedSourceObject: section: sourceObject: 0014H00002LbR7QQAV subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Record actionTarget: /services/data/v58.0/quickActions/NewContact/describe actionTargetType: Describe apiName: Global.NewContact externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:09D58000002PE2k iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_contact_120.png id: 0JV4H0000328016WAA isMassAction: 'false' label: New Contact lwcComponent: primaryColor: '5867E8' relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: Create targetObject: Contact targetUrl: type: QuickAction - actionListContext: Record actionTarget: /services/data/v58.0/quickActions/LogACall/describe actionTargetType: Describe apiName: Global.LogACall externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:09D58000002PE2g iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/log_a_call_120.png id: 0JV4H0000328017WAA isMassAction: 'false' label: Log a Call lwcComponent: primaryColor: 06A59A relatedListRecordId: relatedSourceObject: section: ActivityComposer sourceObject: 0014H00002LbR7QQAV subtype: LogACall targetObject: Task targetUrl: type: QuickAction - actionListContext: Record actionTarget: /services/data/v58.0/quickActions/NewOpportunity/describe actionTargetType: Describe apiName: Global.NewOpportunity externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:09D58000002PE2l iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_opportunity_120.png id: 0JV4H0000328018WAA isMassAction: 'false' label: New Opportunity lwcComponent: primaryColor: FF5D2D relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: Create targetObject: Opportunity targetUrl: type: QuickAction - actionListContext: Record actionTarget: /services/data/v58.0/quickActions/NewCase/describe actionTargetType: Describe apiName: Global.NewCase externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:09D58000002PE2h iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_case_120.png id: 0JV4H0000328019WAA isMassAction: 'false' label: New Case lwcComponent: primaryColor: FF5D2D relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: Create targetObject: Case targetUrl: type: QuickAction - actionListContext: Record actionTarget: /services/data/v58.0/quickActions/NewLead/describe actionTargetType: Describe apiName: Global.NewLead externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:09D58000002PE2m iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_lead_120.png id: 0JV4H0000328020WAA isMassAction: 'false' label: New Lead lwcComponent: primaryColor: FF5D2D relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: Create targetObject: Lead targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: apiName: FeedItem.LinkPost externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:FeedItem.LinkPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_link_120.png id: 0JV4H0000328021WAA isMassAction: 'false' label: Link lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: sourceObject: 0014H00002LbR7QQAV subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: apiName: FeedItem.PollPost externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:FeedItem.PollPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_poll_120.png id: 0JV4H0000328022WAA isMassAction: 'false' label: Poll lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: CollaborateComposer sourceObject: 0014H00002LbR7QQAV subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: apiName: FeedItem.QuestionPost externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:FeedItem.QuestionPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/question_post_action_120.png id: 0JV4H0000328023WAA isMassAction: 'false' label: Question lwcComponent: primaryColor: 3BA755 relatedListRecordId: relatedSourceObject: section: CollaborateComposer sourceObject: 0014H00002LbR7QQAV subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Record actionTarget: >- /services/data/v58.0/quickActions/New_Detailed_Account/describe actionTargetType: Describe apiName: Global.New_Detailed_Account externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:09D58000002Pbt9 iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_account_120.png id: 0JV4H0000328024WAA isMassAction: 'false' label: New Detailed Account lwcComponent: primaryColor: '5867E8' relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: Create targetObject: Account targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: ChangeOwnerOne externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:StandardButton:ChangeOwnerOne iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/change_owner_120.png id: 0JV4H0000328025WAA isMassAction: 'false' label: Change Owner lwcComponent: primaryColor: 107CAD relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: Delete externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:StandardButton:Delete iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/delete_120.png id: 0JV4H0000328026WAA isMassAction: 'false' label: Delete lwcComponent: primaryColor: FF538A relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: AccountHierarchy externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:StandardButton:AccountHierarchy iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000328027WAA isMassAction: 'false' label: View Account Hierarchy lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: IncludeOffline externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:StandardButton:IncludeOffline iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000328028WAA isMassAction: 'false' label: Include Offline lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: EnableAsPartner externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:StandardButton:EnableAsPartner iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000328029WAA isMassAction: 'false' label: Enable As Partner lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: XClean externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:StandardButton:XClean iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000328030WAA isMassAction: 'false' label: Check for New Data lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: PrintableView externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:StandardButton:PrintableView iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000328031WAA isMassAction: 'false' label: Printable View lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: apiName: WebsiteHighlightAction externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:ProductivityAction:WebsiteHighlightAction iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/web_link_120.png id: 0JV4H0000328032WAA isMassAction: 'false' label: View Website lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: targetObject: Account targetUrl: type: ProductivityAction links: - >- /services/data/v58.0/ui-api/actions/record/0014H00002LbR7QQAV/record-edit - >- /services/data/v58.0/ui-api/actions/record/0014H00002LbR7QQAV/related-list - >- /services/data/v58.0/ui-api/actions/record/0014H00002LbR7QQAV/related-list-record/${relatedRecordId} url: /services/data/v58.0/ui-api/actions/record/0014H00002LbR7QQAV 00158000006QBOhAAO: actions: - actionListContext: Chatter actionTarget: actionTargetType: Invoke apiName: Follow externalId: >- 00D58000000arpq:00158000006QBOhAAO::Chatter:Desktop:StandardButton:Follow iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/follow_120.png id: 0JV4H0000328009WAA isMassAction: 'false' label: Follow lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: SingleActionLinks sourceObject: 00158000006QBOhAAO subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Chatter actionTarget: actionTargetType: apiName: FollowInStream externalId: >- 00D58000000arpq:00158000006QBOhAAO::Chatter:Desktop:StandardButton:FollowInStream iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/follow_120.png id: 0JV4H0000328010WAA isMassAction: 'false' label: Follow in Stream lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: SingleActionLinks sourceObject: 00158000006QBOhAAO subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: /services/data/v58.0/quickActions/NewTask/describe actionTargetType: Describe apiName: Global.NewTask externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:09D58000002PE2f iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_task_120.png id: 0JV4H0000328033WAA isMassAction: 'false' label: New Task lwcComponent: primaryColor: 3BA755 relatedListRecordId: relatedSourceObject: section: ActivityComposer sourceObject: 00158000006QBOhAAO subtype: Create targetObject: Task targetUrl: type: QuickAction - actionListContext: Record actionTarget: /services/data/v58.0/quickActions/NewEvent/describe actionTargetType: Describe apiName: Global.NewEvent externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:09D58000002PE2j iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_event_120.png id: 0JV4H0000328034WAA isMassAction: 'false' label: New Event lwcComponent: primaryColor: FF538A relatedListRecordId: relatedSourceObject: section: ActivityComposer sourceObject: 00158000006QBOhAAO subtype: Create targetObject: Event targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: apiName: FeedItem.TextPost externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:FeedItem.TextPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_post_120.png id: 0JV4H0000328035WAA isMassAction: 'false' label: Post lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: CollaborateComposer sourceObject: 00158000006QBOhAAO subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: Edit externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:StandardButton:Edit iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/edit_120.png id: 0JV4H0000328036WAA isMassAction: 'false' label: Edit lwcComponent: dxp_records:lwcEditActionHandler primaryColor: 06A59A relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: ScreenAction targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: apiName: FeedItem.ContentPost externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:FeedItem.ContentPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_file_120.png id: 0JV4H0000328037WAA isMassAction: 'false' label: File lwcComponent: primaryColor: '939393' relatedListRecordId: relatedSourceObject: section: sourceObject: 00158000006QBOhAAO subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Record actionTarget: /services/data/v58.0/quickActions/NewContact/describe actionTargetType: Describe apiName: Global.NewContact externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:09D58000002PE2k iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_contact_120.png id: 0JV4H0000328038WAA isMassAction: 'false' label: New Contact lwcComponent: primaryColor: '5867E8' relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: Create targetObject: Contact targetUrl: type: QuickAction - actionListContext: Record actionTarget: /services/data/v58.0/quickActions/LogACall/describe actionTargetType: Describe apiName: Global.LogACall externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:09D58000002PE2g iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/log_a_call_120.png id: 0JV4H0000328039WAA isMassAction: 'false' label: Log a Call lwcComponent: primaryColor: 06A59A relatedListRecordId: relatedSourceObject: section: ActivityComposer sourceObject: 00158000006QBOhAAO subtype: LogACall targetObject: Task targetUrl: type: QuickAction - actionListContext: Record actionTarget: /services/data/v58.0/quickActions/NewOpportunity/describe actionTargetType: Describe apiName: Global.NewOpportunity externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:09D58000002PE2l iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_opportunity_120.png id: 0JV4H0000328040WAA isMassAction: 'false' label: New Opportunity lwcComponent: primaryColor: FF5D2D relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: Create targetObject: Opportunity targetUrl: type: QuickAction - actionListContext: Record actionTarget: /services/data/v58.0/quickActions/NewCase/describe actionTargetType: Describe apiName: Global.NewCase externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:09D58000002PE2h iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_case_120.png id: 0JV4H0000328041WAA isMassAction: 'false' label: New Case lwcComponent: primaryColor: FF5D2D relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: Create targetObject: Case targetUrl: type: QuickAction - actionListContext: Record actionTarget: /services/data/v58.0/quickActions/NewLead/describe actionTargetType: Describe apiName: Global.NewLead externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:09D58000002PE2m iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_lead_120.png id: 0JV4H0000328042WAA isMassAction: 'false' label: New Lead lwcComponent: primaryColor: FF5D2D relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: Create targetObject: Lead targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: apiName: FeedItem.LinkPost externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:FeedItem.LinkPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_link_120.png id: 0JV4H0000328043WAA isMassAction: 'false' label: Link lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: sourceObject: 00158000006QBOhAAO subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: apiName: FeedItem.PollPost externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:FeedItem.PollPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_poll_120.png id: 0JV4H0000328044WAA isMassAction: 'false' label: Poll lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: CollaborateComposer sourceObject: 00158000006QBOhAAO subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: apiName: FeedItem.QuestionPost externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:FeedItem.QuestionPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/question_post_action_120.png id: 0JV4H0000328045WAA isMassAction: 'false' label: Question lwcComponent: primaryColor: 3BA755 relatedListRecordId: relatedSourceObject: section: CollaborateComposer sourceObject: 00158000006QBOhAAO subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Record actionTarget: >- /services/data/v58.0/quickActions/New_Detailed_Account/describe actionTargetType: Describe apiName: Global.New_Detailed_Account externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:09D58000002Pbt9 iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_account_120.png id: 0JV4H0000328046WAA isMassAction: 'false' label: New Detailed Account lwcComponent: primaryColor: '5867E8' relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: Create targetObject: Account targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: ChangeOwnerOne externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:StandardButton:ChangeOwnerOne iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/change_owner_120.png id: 0JV4H0000328047WAA isMassAction: 'false' label: Change Owner lwcComponent: primaryColor: 107CAD relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: Delete externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:StandardButton:Delete iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/delete_120.png id: 0JV4H0000328048WAA isMassAction: 'false' label: Delete lwcComponent: primaryColor: FF538A relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: AccountHierarchy externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:StandardButton:AccountHierarchy iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000328049WAA isMassAction: 'false' label: View Account Hierarchy lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: IncludeOffline externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:StandardButton:IncludeOffline iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000328050WAA isMassAction: 'false' label: Include Offline lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: EnableAsPartner externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:StandardButton:EnableAsPartner iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000328051WAA isMassAction: 'false' label: Enable As Partner lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: XClean externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:StandardButton:XClean iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000328052WAA isMassAction: 'false' label: Check for New Data lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: PrintableView externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:StandardButton:PrintableView iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000328053WAA isMassAction: 'false' label: Printable View lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: apiName: WebsiteHighlightAction externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:ProductivityAction:WebsiteHighlightAction iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/web_link_120.png id: 0JV4H0000328054WAA isMassAction: 'false' label: View Website lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: targetObject: Account targetUrl: type: ProductivityAction links: - >- /services/data/v58.0/ui-api/actions/record/00158000006QBOhAAO/record-edit - >- /services/data/v58.0/ui-api/actions/record/00158000006QBOhAAO/related-list - >- /services/data/v58.0/ui-api/actions/record/00158000006QBOhAAO/related-list-record/${relatedRecordId} url: /services/data/v58.0/ui-api/actions/record/00158000006QBOhAAO eTag: 070a59ceff1430940937c233f1b952dd url: >- /services/data/v58.0/ui-api/actions/record/0014H00002LbR7QQAV,00158000006QBOhAAO Actions2: title: Actions2 required: - 0014H00002LbR7QQAV - 00158000006QBOhAAO type: object properties: 0014H00002LbR7QQAV: $ref: '#/components/schemas/0014H00002LbR7QQAV' 00158000006QBOhAAO: $ref: '#/components/schemas/00158000006QBOhAAO' examples: - 0014H00002LbR7QQAV: actions: - actionListContext: Chatter actionTarget: actionTargetType: Invoke apiName: Follow externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Chatter:Desktop:StandardButton:Follow iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/follow_120.png id: 0JV4H0000328007WAA isMassAction: 'false' label: Follow lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: SingleActionLinks sourceObject: 0014H00002LbR7QQAV subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Chatter actionTarget: actionTargetType: apiName: FollowInStream externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Chatter:Desktop:StandardButton:FollowInStream iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/follow_120.png id: 0JV4H0000328008WAA isMassAction: 'false' label: Follow in Stream lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: SingleActionLinks sourceObject: 0014H00002LbR7QQAV subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: /services/data/v58.0/quickActions/NewTask/describe actionTargetType: Describe apiName: Global.NewTask externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:09D58000002PE2f iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_task_120.png id: 0JV4H0000328011WAA isMassAction: 'false' label: New Task lwcComponent: primaryColor: 3BA755 relatedListRecordId: relatedSourceObject: section: ActivityComposer sourceObject: 0014H00002LbR7QQAV subtype: Create targetObject: Task targetUrl: type: QuickAction - actionListContext: Record actionTarget: /services/data/v58.0/quickActions/NewEvent/describe actionTargetType: Describe apiName: Global.NewEvent externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:09D58000002PE2j iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_event_120.png id: 0JV4H0000328012WAA isMassAction: 'false' label: New Event lwcComponent: primaryColor: FF538A relatedListRecordId: relatedSourceObject: section: ActivityComposer sourceObject: 0014H00002LbR7QQAV subtype: Create targetObject: Event targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: apiName: FeedItem.TextPost externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:FeedItem.TextPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_post_120.png id: 0JV4H0000328013WAA isMassAction: 'false' label: Post lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: CollaborateComposer sourceObject: 0014H00002LbR7QQAV subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: Edit externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:StandardButton:Edit iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/edit_120.png id: 0JV4H0000328014WAA isMassAction: 'false' label: Edit lwcComponent: dxp_records:lwcEditActionHandler primaryColor: 06A59A relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: ScreenAction targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: apiName: FeedItem.ContentPost externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:FeedItem.ContentPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_file_120.png id: 0JV4H0000328015WAA isMassAction: 'false' label: File lwcComponent: primaryColor: '939393' relatedListRecordId: relatedSourceObject: section: sourceObject: 0014H00002LbR7QQAV subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Record actionTarget: /services/data/v58.0/quickActions/NewContact/describe actionTargetType: Describe apiName: Global.NewContact externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:09D58000002PE2k iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_contact_120.png id: 0JV4H0000328016WAA isMassAction: 'false' label: New Contact lwcComponent: primaryColor: '5867E8' relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: Create targetObject: Contact targetUrl: type: QuickAction - actionListContext: Record actionTarget: /services/data/v58.0/quickActions/LogACall/describe actionTargetType: Describe apiName: Global.LogACall externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:09D58000002PE2g iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/log_a_call_120.png id: 0JV4H0000328017WAA isMassAction: 'false' label: Log a Call lwcComponent: primaryColor: 06A59A relatedListRecordId: relatedSourceObject: section: ActivityComposer sourceObject: 0014H00002LbR7QQAV subtype: LogACall targetObject: Task targetUrl: type: QuickAction - actionListContext: Record actionTarget: /services/data/v58.0/quickActions/NewOpportunity/describe actionTargetType: Describe apiName: Global.NewOpportunity externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:09D58000002PE2l iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_opportunity_120.png id: 0JV4H0000328018WAA isMassAction: 'false' label: New Opportunity lwcComponent: primaryColor: FF5D2D relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: Create targetObject: Opportunity targetUrl: type: QuickAction - actionListContext: Record actionTarget: /services/data/v58.0/quickActions/NewCase/describe actionTargetType: Describe apiName: Global.NewCase externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:09D58000002PE2h iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_case_120.png id: 0JV4H0000328019WAA isMassAction: 'false' label: New Case lwcComponent: primaryColor: FF5D2D relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: Create targetObject: Case targetUrl: type: QuickAction - actionListContext: Record actionTarget: /services/data/v58.0/quickActions/NewLead/describe actionTargetType: Describe apiName: Global.NewLead externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:09D58000002PE2m iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_lead_120.png id: 0JV4H0000328020WAA isMassAction: 'false' label: New Lead lwcComponent: primaryColor: FF5D2D relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: Create targetObject: Lead targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: apiName: FeedItem.LinkPost externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:FeedItem.LinkPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_link_120.png id: 0JV4H0000328021WAA isMassAction: 'false' label: Link lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: sourceObject: 0014H00002LbR7QQAV subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: apiName: FeedItem.PollPost externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:FeedItem.PollPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_poll_120.png id: 0JV4H0000328022WAA isMassAction: 'false' label: Poll lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: CollaborateComposer sourceObject: 0014H00002LbR7QQAV subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: apiName: FeedItem.QuestionPost externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:FeedItem.QuestionPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/question_post_action_120.png id: 0JV4H0000328023WAA isMassAction: 'false' label: Question lwcComponent: primaryColor: 3BA755 relatedListRecordId: relatedSourceObject: section: CollaborateComposer sourceObject: 0014H00002LbR7QQAV subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Record actionTarget: >- /services/data/v58.0/quickActions/New_Detailed_Account/describe actionTargetType: Describe apiName: Global.New_Detailed_Account externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:09D58000002Pbt9 iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_account_120.png id: 0JV4H0000328024WAA isMassAction: 'false' label: New Detailed Account lwcComponent: primaryColor: '5867E8' relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: Create targetObject: Account targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: ChangeOwnerOne externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:StandardButton:ChangeOwnerOne iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/change_owner_120.png id: 0JV4H0000328025WAA isMassAction: 'false' label: Change Owner lwcComponent: primaryColor: 107CAD relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: Delete externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:StandardButton:Delete iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/delete_120.png id: 0JV4H0000328026WAA isMassAction: 'false' label: Delete lwcComponent: primaryColor: FF538A relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: AccountHierarchy externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:StandardButton:AccountHierarchy iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000328027WAA isMassAction: 'false' label: View Account Hierarchy lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: IncludeOffline externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:StandardButton:IncludeOffline iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000328028WAA isMassAction: 'false' label: Include Offline lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: EnableAsPartner externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:StandardButton:EnableAsPartner iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000328029WAA isMassAction: 'false' label: Enable As Partner lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: XClean externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:StandardButton:XClean iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000328030WAA isMassAction: 'false' label: Check for New Data lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: PrintableView externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:StandardButton:PrintableView iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000328031WAA isMassAction: 'false' label: Printable View lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: apiName: WebsiteHighlightAction externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:ProductivityAction:WebsiteHighlightAction iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/web_link_120.png id: 0JV4H0000328032WAA isMassAction: 'false' label: View Website lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: targetObject: Account targetUrl: type: ProductivityAction links: - >- /services/data/v58.0/ui-api/actions/record/0014H00002LbR7QQAV/record-edit - >- /services/data/v58.0/ui-api/actions/record/0014H00002LbR7QQAV/related-list - >- /services/data/v58.0/ui-api/actions/record/0014H00002LbR7QQAV/related-list-record/${relatedRecordId} url: /services/data/v58.0/ui-api/actions/record/0014H00002LbR7QQAV 00158000006QBOhAAO: actions: - actionListContext: Chatter actionTarget: actionTargetType: Invoke apiName: Follow externalId: >- 00D58000000arpq:00158000006QBOhAAO::Chatter:Desktop:StandardButton:Follow iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/follow_120.png id: 0JV4H0000328009WAA isMassAction: 'false' label: Follow lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: SingleActionLinks sourceObject: 00158000006QBOhAAO subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Chatter actionTarget: actionTargetType: apiName: FollowInStream externalId: >- 00D58000000arpq:00158000006QBOhAAO::Chatter:Desktop:StandardButton:FollowInStream iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/follow_120.png id: 0JV4H0000328010WAA isMassAction: 'false' label: Follow in Stream lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: SingleActionLinks sourceObject: 00158000006QBOhAAO subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: /services/data/v58.0/quickActions/NewTask/describe actionTargetType: Describe apiName: Global.NewTask externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:09D58000002PE2f iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_task_120.png id: 0JV4H0000328033WAA isMassAction: 'false' label: New Task lwcComponent: primaryColor: 3BA755 relatedListRecordId: relatedSourceObject: section: ActivityComposer sourceObject: 00158000006QBOhAAO subtype: Create targetObject: Task targetUrl: type: QuickAction - actionListContext: Record actionTarget: /services/data/v58.0/quickActions/NewEvent/describe actionTargetType: Describe apiName: Global.NewEvent externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:09D58000002PE2j iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_event_120.png id: 0JV4H0000328034WAA isMassAction: 'false' label: New Event lwcComponent: primaryColor: FF538A relatedListRecordId: relatedSourceObject: section: ActivityComposer sourceObject: 00158000006QBOhAAO subtype: Create targetObject: Event targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: apiName: FeedItem.TextPost externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:FeedItem.TextPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_post_120.png id: 0JV4H0000328035WAA isMassAction: 'false' label: Post lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: CollaborateComposer sourceObject: 00158000006QBOhAAO subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: Edit externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:StandardButton:Edit iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/edit_120.png id: 0JV4H0000328036WAA isMassAction: 'false' label: Edit lwcComponent: dxp_records:lwcEditActionHandler primaryColor: 06A59A relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: ScreenAction targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: apiName: FeedItem.ContentPost externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:FeedItem.ContentPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_file_120.png id: 0JV4H0000328037WAA isMassAction: 'false' label: File lwcComponent: primaryColor: '939393' relatedListRecordId: relatedSourceObject: section: sourceObject: 00158000006QBOhAAO subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Record actionTarget: /services/data/v58.0/quickActions/NewContact/describe actionTargetType: Describe apiName: Global.NewContact externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:09D58000002PE2k iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_contact_120.png id: 0JV4H0000328038WAA isMassAction: 'false' label: New Contact lwcComponent: primaryColor: '5867E8' relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: Create targetObject: Contact targetUrl: type: QuickAction - actionListContext: Record actionTarget: /services/data/v58.0/quickActions/LogACall/describe actionTargetType: Describe apiName: Global.LogACall externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:09D58000002PE2g iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/log_a_call_120.png id: 0JV4H0000328039WAA isMassAction: 'false' label: Log a Call lwcComponent: primaryColor: 06A59A relatedListRecordId: relatedSourceObject: section: ActivityComposer sourceObject: 00158000006QBOhAAO subtype: LogACall targetObject: Task targetUrl: type: QuickAction - actionListContext: Record actionTarget: /services/data/v58.0/quickActions/NewOpportunity/describe actionTargetType: Describe apiName: Global.NewOpportunity externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:09D58000002PE2l iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_opportunity_120.png id: 0JV4H0000328040WAA isMassAction: 'false' label: New Opportunity lwcComponent: primaryColor: FF5D2D relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: Create targetObject: Opportunity targetUrl: type: QuickAction - actionListContext: Record actionTarget: /services/data/v58.0/quickActions/NewCase/describe actionTargetType: Describe apiName: Global.NewCase externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:09D58000002PE2h iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_case_120.png id: 0JV4H0000328041WAA isMassAction: 'false' label: New Case lwcComponent: primaryColor: FF5D2D relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: Create targetObject: Case targetUrl: type: QuickAction - actionListContext: Record actionTarget: /services/data/v58.0/quickActions/NewLead/describe actionTargetType: Describe apiName: Global.NewLead externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:09D58000002PE2m iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_lead_120.png id: 0JV4H0000328042WAA isMassAction: 'false' label: New Lead lwcComponent: primaryColor: FF5D2D relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: Create targetObject: Lead targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: apiName: FeedItem.LinkPost externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:FeedItem.LinkPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_link_120.png id: 0JV4H0000328043WAA isMassAction: 'false' label: Link lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: sourceObject: 00158000006QBOhAAO subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: apiName: FeedItem.PollPost externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:FeedItem.PollPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_poll_120.png id: 0JV4H0000328044WAA isMassAction: 'false' label: Poll lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: CollaborateComposer sourceObject: 00158000006QBOhAAO subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: apiName: FeedItem.QuestionPost externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:FeedItem.QuestionPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/question_post_action_120.png id: 0JV4H0000328045WAA isMassAction: 'false' label: Question lwcComponent: primaryColor: 3BA755 relatedListRecordId: relatedSourceObject: section: CollaborateComposer sourceObject: 00158000006QBOhAAO subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Record actionTarget: >- /services/data/v58.0/quickActions/New_Detailed_Account/describe actionTargetType: Describe apiName: Global.New_Detailed_Account externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:09D58000002Pbt9 iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_account_120.png id: 0JV4H0000328046WAA isMassAction: 'false' label: New Detailed Account lwcComponent: primaryColor: '5867E8' relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: Create targetObject: Account targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: ChangeOwnerOne externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:StandardButton:ChangeOwnerOne iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/change_owner_120.png id: 0JV4H0000328047WAA isMassAction: 'false' label: Change Owner lwcComponent: primaryColor: 107CAD relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: Delete externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:StandardButton:Delete iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/delete_120.png id: 0JV4H0000328048WAA isMassAction: 'false' label: Delete lwcComponent: primaryColor: FF538A relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: AccountHierarchy externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:StandardButton:AccountHierarchy iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000328049WAA isMassAction: 'false' label: View Account Hierarchy lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: IncludeOffline externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:StandardButton:IncludeOffline iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000328050WAA isMassAction: 'false' label: Include Offline lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: EnableAsPartner externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:StandardButton:EnableAsPartner iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000328051WAA isMassAction: 'false' label: Enable As Partner lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: XClean externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:StandardButton:XClean iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000328052WAA isMassAction: 'false' label: Check for New Data lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: PrintableView externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:StandardButton:PrintableView iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000328053WAA isMassAction: 'false' label: Printable View lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: apiName: WebsiteHighlightAction externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:ProductivityAction:WebsiteHighlightAction iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/web_link_120.png id: 0JV4H0000328054WAA isMassAction: 'false' label: View Website lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: targetObject: Account targetUrl: type: ProductivityAction links: - >- /services/data/v58.0/ui-api/actions/record/00158000006QBOhAAO/record-edit - >- /services/data/v58.0/ui-api/actions/record/00158000006QBOhAAO/related-list - >- /services/data/v58.0/ui-api/actions/record/00158000006QBOhAAO/related-list-record/${relatedRecordId} url: /services/data/v58.0/ui-api/actions/record/00158000006QBOhAAO 0014H00002LbR7QQAV: title: 0014H00002LbR7QQAV required: - actions - links - url type: object properties: actions: type: array items: $ref: '#/components/schemas/Actions3' description: '' example: [] links: type: array items: type: string description: '' example: [] url: type: string example: https://www.example.com examples: - actions: - actionListContext: Chatter actionTarget: actionTargetType: Invoke apiName: Follow externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Chatter:Desktop:StandardButton:Follow iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/follow_120.png id: 0JV4H0000328007WAA isMassAction: 'false' label: Follow lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: SingleActionLinks sourceObject: 0014H00002LbR7QQAV subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Chatter actionTarget: actionTargetType: apiName: FollowInStream externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Chatter:Desktop:StandardButton:FollowInStream iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/follow_120.png id: 0JV4H0000328008WAA isMassAction: 'false' label: Follow in Stream lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: SingleActionLinks sourceObject: 0014H00002LbR7QQAV subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: /services/data/v58.0/quickActions/NewTask/describe actionTargetType: Describe apiName: Global.NewTask externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:09D58000002PE2f iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_task_120.png id: 0JV4H0000328011WAA isMassAction: 'false' label: New Task lwcComponent: primaryColor: 3BA755 relatedListRecordId: relatedSourceObject: section: ActivityComposer sourceObject: 0014H00002LbR7QQAV subtype: Create targetObject: Task targetUrl: type: QuickAction - actionListContext: Record actionTarget: /services/data/v58.0/quickActions/NewEvent/describe actionTargetType: Describe apiName: Global.NewEvent externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:09D58000002PE2j iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_event_120.png id: 0JV4H0000328012WAA isMassAction: 'false' label: New Event lwcComponent: primaryColor: FF538A relatedListRecordId: relatedSourceObject: section: ActivityComposer sourceObject: 0014H00002LbR7QQAV subtype: Create targetObject: Event targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: apiName: FeedItem.TextPost externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:FeedItem.TextPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_post_120.png id: 0JV4H0000328013WAA isMassAction: 'false' label: Post lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: CollaborateComposer sourceObject: 0014H00002LbR7QQAV subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: Edit externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:StandardButton:Edit iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/edit_120.png id: 0JV4H0000328014WAA isMassAction: 'false' label: Edit lwcComponent: dxp_records:lwcEditActionHandler primaryColor: 06A59A relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: ScreenAction targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: apiName: FeedItem.ContentPost externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:FeedItem.ContentPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_file_120.png id: 0JV4H0000328015WAA isMassAction: 'false' label: File lwcComponent: primaryColor: '939393' relatedListRecordId: relatedSourceObject: section: sourceObject: 0014H00002LbR7QQAV subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Record actionTarget: /services/data/v58.0/quickActions/NewContact/describe actionTargetType: Describe apiName: Global.NewContact externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:09D58000002PE2k iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_contact_120.png id: 0JV4H0000328016WAA isMassAction: 'false' label: New Contact lwcComponent: primaryColor: '5867E8' relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: Create targetObject: Contact targetUrl: type: QuickAction - actionListContext: Record actionTarget: /services/data/v58.0/quickActions/LogACall/describe actionTargetType: Describe apiName: Global.LogACall externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:09D58000002PE2g iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/log_a_call_120.png id: 0JV4H0000328017WAA isMassAction: 'false' label: Log a Call lwcComponent: primaryColor: 06A59A relatedListRecordId: relatedSourceObject: section: ActivityComposer sourceObject: 0014H00002LbR7QQAV subtype: LogACall targetObject: Task targetUrl: type: QuickAction - actionListContext: Record actionTarget: /services/data/v58.0/quickActions/NewOpportunity/describe actionTargetType: Describe apiName: Global.NewOpportunity externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:09D58000002PE2l iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_opportunity_120.png id: 0JV4H0000328018WAA isMassAction: 'false' label: New Opportunity lwcComponent: primaryColor: FF5D2D relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: Create targetObject: Opportunity targetUrl: type: QuickAction - actionListContext: Record actionTarget: /services/data/v58.0/quickActions/NewCase/describe actionTargetType: Describe apiName: Global.NewCase externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:09D58000002PE2h iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_case_120.png id: 0JV4H0000328019WAA isMassAction: 'false' label: New Case lwcComponent: primaryColor: FF5D2D relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: Create targetObject: Case targetUrl: type: QuickAction - actionListContext: Record actionTarget: /services/data/v58.0/quickActions/NewLead/describe actionTargetType: Describe apiName: Global.NewLead externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:09D58000002PE2m iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_lead_120.png id: 0JV4H0000328020WAA isMassAction: 'false' label: New Lead lwcComponent: primaryColor: FF5D2D relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: Create targetObject: Lead targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: apiName: FeedItem.LinkPost externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:FeedItem.LinkPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_link_120.png id: 0JV4H0000328021WAA isMassAction: 'false' label: Link lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: sourceObject: 0014H00002LbR7QQAV subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: apiName: FeedItem.PollPost externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:FeedItem.PollPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_poll_120.png id: 0JV4H0000328022WAA isMassAction: 'false' label: Poll lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: CollaborateComposer sourceObject: 0014H00002LbR7QQAV subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: apiName: FeedItem.QuestionPost externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:FeedItem.QuestionPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/question_post_action_120.png id: 0JV4H0000328023WAA isMassAction: 'false' label: Question lwcComponent: primaryColor: 3BA755 relatedListRecordId: relatedSourceObject: section: CollaborateComposer sourceObject: 0014H00002LbR7QQAV subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Record actionTarget: /services/data/v58.0/quickActions/New_Detailed_Account/describe actionTargetType: Describe apiName: Global.New_Detailed_Account externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:09D58000002Pbt9 iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_account_120.png id: 0JV4H0000328024WAA isMassAction: 'false' label: New Detailed Account lwcComponent: primaryColor: '5867E8' relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: Create targetObject: Account targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: ChangeOwnerOne externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:StandardButton:ChangeOwnerOne iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/change_owner_120.png id: 0JV4H0000328025WAA isMassAction: 'false' label: Change Owner lwcComponent: primaryColor: 107CAD relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: Delete externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:StandardButton:Delete iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/delete_120.png id: 0JV4H0000328026WAA isMassAction: 'false' label: Delete lwcComponent: primaryColor: FF538A relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: AccountHierarchy externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:StandardButton:AccountHierarchy iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000328027WAA isMassAction: 'false' label: View Account Hierarchy lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: IncludeOffline externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:StandardButton:IncludeOffline iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000328028WAA isMassAction: 'false' label: Include Offline lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: EnableAsPartner externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:StandardButton:EnableAsPartner iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000328029WAA isMassAction: 'false' label: Enable As Partner lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: XClean externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:StandardButton:XClean iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000328030WAA isMassAction: 'false' label: Check for New Data lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: PrintableView externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:StandardButton:PrintableView iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000328031WAA isMassAction: 'false' label: Printable View lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: apiName: WebsiteHighlightAction externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Record:Desktop:ProductivityAction:WebsiteHighlightAction iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/web_link_120.png id: 0JV4H0000328032WAA isMassAction: 'false' label: View Website lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: targetObject: Account targetUrl: type: ProductivityAction links: - >- /services/data/v58.0/ui-api/actions/record/0014H00002LbR7QQAV/record-edit - >- /services/data/v58.0/ui-api/actions/record/0014H00002LbR7QQAV/related-list - >- /services/data/v58.0/ui-api/actions/record/0014H00002LbR7QQAV/related-list-record/${relatedRecordId} url: /services/data/v58.0/ui-api/actions/record/0014H00002LbR7QQAV Actions3: title: Actions3 required: - actionListContext - actionTarget - actionTargetType - apiName - externalId - iconUrl - id - isMassAction - label - lwcComponent - primaryColor - relatedListRecordId - relatedSourceObject - section - sourceObject - subtype - targetObject - targetUrl - type type: object properties: actionListContext: type: string example: example_value actionTarget: type: - string - 'null' example: example_value actionTargetType: type: - string - 'null' example: example_value apiName: type: string example: example_value externalId: type: string example: '500123' iconUrl: type: string example: https://www.example.com id: type: string example: abc123 isMassAction: type: string example: example_value label: type: string example: Example Title lwcComponent: type: - string - 'null' example: example_value primaryColor: type: - string - 'null' example: example_value relatedListRecordId: type: - string - 'null' example: '500123' relatedSourceObject: type: - string - 'null' example: example_value section: type: - string - 'null' example: example_value sourceObject: type: string example: example_value subtype: type: - string - 'null' example: example_value targetObject: type: - string - 'null' example: example_value targetUrl: type: - string - 'null' example: https://www.example.com type: type: string example: example_value examples: - actionListContext: Chatter actionTarget: actionTargetType: Invoke apiName: Follow externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::Chatter:Desktop:StandardButton:Follow iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/follow_120.png id: 0JV4H0000328007WAA isMassAction: 'false' label: Follow lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: SingleActionLinks sourceObject: 0014H00002LbR7QQAV subtype: targetObject: Account targetUrl: type: StandardButton 00158000006QBOhAAO: title: 00158000006QBOhAAO required: - actions - links - url type: object properties: actions: type: array items: $ref: '#/components/schemas/Actions3' description: '' example: [] links: type: array items: type: string description: '' example: [] url: type: string example: https://www.example.com examples: - actions: - actionListContext: Chatter actionTarget: actionTargetType: Invoke apiName: Follow externalId: >- 00D58000000arpq:00158000006QBOhAAO::Chatter:Desktop:StandardButton:Follow iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/follow_120.png id: 0JV4H0000328009WAA isMassAction: 'false' label: Follow lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: SingleActionLinks sourceObject: 00158000006QBOhAAO subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Chatter actionTarget: actionTargetType: apiName: FollowInStream externalId: >- 00D58000000arpq:00158000006QBOhAAO::Chatter:Desktop:StandardButton:FollowInStream iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/follow_120.png id: 0JV4H0000328010WAA isMassAction: 'false' label: Follow in Stream lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: SingleActionLinks sourceObject: 00158000006QBOhAAO subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: /services/data/v58.0/quickActions/NewTask/describe actionTargetType: Describe apiName: Global.NewTask externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:09D58000002PE2f iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_task_120.png id: 0JV4H0000328033WAA isMassAction: 'false' label: New Task lwcComponent: primaryColor: 3BA755 relatedListRecordId: relatedSourceObject: section: ActivityComposer sourceObject: 00158000006QBOhAAO subtype: Create targetObject: Task targetUrl: type: QuickAction - actionListContext: Record actionTarget: /services/data/v58.0/quickActions/NewEvent/describe actionTargetType: Describe apiName: Global.NewEvent externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:09D58000002PE2j iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_event_120.png id: 0JV4H0000328034WAA isMassAction: 'false' label: New Event lwcComponent: primaryColor: FF538A relatedListRecordId: relatedSourceObject: section: ActivityComposer sourceObject: 00158000006QBOhAAO subtype: Create targetObject: Event targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: apiName: FeedItem.TextPost externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:FeedItem.TextPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_post_120.png id: 0JV4H0000328035WAA isMassAction: 'false' label: Post lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: CollaborateComposer sourceObject: 00158000006QBOhAAO subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: Edit externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:StandardButton:Edit iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/edit_120.png id: 0JV4H0000328036WAA isMassAction: 'false' label: Edit lwcComponent: dxp_records:lwcEditActionHandler primaryColor: 06A59A relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: ScreenAction targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: apiName: FeedItem.ContentPost externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:FeedItem.ContentPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_file_120.png id: 0JV4H0000328037WAA isMassAction: 'false' label: File lwcComponent: primaryColor: '939393' relatedListRecordId: relatedSourceObject: section: sourceObject: 00158000006QBOhAAO subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Record actionTarget: /services/data/v58.0/quickActions/NewContact/describe actionTargetType: Describe apiName: Global.NewContact externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:09D58000002PE2k iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_contact_120.png id: 0JV4H0000328038WAA isMassAction: 'false' label: New Contact lwcComponent: primaryColor: '5867E8' relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: Create targetObject: Contact targetUrl: type: QuickAction - actionListContext: Record actionTarget: /services/data/v58.0/quickActions/LogACall/describe actionTargetType: Describe apiName: Global.LogACall externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:09D58000002PE2g iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/log_a_call_120.png id: 0JV4H0000328039WAA isMassAction: 'false' label: Log a Call lwcComponent: primaryColor: 06A59A relatedListRecordId: relatedSourceObject: section: ActivityComposer sourceObject: 00158000006QBOhAAO subtype: LogACall targetObject: Task targetUrl: type: QuickAction - actionListContext: Record actionTarget: /services/data/v58.0/quickActions/NewOpportunity/describe actionTargetType: Describe apiName: Global.NewOpportunity externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:09D58000002PE2l iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_opportunity_120.png id: 0JV4H0000328040WAA isMassAction: 'false' label: New Opportunity lwcComponent: primaryColor: FF5D2D relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: Create targetObject: Opportunity targetUrl: type: QuickAction - actionListContext: Record actionTarget: /services/data/v58.0/quickActions/NewCase/describe actionTargetType: Describe apiName: Global.NewCase externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:09D58000002PE2h iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_case_120.png id: 0JV4H0000328041WAA isMassAction: 'false' label: New Case lwcComponent: primaryColor: FF5D2D relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: Create targetObject: Case targetUrl: type: QuickAction - actionListContext: Record actionTarget: /services/data/v58.0/quickActions/NewLead/describe actionTargetType: Describe apiName: Global.NewLead externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:09D58000002PE2m iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_lead_120.png id: 0JV4H0000328042WAA isMassAction: 'false' label: New Lead lwcComponent: primaryColor: FF5D2D relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: Create targetObject: Lead targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: apiName: FeedItem.LinkPost externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:FeedItem.LinkPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_link_120.png id: 0JV4H0000328043WAA isMassAction: 'false' label: Link lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: sourceObject: 00158000006QBOhAAO subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: apiName: FeedItem.PollPost externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:FeedItem.PollPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/share_poll_120.png id: 0JV4H0000328044WAA isMassAction: 'false' label: Poll lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: CollaborateComposer sourceObject: 00158000006QBOhAAO subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: apiName: FeedItem.QuestionPost externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:FeedItem.QuestionPost iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/question_post_action_120.png id: 0JV4H0000328045WAA isMassAction: 'false' label: Question lwcComponent: primaryColor: 3BA755 relatedListRecordId: relatedSourceObject: section: CollaborateComposer sourceObject: 00158000006QBOhAAO subtype: Post targetObject: targetUrl: type: QuickAction - actionListContext: Record actionTarget: /services/data/v58.0/quickActions/New_Detailed_Account/describe actionTargetType: Describe apiName: Global.New_Detailed_Account externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:09D58000002Pbt9 iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_account_120.png id: 0JV4H0000328046WAA isMassAction: 'false' label: New Detailed Account lwcComponent: primaryColor: '5867E8' relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: Create targetObject: Account targetUrl: type: QuickAction - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: ChangeOwnerOne externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:StandardButton:ChangeOwnerOne iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/change_owner_120.png id: 0JV4H0000328047WAA isMassAction: 'false' label: Change Owner lwcComponent: primaryColor: 107CAD relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: Delete externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:StandardButton:Delete iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/delete_120.png id: 0JV4H0000328048WAA isMassAction: 'false' label: Delete lwcComponent: primaryColor: FF538A relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: AccountHierarchy externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:StandardButton:AccountHierarchy iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000328049WAA isMassAction: 'false' label: View Account Hierarchy lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: IncludeOffline externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:StandardButton:IncludeOffline iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000328050WAA isMassAction: 'false' label: Include Offline lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: EnableAsPartner externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:StandardButton:EnableAsPartner iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000328051WAA isMassAction: 'false' label: Enable As Partner lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: XClean externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:StandardButton:XClean iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000328052WAA isMassAction: 'false' label: Check for New Data lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: Invoke apiName: PrintableView externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:StandardButton:PrintableView iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000328053WAA isMassAction: 'false' label: Printable View lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: Record actionTarget: actionTargetType: apiName: WebsiteHighlightAction externalId: >- 00D58000000arpq:00158000006QBOhAAO::Record:Desktop:ProductivityAction:WebsiteHighlightAction iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/web_link_120.png id: 0JV4H0000328054WAA isMassAction: 'false' label: View Website lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00158000006QBOhAAO subtype: targetObject: Account targetUrl: type: ProductivityAction links: - >- /services/data/v58.0/ui-api/actions/record/00158000006QBOhAAO/record-edit - >- /services/data/v58.0/ui-api/actions/record/00158000006QBOhAAO/related-list - >- /services/data/v58.0/ui-api/actions/record/00158000006QBOhAAO/related-list-record/${relatedRecordId} url: /services/data/v58.0/ui-api/actions/record/00158000006QBOhAAO GetRecordEditPageActions: title: GetRecordEditPageActions required: - actions - eTag - url type: object properties: actions: $ref: '#/components/schemas/Actions5' eTag: type: string example: example_value url: type: string example: https://www.example.com examples: - actions: 0014H00002LbR7QQAV: actions: - actionListContext: RecordEdit actionTarget: actionTargetType: Invoke apiName: SaveEdit externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::RecordEdit:Desktop:StandardButton:SaveEdit iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000350887WAA isMassAction: 'false' label: Save lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: LightningWebComponent_Action targetObject: Account targetUrl: type: StandardButton - actionListContext: RecordEdit actionTarget: actionTargetType: Invoke apiName: SaveAndNew externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::RecordEdit:Desktop:StandardButton:SaveAndNew iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000350888WAA isMassAction: 'false' label: Save & New lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: LightningWebComponent_Action targetObject: Account targetUrl: type: StandardButton - actionListContext: RecordEdit actionTarget: actionTargetType: Invoke apiName: CancelEdit externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::RecordEdit:Desktop:StandardButton:CancelEdit iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000350889WAA isMassAction: 'false' label: Cancel lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: LightningWebComponent_Action targetObject: Account targetUrl: type: StandardButton links: [] url: >- /services/data/v58.0/ui-api/actions/record/0014H00002LbR7QQAV/record-edit eTag: 550367168889732c414e90f1a22d15af url: >- /services/data/v58.0/ui-api/actions/record/0014H00002LbR7QQAV/record-edit Actions5: title: Actions5 required: - 0014H00002LbR7QQAV type: object properties: 0014H00002LbR7QQAV: $ref: '#/components/schemas/0014H00002LbR7QQAV1' examples: - 0014H00002LbR7QQAV: actions: - actionListContext: RecordEdit actionTarget: actionTargetType: Invoke apiName: SaveEdit externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::RecordEdit:Desktop:StandardButton:SaveEdit iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000350887WAA isMassAction: 'false' label: Save lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: LightningWebComponent_Action targetObject: Account targetUrl: type: StandardButton - actionListContext: RecordEdit actionTarget: actionTargetType: Invoke apiName: SaveAndNew externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::RecordEdit:Desktop:StandardButton:SaveAndNew iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000350888WAA isMassAction: 'false' label: Save & New lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: LightningWebComponent_Action targetObject: Account targetUrl: type: StandardButton - actionListContext: RecordEdit actionTarget: actionTargetType: Invoke apiName: CancelEdit externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::RecordEdit:Desktop:StandardButton:CancelEdit iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000350889WAA isMassAction: 'false' label: Cancel lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: LightningWebComponent_Action targetObject: Account targetUrl: type: StandardButton links: [] url: >- /services/data/v58.0/ui-api/actions/record/0014H00002LbR7QQAV/record-edit 0014H00002LbR7QQAV1: title: 0014H00002LbR7QQAV1 required: - actions - links - url type: object properties: actions: type: array items: $ref: '#/components/schemas/Actions6' description: '' example: [] links: type: array items: type: string description: '' example: [] url: type: string example: https://www.example.com examples: - actions: - actionListContext: RecordEdit actionTarget: actionTargetType: Invoke apiName: SaveEdit externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::RecordEdit:Desktop:StandardButton:SaveEdit iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000350887WAA isMassAction: 'false' label: Save lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: LightningWebComponent_Action targetObject: Account targetUrl: type: StandardButton - actionListContext: RecordEdit actionTarget: actionTargetType: Invoke apiName: SaveAndNew externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::RecordEdit:Desktop:StandardButton:SaveAndNew iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000350888WAA isMassAction: 'false' label: Save & New lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: LightningWebComponent_Action targetObject: Account targetUrl: type: StandardButton - actionListContext: RecordEdit actionTarget: actionTargetType: Invoke apiName: CancelEdit externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::RecordEdit:Desktop:StandardButton:CancelEdit iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000350889WAA isMassAction: 'false' label: Cancel lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: LightningWebComponent_Action targetObject: Account targetUrl: type: StandardButton links: [] url: >- /services/data/v58.0/ui-api/actions/record/0014H00002LbR7QQAV/record-edit Actions6: title: Actions6 required: - actionListContext - actionTarget - actionTargetType - apiName - externalId - iconUrl - id - isMassAction - label - lwcComponent - primaryColor - relatedListRecordId - relatedSourceObject - section - sourceObject - subtype - targetObject - targetUrl - type type: object properties: actionListContext: type: string example: example_value actionTarget: type: - string - 'null' example: example_value actionTargetType: type: string example: example_value apiName: type: string example: example_value externalId: type: string example: '500123' iconUrl: type: string example: https://www.example.com id: type: string example: abc123 isMassAction: type: string example: example_value label: type: string example: Example Title lwcComponent: type: - string - 'null' example: example_value primaryColor: type: - string - 'null' example: example_value relatedListRecordId: type: - string - 'null' example: '500123' relatedSourceObject: type: - string - 'null' example: example_value section: type: string example: example_value sourceObject: type: string example: example_value subtype: type: string example: example_value targetObject: type: string example: example_value targetUrl: type: - string - 'null' example: https://www.example.com type: type: string example: example_value examples: - actionListContext: RecordEdit actionTarget: actionTargetType: Invoke apiName: SaveEdit externalId: >- 00D58000000arpq:0014H00002LbR7QQAV::RecordEdit:Desktop:StandardButton:SaveEdit iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000350887WAA isMassAction: 'false' label: Save lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0014H00002LbR7QQAV subtype: LightningWebComponent_Action targetObject: Account targetUrl: type: StandardButton GetRelatedListActions: title: GetRelatedListActions required: - actions - eTag - url type: object properties: actions: $ref: '#/components/schemas/Actions7' eTag: type: string example: example_value url: type: string example: https://www.example.com examples: - actions: 00158000006QBOhAAO: actions: - actionListContext: RelatedList actionTarget: actionTargetType: Invoke apiName: NewContact externalId: >- 00D58000000arpq:00158000006QBOhAAO::RelatedList:Desktop:StandardButton:NewContact iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_contact_120.png id: 0JV4H0000119415WAA isMassAction: 'false' label: New lwcComponent: primaryColor: '5867E8' relatedListRecordId: relatedSourceObject: Contacts section: Page sourceObject: 00158000006QBOhAAO subtype: targetObject: Contact targetUrl: type: StandardButton links: [] url: >- /services/data/v58.0/ui-api/actions/record/00158000006QBOhAAO/related-list/Contacts eTag: a20a5831cc59f674f527261d7469d62d url: >- /services/data/v58.0/ui-api/actions/record/00158000006QBOhAAO/related-list/Contacts Actions7: title: Actions7 required: - 00158000006QBOhAAO type: object properties: 00158000006QBOhAAO: $ref: '#/components/schemas/00158000006QBOhAAO1' examples: - 00158000006QBOhAAO: actions: - actionListContext: RelatedList actionTarget: actionTargetType: Invoke apiName: NewContact externalId: >- 00D58000000arpq:00158000006QBOhAAO::RelatedList:Desktop:StandardButton:NewContact iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_contact_120.png id: 0JV4H0000119415WAA isMassAction: 'false' label: New lwcComponent: primaryColor: '5867E8' relatedListRecordId: relatedSourceObject: Contacts section: Page sourceObject: 00158000006QBOhAAO subtype: targetObject: Contact targetUrl: type: StandardButton links: [] url: >- /services/data/v58.0/ui-api/actions/record/00158000006QBOhAAO/related-list/Contacts 00158000006QBOhAAO1: title: 00158000006QBOhAAO1 required: - actions - links - url type: object properties: actions: type: array items: $ref: '#/components/schemas/Actions8' description: '' example: [] links: type: array items: type: string description: '' example: [] url: type: string example: https://www.example.com examples: - actions: - actionListContext: RelatedList actionTarget: actionTargetType: Invoke apiName: NewContact externalId: >- 00D58000000arpq:00158000006QBOhAAO::RelatedList:Desktop:StandardButton:NewContact iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_contact_120.png id: 0JV4H0000119415WAA isMassAction: 'false' label: New lwcComponent: primaryColor: '5867E8' relatedListRecordId: relatedSourceObject: Contacts section: Page sourceObject: 00158000006QBOhAAO subtype: targetObject: Contact targetUrl: type: StandardButton links: [] url: >- /services/data/v58.0/ui-api/actions/record/00158000006QBOhAAO/related-list/Contacts Actions8: title: Actions8 required: - actionListContext - actionTarget - actionTargetType - apiName - externalId - iconUrl - id - isMassAction - label - lwcComponent - primaryColor - relatedListRecordId - relatedSourceObject - section - sourceObject - subtype - targetObject - targetUrl - type type: object properties: actionListContext: type: string example: example_value actionTarget: type: - string - 'null' example: example_value actionTargetType: type: string example: example_value apiName: type: string example: example_value externalId: type: string example: '500123' iconUrl: type: string example: https://www.example.com id: type: string example: abc123 isMassAction: type: string example: example_value label: type: string example: Example Title lwcComponent: type: - string - 'null' example: example_value primaryColor: type: string example: example_value relatedListRecordId: type: - string - 'null' example: '500123' relatedSourceObject: type: string example: example_value section: type: string example: example_value sourceObject: type: string example: example_value subtype: type: - string - 'null' example: example_value targetObject: type: string example: example_value targetUrl: type: - string - 'null' example: https://www.example.com type: type: string example: example_value examples: - actionListContext: RelatedList actionTarget: actionTargetType: Invoke apiName: NewContact externalId: >- 00D58000000arpq:00158000006QBOhAAO::RelatedList:Desktop:StandardButton:NewContact iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_contact_120.png id: 0JV4H0000119415WAA isMassAction: 'false' label: New lwcComponent: primaryColor: '5867E8' relatedListRecordId: relatedSourceObject: Contacts section: Page sourceObject: 00158000006QBOhAAO subtype: targetObject: Contact targetUrl: type: StandardButton GetRelatedListRecordActions: title: GetRelatedListRecordActions required: - actions - eTag - url type: object properties: actions: $ref: '#/components/schemas/Actions9' eTag: type: string example: example_value url: type: string example: https://www.example.com examples: - actions: 00158000006QBOhAAO: actions: - actionListContext: RelatedListRecord actionTarget: actionTargetType: Invoke apiName: Edit externalId: >- 00D58000000arpq:00158000006QBOhAAO::RelatedListRecord:Desktop:StandardButton:Edit iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/edit_120.png id: 0JV4H0000122896WAA isMassAction: 'false' label: Edit lwcComponent: primaryColor: 06A59A relatedListRecordId: 00358000006woxwAAA relatedSourceObject: Contacts section: Page sourceObject: 00158000006QBOhAAO subtype: targetObject: Contact targetUrl: type: StandardButton - actionListContext: RelatedListRecord actionTarget: actionTargetType: Invoke apiName: Delete externalId: >- 00D58000000arpq:00158000006QBOhAAO::RelatedListRecord:Desktop:StandardButton:Delete iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/delete_120.png id: 0JV4H0000122897WAA isMassAction: 'false' label: Delete lwcComponent: primaryColor: FF538A relatedListRecordId: 00358000006woxwAAA relatedSourceObject: Contacts section: Page sourceObject: 00158000006QBOhAAO subtype: targetObject: Contact targetUrl: type: StandardButton links: [] url: >- /services/data/v58.0/ui-api/actions/record/00158000006QBOhAAO/related-list-record/00358000006woxwAAA eTag: f29ba79a7eda15543fca804e0e88bea6 url: >- /services/data/v58.0/ui-api/actions/record/00158000006QBOhAAO/related-list-record/00358000006woxwAAA Actions9: title: Actions9 required: - 00158000006QBOhAAO type: object properties: 00158000006QBOhAAO: $ref: '#/components/schemas/00158000006QBOhAAO2' examples: - 00158000006QBOhAAO: actions: - actionListContext: RelatedListRecord actionTarget: actionTargetType: Invoke apiName: Edit externalId: >- 00D58000000arpq:00158000006QBOhAAO::RelatedListRecord:Desktop:StandardButton:Edit iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/edit_120.png id: 0JV4H0000122896WAA isMassAction: 'false' label: Edit lwcComponent: primaryColor: 06A59A relatedListRecordId: 00358000006woxwAAA relatedSourceObject: Contacts section: Page sourceObject: 00158000006QBOhAAO subtype: targetObject: Contact targetUrl: type: StandardButton - actionListContext: RelatedListRecord actionTarget: actionTargetType: Invoke apiName: Delete externalId: >- 00D58000000arpq:00158000006QBOhAAO::RelatedListRecord:Desktop:StandardButton:Delete iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/delete_120.png id: 0JV4H0000122897WAA isMassAction: 'false' label: Delete lwcComponent: primaryColor: FF538A relatedListRecordId: 00358000006woxwAAA relatedSourceObject: Contacts section: Page sourceObject: 00158000006QBOhAAO subtype: targetObject: Contact targetUrl: type: StandardButton links: [] url: >- /services/data/v58.0/ui-api/actions/record/00158000006QBOhAAO/related-list-record/00358000006woxwAAA 00158000006QBOhAAO2: title: 00158000006QBOhAAO2 required: - actions - links - url type: object properties: actions: type: array items: $ref: '#/components/schemas/Actions10' description: '' example: [] links: type: array items: type: string description: '' example: [] url: type: string example: https://www.example.com examples: - actions: - actionListContext: RelatedListRecord actionTarget: actionTargetType: Invoke apiName: Edit externalId: >- 00D58000000arpq:00158000006QBOhAAO::RelatedListRecord:Desktop:StandardButton:Edit iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/edit_120.png id: 0JV4H0000122896WAA isMassAction: 'false' label: Edit lwcComponent: primaryColor: 06A59A relatedListRecordId: 00358000006woxwAAA relatedSourceObject: Contacts section: Page sourceObject: 00158000006QBOhAAO subtype: targetObject: Contact targetUrl: type: StandardButton - actionListContext: RelatedListRecord actionTarget: actionTargetType: Invoke apiName: Delete externalId: >- 00D58000000arpq:00158000006QBOhAAO::RelatedListRecord:Desktop:StandardButton:Delete iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/delete_120.png id: 0JV4H0000122897WAA isMassAction: 'false' label: Delete lwcComponent: primaryColor: FF538A relatedListRecordId: 00358000006woxwAAA relatedSourceObject: Contacts section: Page sourceObject: 00158000006QBOhAAO subtype: targetObject: Contact targetUrl: type: StandardButton links: [] url: >- /services/data/v58.0/ui-api/actions/record/00158000006QBOhAAO/related-list-record/00358000006woxwAAA Actions10: title: Actions10 required: - actionListContext - actionTarget - actionTargetType - apiName - externalId - iconUrl - id - isMassAction - label - lwcComponent - primaryColor - relatedListRecordId - relatedSourceObject - section - sourceObject - subtype - targetObject - targetUrl - type type: object properties: actionListContext: type: string example: example_value actionTarget: type: - string - 'null' example: example_value actionTargetType: type: string example: example_value apiName: type: string example: example_value externalId: type: string example: '500123' iconUrl: type: string example: https://www.example.com id: type: string example: abc123 isMassAction: type: string example: example_value label: type: string example: Example Title lwcComponent: type: - string - 'null' example: example_value primaryColor: type: string example: example_value relatedListRecordId: type: string example: '500123' relatedSourceObject: type: string example: example_value section: type: string example: example_value sourceObject: type: string example: example_value subtype: type: - string - 'null' example: example_value targetObject: type: string example: example_value targetUrl: type: - string - 'null' example: https://www.example.com type: type: string example: example_value examples: - actionListContext: RelatedListRecord actionTarget: actionTargetType: Invoke apiName: Edit externalId: >- 00D58000000arpq:00158000006QBOhAAO::RelatedListRecord:Desktop:StandardButton:Edit iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/edit_120.png id: 0JV4H0000122896WAA isMassAction: 'false' label: Edit lwcComponent: primaryColor: 06A59A relatedListRecordId: 00358000006woxwAAA relatedSourceObject: Contacts section: Page sourceObject: 00158000006QBOhAAO subtype: targetObject: Contact targetUrl: type: StandardButton GetListViewHeaderActions: title: GetListViewHeaderActions required: - actions - eTag - url type: object properties: actions: $ref: '#/components/schemas/Actions11' eTag: type: string example: example_value url: type: string example: https://www.example.com examples: - actions: 00B58000002ssinEAA: actions: - actionListContext: ListView actionTarget: actionTargetType: Invoke apiName: EditFilter externalId: >- 00D58000000arpq:00B58000002ssinEAA::ListView:Desktop:StandardButton:EditFilter iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/filter_120.png id: 0JV4H0000132177WAA isMassAction: 'false' label: Filter lwcComponent: primaryColor: 0176D3 relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00B58000002ssinEAA subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: ListView actionTarget: actionTargetType: Invoke apiName: ListSort externalId: >- 00D58000000arpq:00B58000002ssinEAA::ListView:Desktop:StandardButton:ListSort iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/sort_120.png id: 0JV4H0000132178WAA isMassAction: 'false' label: Sort lwcComponent: primaryColor: FF538A relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00B58000002ssinEAA subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: ListView actionTarget: actionTargetType: Invoke apiName: New externalId: >- 00D58000000arpq:00B58000002ssinEAA::ListView:Desktop:StandardButton:New iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_120.png id: 0JV4H0000132179WAA isMassAction: 'false' label: New lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00B58000002ssinEAA subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: ListView actionTarget: actionTargetType: apiName: PrintableListView externalId: >- 00D58000000arpq:00B58000002ssinEAA::ListView:Desktop:StandardButton:PrintableListView iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000132180WAA isMassAction: 'false' label: Printable View lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00B58000002ssinEAA subtype: targetObject: Account targetUrl: type: StandardButton links: [] url: /services/data/v58.0/ui-api/actions/list-view/00B58000002ssinEAA eTag: 6f6e964d38807defe01bd28d144c9c0e url: /services/data/v58.0/ui-api/actions/list-view/00B58000002ssinEAA Actions11: title: Actions11 required: - 00B58000002ssinEAA type: object properties: 00B58000002ssinEAA: $ref: '#/components/schemas/00B58000002ssinEAA' examples: - 00B58000002ssinEAA: actions: - actionListContext: ListView actionTarget: actionTargetType: Invoke apiName: EditFilter externalId: >- 00D58000000arpq:00B58000002ssinEAA::ListView:Desktop:StandardButton:EditFilter iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/filter_120.png id: 0JV4H0000132177WAA isMassAction: 'false' label: Filter lwcComponent: primaryColor: 0176D3 relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00B58000002ssinEAA subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: ListView actionTarget: actionTargetType: Invoke apiName: ListSort externalId: >- 00D58000000arpq:00B58000002ssinEAA::ListView:Desktop:StandardButton:ListSort iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/sort_120.png id: 0JV4H0000132178WAA isMassAction: 'false' label: Sort lwcComponent: primaryColor: FF538A relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00B58000002ssinEAA subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: ListView actionTarget: actionTargetType: Invoke apiName: New externalId: >- 00D58000000arpq:00B58000002ssinEAA::ListView:Desktop:StandardButton:New iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_120.png id: 0JV4H0000132179WAA isMassAction: 'false' label: New lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00B58000002ssinEAA subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: ListView actionTarget: actionTargetType: apiName: PrintableListView externalId: >- 00D58000000arpq:00B58000002ssinEAA::ListView:Desktop:StandardButton:PrintableListView iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000132180WAA isMassAction: 'false' label: Printable View lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00B58000002ssinEAA subtype: targetObject: Account targetUrl: type: StandardButton links: [] url: /services/data/v58.0/ui-api/actions/list-view/00B58000002ssinEAA 00B58000002ssinEAA: title: 00B58000002ssinEAA required: - actions - links - url type: object properties: actions: type: array items: $ref: '#/components/schemas/Actions12' description: '' example: [] links: type: array items: type: string description: '' example: [] url: type: string example: https://www.example.com examples: - actions: - actionListContext: ListView actionTarget: actionTargetType: Invoke apiName: EditFilter externalId: >- 00D58000000arpq:00B58000002ssinEAA::ListView:Desktop:StandardButton:EditFilter iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/filter_120.png id: 0JV4H0000132177WAA isMassAction: 'false' label: Filter lwcComponent: primaryColor: 0176D3 relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00B58000002ssinEAA subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: ListView actionTarget: actionTargetType: Invoke apiName: ListSort externalId: >- 00D58000000arpq:00B58000002ssinEAA::ListView:Desktop:StandardButton:ListSort iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/sort_120.png id: 0JV4H0000132178WAA isMassAction: 'false' label: Sort lwcComponent: primaryColor: FF538A relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00B58000002ssinEAA subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: ListView actionTarget: actionTargetType: Invoke apiName: New externalId: >- 00D58000000arpq:00B58000002ssinEAA::ListView:Desktop:StandardButton:New iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_120.png id: 0JV4H0000132179WAA isMassAction: 'false' label: New lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00B58000002ssinEAA subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: ListView actionTarget: actionTargetType: apiName: PrintableListView externalId: >- 00D58000000arpq:00B58000002ssinEAA::ListView:Desktop:StandardButton:PrintableListView iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000132180WAA isMassAction: 'false' label: Printable View lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00B58000002ssinEAA subtype: targetObject: Account targetUrl: type: StandardButton links: [] url: /services/data/v58.0/ui-api/actions/list-view/00B58000002ssinEAA Actions12: title: Actions12 required: - actionListContext - actionTarget - actionTargetType - apiName - externalId - iconUrl - id - isMassAction - label - lwcComponent - primaryColor - relatedListRecordId - relatedSourceObject - section - sourceObject - subtype - targetObject - targetUrl - type type: object properties: actionListContext: type: string example: example_value actionTarget: type: - string - 'null' example: example_value actionTargetType: type: - string - 'null' example: example_value apiName: type: string example: example_value externalId: type: string example: '500123' iconUrl: type: string example: https://www.example.com id: type: string example: abc123 isMassAction: type: string example: example_value label: type: string example: Example Title lwcComponent: type: - string - 'null' example: example_value primaryColor: type: - string - 'null' example: example_value relatedListRecordId: type: - string - 'null' example: '500123' relatedSourceObject: type: - string - 'null' example: example_value section: type: string example: example_value sourceObject: type: string example: example_value subtype: type: - string - 'null' example: example_value targetObject: type: string example: example_value targetUrl: type: - string - 'null' example: https://www.example.com type: type: string example: example_value examples: - actionListContext: ListView actionTarget: actionTargetType: Invoke apiName: EditFilter externalId: >- 00D58000000arpq:00B58000002ssinEAA::ListView:Desktop:StandardButton:EditFilter iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/filter_120.png id: 0JV4H0000132177WAA isMassAction: 'false' label: Filter lwcComponent: primaryColor: 0176D3 relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00B58000002ssinEAA subtype: targetObject: Account targetUrl: type: StandardButton GetListViewRecordActions: title: GetListViewRecordActions required: - actions - eTag - url type: object properties: actions: $ref: '#/components/schemas/Actions13' eTag: type: string example: example_value url: type: string example: https://www.example.com examples: - actions: 00358000006woxwAAA: actions: - actionListContext: ListViewRecord actionTarget: actionTargetType: Invoke apiName: Edit externalId: >- 00D58000000arpq:00358000006woxwAAA::ListViewRecord:Desktop:StandardButton:Edit iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/edit_120.png id: 0JV4H0000382730WAA isMassAction: 'false' label: Edit lwcComponent: primaryColor: 06A59A relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00358000006woxwAAA subtype: targetObject: Contact targetUrl: type: StandardButton - actionListContext: ListViewRecord actionTarget: actionTargetType: Invoke apiName: Delete externalId: >- 00D58000000arpq:00358000006woxwAAA::ListViewRecord:Desktop:StandardButton:Delete iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/delete_120.png id: 0JV4H0000382731WAA isMassAction: 'false' label: Delete lwcComponent: primaryColor: FF538A relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00358000006woxwAAA subtype: targetObject: Contact targetUrl: type: StandardButton - actionListContext: ListViewRecord actionTarget: actionTargetType: Invoke apiName: ChangeOwnerOne externalId: >- 00D58000000arpq:00358000006woxwAAA::ListViewRecord:Desktop:StandardButton:ChangeOwnerOne iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/change_owner_120.png id: 0JV4H0000382732WAA isMassAction: 'false' label: Change Owner lwcComponent: primaryColor: 107CAD relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00358000006woxwAAA subtype: targetObject: Contact targetUrl: type: StandardButton links: [] url: >- /services/data/v58.0/ui-api/actions/list-view-record/00358000006woxwAAA eTag: 1baaebae684ef749af218f59bf4b1d4d url: >- /services/data/v58.0/ui-api/actions/list-view-record/00358000006woxwAAA Actions13: title: Actions13 required: - 00358000006woxwAAA type: object properties: 00358000006woxwAAA: $ref: '#/components/schemas/00358000006woxwAAA' examples: - 00358000006woxwAAA: actions: - actionListContext: ListViewRecord actionTarget: actionTargetType: Invoke apiName: Edit externalId: >- 00D58000000arpq:00358000006woxwAAA::ListViewRecord:Desktop:StandardButton:Edit iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/edit_120.png id: 0JV4H0000382730WAA isMassAction: 'false' label: Edit lwcComponent: primaryColor: 06A59A relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00358000006woxwAAA subtype: targetObject: Contact targetUrl: type: StandardButton - actionListContext: ListViewRecord actionTarget: actionTargetType: Invoke apiName: Delete externalId: >- 00D58000000arpq:00358000006woxwAAA::ListViewRecord:Desktop:StandardButton:Delete iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/delete_120.png id: 0JV4H0000382731WAA isMassAction: 'false' label: Delete lwcComponent: primaryColor: FF538A relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00358000006woxwAAA subtype: targetObject: Contact targetUrl: type: StandardButton - actionListContext: ListViewRecord actionTarget: actionTargetType: Invoke apiName: ChangeOwnerOne externalId: >- 00D58000000arpq:00358000006woxwAAA::ListViewRecord:Desktop:StandardButton:ChangeOwnerOne iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/change_owner_120.png id: 0JV4H0000382732WAA isMassAction: 'false' label: Change Owner lwcComponent: primaryColor: 107CAD relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00358000006woxwAAA subtype: targetObject: Contact targetUrl: type: StandardButton links: [] url: >- /services/data/v58.0/ui-api/actions/list-view-record/00358000006woxwAAA 00358000006woxwAAA: title: 00358000006woxwAAA required: - actions - links - url type: object properties: actions: type: array items: $ref: '#/components/schemas/Actions14' description: '' example: [] links: type: array items: type: string description: '' example: [] url: type: string example: https://www.example.com examples: - actions: - actionListContext: ListViewRecord actionTarget: actionTargetType: Invoke apiName: Edit externalId: >- 00D58000000arpq:00358000006woxwAAA::ListViewRecord:Desktop:StandardButton:Edit iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/edit_120.png id: 0JV4H0000382730WAA isMassAction: 'false' label: Edit lwcComponent: primaryColor: 06A59A relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00358000006woxwAAA subtype: targetObject: Contact targetUrl: type: StandardButton - actionListContext: ListViewRecord actionTarget: actionTargetType: Invoke apiName: Delete externalId: >- 00D58000000arpq:00358000006woxwAAA::ListViewRecord:Desktop:StandardButton:Delete iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/delete_120.png id: 0JV4H0000382731WAA isMassAction: 'false' label: Delete lwcComponent: primaryColor: FF538A relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00358000006woxwAAA subtype: targetObject: Contact targetUrl: type: StandardButton - actionListContext: ListViewRecord actionTarget: actionTargetType: Invoke apiName: ChangeOwnerOne externalId: >- 00D58000000arpq:00358000006woxwAAA::ListViewRecord:Desktop:StandardButton:ChangeOwnerOne iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/change_owner_120.png id: 0JV4H0000382732WAA isMassAction: 'false' label: Change Owner lwcComponent: primaryColor: 107CAD relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00358000006woxwAAA subtype: targetObject: Contact targetUrl: type: StandardButton links: [] url: >- /services/data/v58.0/ui-api/actions/list-view-record/00358000006woxwAAA Actions14: title: Actions14 required: - actionListContext - actionTarget - actionTargetType - apiName - externalId - iconUrl - id - isMassAction - label - lwcComponent - primaryColor - relatedListRecordId - relatedSourceObject - section - sourceObject - subtype - targetObject - targetUrl - type type: object properties: actionListContext: type: string example: example_value actionTarget: type: - string - 'null' example: example_value actionTargetType: type: string example: example_value apiName: type: string example: example_value externalId: type: string example: '500123' iconUrl: type: string example: https://www.example.com id: type: string example: abc123 isMassAction: type: string example: example_value label: type: string example: Example Title lwcComponent: type: - string - 'null' example: example_value primaryColor: type: string example: example_value relatedListRecordId: type: - string - 'null' example: '500123' relatedSourceObject: type: - string - 'null' example: example_value section: type: string example: example_value sourceObject: type: string example: example_value subtype: type: - string - 'null' example: example_value targetObject: type: string example: example_value targetUrl: type: - string - 'null' example: https://www.example.com type: type: string example: example_value examples: - actionListContext: ListViewRecord actionTarget: actionTargetType: Invoke apiName: Edit externalId: >- 00D58000000arpq:00358000006woxwAAA::ListViewRecord:Desktop:StandardButton:Edit iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/edit_120.png id: 0JV4H0000382730WAA isMassAction: 'false' label: Edit lwcComponent: primaryColor: 06A59A relatedListRecordId: relatedSourceObject: section: Page sourceObject: 00358000006woxwAAA subtype: targetObject: Contact targetUrl: type: StandardButton GetListViewChartActions: title: GetListViewChartActions required: - actions - eTag - url type: object properties: actions: $ref: '#/components/schemas/Actions15' eTag: type: string example: example_value url: type: string example: https://www.example.com examples: - actions: ListViewChartInstance: actions: - actionListContext: ObjectHomeChart actionTarget: actionTargetType: apiName: NewObjectHomeChartAction externalId: >- 00D58000000arpq:ListViewChartInstance::ObjectHomeChart:Desktop:StandardButton:NewObjectHomeChartAction iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000138090WAA isMassAction: 'false' label: New Chart lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: ListViewChartInstance subtype: targetObject: ListViewChart targetUrl: type: StandardButton - actionListContext: ObjectHomeChart actionTarget: actionTargetType: apiName: EditObjectHomeChartAction externalId: >- 00D58000000arpq:ListViewChartInstance::ObjectHomeChart:Desktop:StandardButton:EditObjectHomeChartAction iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000138091WAA isMassAction: 'false' label: Edit Chart lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: ListViewChartInstance subtype: targetObject: ListViewChart targetUrl: type: StandardButton - actionListContext: ObjectHomeChart actionTarget: actionTargetType: apiName: DeleteObjectHomeChartAction externalId: >- 00D58000000arpq:ListViewChartInstance::ObjectHomeChart:Desktop:StandardButton:DeleteObjectHomeChartAction iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000138092WAA isMassAction: 'false' label: Delete Chart lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: ListViewChartInstance subtype: targetObject: ListViewChart targetUrl: type: StandardButton links: [] url: >- /services/data/v58.0/ui-api/actions/list-view-chart/ListViewChartInstance eTag: 60c273c4ba34efcc645bd0ce249c8cd4 url: >- /services/data/v58.0/ui-api/actions/list-view-chart/ListViewChartInstance Actions15: title: Actions15 required: - ListViewChartInstance type: object properties: ListViewChartInstance: $ref: '#/components/schemas/ListViewChartInstance' examples: - ListViewChartInstance: actions: - actionListContext: ObjectHomeChart actionTarget: actionTargetType: apiName: NewObjectHomeChartAction externalId: >- 00D58000000arpq:ListViewChartInstance::ObjectHomeChart:Desktop:StandardButton:NewObjectHomeChartAction iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000138090WAA isMassAction: 'false' label: New Chart lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: ListViewChartInstance subtype: targetObject: ListViewChart targetUrl: type: StandardButton - actionListContext: ObjectHomeChart actionTarget: actionTargetType: apiName: EditObjectHomeChartAction externalId: >- 00D58000000arpq:ListViewChartInstance::ObjectHomeChart:Desktop:StandardButton:EditObjectHomeChartAction iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000138091WAA isMassAction: 'false' label: Edit Chart lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: ListViewChartInstance subtype: targetObject: ListViewChart targetUrl: type: StandardButton - actionListContext: ObjectHomeChart actionTarget: actionTargetType: apiName: DeleteObjectHomeChartAction externalId: >- 00D58000000arpq:ListViewChartInstance::ObjectHomeChart:Desktop:StandardButton:DeleteObjectHomeChartAction iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000138092WAA isMassAction: 'false' label: Delete Chart lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: ListViewChartInstance subtype: targetObject: ListViewChart targetUrl: type: StandardButton links: [] url: >- /services/data/v58.0/ui-api/actions/list-view-chart/ListViewChartInstance ListViewChartInstance: title: ListViewChartInstance required: - actions - links - url type: object properties: actions: type: array items: $ref: '#/components/schemas/Actions12' description: '' example: [] links: type: array items: type: string description: '' example: [] url: type: string example: https://www.example.com examples: - actions: - actionListContext: ObjectHomeChart actionTarget: actionTargetType: apiName: NewObjectHomeChartAction externalId: >- 00D58000000arpq:ListViewChartInstance::ObjectHomeChart:Desktop:StandardButton:NewObjectHomeChartAction iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000138090WAA isMassAction: 'false' label: New Chart lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: ListViewChartInstance subtype: targetObject: ListViewChart targetUrl: type: StandardButton - actionListContext: ObjectHomeChart actionTarget: actionTargetType: apiName: EditObjectHomeChartAction externalId: >- 00D58000000arpq:ListViewChartInstance::ObjectHomeChart:Desktop:StandardButton:EditObjectHomeChartAction iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000138091WAA isMassAction: 'false' label: Edit Chart lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: ListViewChartInstance subtype: targetObject: ListViewChart targetUrl: type: StandardButton - actionListContext: ObjectHomeChart actionTarget: actionTargetType: apiName: DeleteObjectHomeChartAction externalId: >- 00D58000000arpq:ListViewChartInstance::ObjectHomeChart:Desktop:StandardButton:DeleteObjectHomeChartAction iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_custom19_120.png id: 0JV4H0000138092WAA isMassAction: 'false' label: Delete Chart lwcComponent: primaryColor: relatedListRecordId: relatedSourceObject: section: Page sourceObject: ListViewChartInstance subtype: targetObject: ListViewChart targetUrl: type: StandardButton links: [] url: >- /services/data/v58.0/ui-api/actions/list-view-chart/ListViewChartInstance GetLightningPageActions: title: GetLightningPageActions required: - actions - eTag - url type: object properties: actions: $ref: '#/components/schemas/Actions17' eTag: type: string example: example_value url: type: string example: https://www.example.com examples: - actions: Sample_Lightning_page: actions: - actionListContext: Flexipage actionTarget: /services/data/v58.0/quickActions/LogACall/describe actionTargetType: Describe apiName: Global.LogACall externalId: >- 00D58000000arpq:Sample_Lightning_page::Flexipage:Desktop:09D58000002PE2g iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/log_a_call_120.png id: 0JV4H0000295294WAA isMassAction: 'false' label: Log a Call lwcComponent: primaryColor: 06A59A relatedListRecordId: relatedSourceObject: section: sourceObject: Sample_Lightning_page subtype: LogACall targetObject: Task targetUrl: type: QuickAction - actionListContext: Flexipage actionTarget: /services/data/v58.0/quickActions/NewAccount/describe actionTargetType: Describe apiName: Global.NewAccount externalId: >- 00D58000000arpq:Sample_Lightning_page::Flexipage:Desktop:09D58000002PE2s iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_account_120.png id: 0JV4H0000295295WAA isMassAction: 'false' label: New Account lwcComponent: primaryColor: '5867E8' relatedListRecordId: relatedSourceObject: section: sourceObject: Sample_Lightning_page subtype: Create targetObject: Account targetUrl: type: QuickAction links: [] url: >- /services/data/v58.0/ui-api/actions/flexipage/Sample_Lightning_page eTag: ff4486597111fb5e059e5dab793c8231 url: /services/data/v58.0/ui-api/actions/flexipage/Sample_Lightning_page Actions17: title: Actions17 required: - Sample_Lightning_page type: object properties: Sample_Lightning_page: $ref: '#/components/schemas/SampleLightningPage' examples: - Sample_Lightning_page: actions: - actionListContext: Flexipage actionTarget: /services/data/v58.0/quickActions/LogACall/describe actionTargetType: Describe apiName: Global.LogACall externalId: >- 00D58000000arpq:Sample_Lightning_page::Flexipage:Desktop:09D58000002PE2g iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/log_a_call_120.png id: 0JV4H0000295294WAA isMassAction: 'false' label: Log a Call lwcComponent: primaryColor: 06A59A relatedListRecordId: relatedSourceObject: section: sourceObject: Sample_Lightning_page subtype: LogACall targetObject: Task targetUrl: type: QuickAction - actionListContext: Flexipage actionTarget: /services/data/v58.0/quickActions/NewAccount/describe actionTargetType: Describe apiName: Global.NewAccount externalId: >- 00D58000000arpq:Sample_Lightning_page::Flexipage:Desktop:09D58000002PE2s iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_account_120.png id: 0JV4H0000295295WAA isMassAction: 'false' label: New Account lwcComponent: primaryColor: '5867E8' relatedListRecordId: relatedSourceObject: section: sourceObject: Sample_Lightning_page subtype: Create targetObject: Account targetUrl: type: QuickAction links: [] url: >- /services/data/v58.0/ui-api/actions/flexipage/Sample_Lightning_page SampleLightningPage: title: SampleLightningPage required: - actions - links - url type: object properties: actions: type: array items: $ref: '#/components/schemas/Actions18' description: '' example: [] links: type: array items: type: string description: '' example: [] url: type: string example: https://www.example.com examples: - actions: - actionListContext: Flexipage actionTarget: /services/data/v58.0/quickActions/LogACall/describe actionTargetType: Describe apiName: Global.LogACall externalId: >- 00D58000000arpq:Sample_Lightning_page::Flexipage:Desktop:09D58000002PE2g iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/log_a_call_120.png id: 0JV4H0000295294WAA isMassAction: 'false' label: Log a Call lwcComponent: primaryColor: 06A59A relatedListRecordId: relatedSourceObject: section: sourceObject: Sample_Lightning_page subtype: LogACall targetObject: Task targetUrl: type: QuickAction - actionListContext: Flexipage actionTarget: /services/data/v58.0/quickActions/NewAccount/describe actionTargetType: Describe apiName: Global.NewAccount externalId: >- 00D58000000arpq:Sample_Lightning_page::Flexipage:Desktop:09D58000002PE2s iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_account_120.png id: 0JV4H0000295295WAA isMassAction: 'false' label: New Account lwcComponent: primaryColor: '5867E8' relatedListRecordId: relatedSourceObject: section: sourceObject: Sample_Lightning_page subtype: Create targetObject: Account targetUrl: type: QuickAction links: [] url: /services/data/v58.0/ui-api/actions/flexipage/Sample_Lightning_page Actions18: title: Actions18 required: - actionListContext - actionTarget - actionTargetType - apiName - externalId - iconUrl - id - isMassAction - label - lwcComponent - primaryColor - relatedListRecordId - relatedSourceObject - section - sourceObject - subtype - targetObject - targetUrl - type type: object properties: actionListContext: type: string example: example_value actionTarget: type: string example: example_value actionTargetType: type: string example: example_value apiName: type: string example: example_value externalId: type: string example: '500123' iconUrl: type: string example: https://www.example.com id: type: string example: abc123 isMassAction: type: string example: example_value label: type: string example: Example Title lwcComponent: type: - string - 'null' example: example_value primaryColor: type: string example: example_value relatedListRecordId: type: - string - 'null' example: '500123' relatedSourceObject: type: - string - 'null' example: example_value section: type: - string - 'null' example: example_value sourceObject: type: string example: example_value subtype: type: string example: example_value targetObject: type: string example: example_value targetUrl: type: - string - 'null' example: https://www.example.com type: type: string example: example_value examples: - actionListContext: Flexipage actionTarget: /services/data/v58.0/quickActions/LogACall/describe actionTargetType: Describe apiName: Global.LogACall externalId: >- 00D58000000arpq:Sample_Lightning_page::Flexipage:Desktop:09D58000002PE2g iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/log_a_call_120.png id: 0JV4H0000295294WAA isMassAction: 'false' label: Log a Call lwcComponent: primaryColor: 06A59A relatedListRecordId: relatedSourceObject: section: sourceObject: Sample_Lightning_page subtype: LogACall targetObject: Task targetUrl: type: QuickAction GetLookupFieldActions: title: GetLookupFieldActions required: - actions - eTag - url type: object properties: actions: $ref: '#/components/schemas/Actions19' eTag: type: string example: example_value url: type: string example: https://www.example.com examples: - actions: Account: actions: - actionListContext: Lookup actionTarget: actionTargetType: Invoke apiName: CreateFromLookup externalId: >- 00D58000000arpq:Account::Lookup:Desktop:StandardButton:CreateFromLookup iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_120.png id: 0JV4H0000327596WAA isMassAction: 'false' label: New lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: Page sourceObject: Account subtype: targetObject: Account targetUrl: type: StandardButton links: [] url: /services/data/v58.0/ui-api/actions/lookup/Account eTag: 1b573078964111c994670eea1c038003 url: /services/data/v58.0/ui-api/actions/lookup/Account Actions19: title: Actions19 required: - Account type: object properties: Account: $ref: '#/components/schemas/Account17' examples: - Account: actions: - actionListContext: Lookup actionTarget: actionTargetType: Invoke apiName: CreateFromLookup externalId: >- 00D58000000arpq:Account::Lookup:Desktop:StandardButton:CreateFromLookup iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_120.png id: 0JV4H0000327596WAA isMassAction: 'false' label: New lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: Page sourceObject: Account subtype: targetObject: Account targetUrl: type: StandardButton links: [] url: /services/data/v58.0/ui-api/actions/lookup/Account Account17: title: Account17 required: - actions - links - url type: object properties: actions: type: array items: $ref: '#/components/schemas/Actions14' description: '' example: [] links: type: array items: type: string description: '' example: [] url: type: string example: https://www.example.com examples: - actions: - actionListContext: Lookup actionTarget: actionTargetType: Invoke apiName: CreateFromLookup externalId: >- 00D58000000arpq:Account::Lookup:Desktop:StandardButton:CreateFromLookup iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_120.png id: 0JV4H0000327596WAA isMassAction: 'false' label: New lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: Page sourceObject: Account subtype: targetObject: Account targetUrl: type: StandardButton links: [] url: /services/data/v58.0/ui-api/actions/lookup/Account GetMRUListViewActions: title: GetMRUListViewActions required: - actions - eTag - url type: object properties: actions: $ref: '#/components/schemas/Actions21' eTag: type: string example: example_value url: type: string example: https://www.example.com examples: - actions: Account: actions: - actionListContext: MruList actionTarget: actionTargetType: Invoke apiName: New externalId: 00D58000000arpq:Account::MruList:Desktop:StandardButton:New iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_120.png id: 0JV4H0000102212WAA isMassAction: 'false' label: New lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: Page sourceObject: Account subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: MruList actionTarget: actionTargetType: apiName: MruListSort externalId: >- 00D58000000arpq:Account::MruList:Desktop:StandardButton:MruListSort iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/sort_120.png id: 0JV4H0000102213WAA isMassAction: 'false' label: Sort lwcComponent: primaryColor: FF538A relatedListRecordId: relatedSourceObject: section: Page sourceObject: Account subtype: targetObject: Account targetUrl: type: StandardButton links: [] url: /services/data/v58.0/ui-api/actions/mru-list/Account eTag: e40070982f76ef03ffdc6f70e91b9321 url: /services/data/v58.0/ui-api/actions/mru-list/Account Actions21: title: Actions21 required: - Account type: object properties: Account: $ref: '#/components/schemas/Account18' examples: - Account: actions: - actionListContext: MruList actionTarget: actionTargetType: Invoke apiName: New externalId: 00D58000000arpq:Account::MruList:Desktop:StandardButton:New iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_120.png id: 0JV4H0000102212WAA isMassAction: 'false' label: New lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: Page sourceObject: Account subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: MruList actionTarget: actionTargetType: apiName: MruListSort externalId: >- 00D58000000arpq:Account::MruList:Desktop:StandardButton:MruListSort iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/sort_120.png id: 0JV4H0000102213WAA isMassAction: 'false' label: Sort lwcComponent: primaryColor: FF538A relatedListRecordId: relatedSourceObject: section: Page sourceObject: Account subtype: targetObject: Account targetUrl: type: StandardButton links: [] url: /services/data/v58.0/ui-api/actions/mru-list/Account Account18: title: Account18 required: - actions - links - url type: object properties: actions: type: array items: $ref: '#/components/schemas/Actions22' description: '' example: [] links: type: array items: type: string description: '' example: [] url: type: string example: https://www.example.com examples: - actions: - actionListContext: MruList actionTarget: actionTargetType: Invoke apiName: New externalId: 00D58000000arpq:Account::MruList:Desktop:StandardButton:New iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_120.png id: 0JV4H0000102212WAA isMassAction: 'false' label: New lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: Page sourceObject: Account subtype: targetObject: Account targetUrl: type: StandardButton - actionListContext: MruList actionTarget: actionTargetType: apiName: MruListSort externalId: >- 00D58000000arpq:Account::MruList:Desktop:StandardButton:MruListSort iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/sort_120.png id: 0JV4H0000102213WAA isMassAction: 'false' label: Sort lwcComponent: primaryColor: FF538A relatedListRecordId: relatedSourceObject: section: Page sourceObject: Account subtype: targetObject: Account targetUrl: type: StandardButton links: [] url: /services/data/v58.0/ui-api/actions/mru-list/Account Actions22: title: Actions22 required: - actionListContext - actionTarget - actionTargetType - apiName - externalId - iconUrl - id - isMassAction - label - lwcComponent - primaryColor - relatedListRecordId - relatedSourceObject - section - sourceObject - subtype - targetObject - targetUrl - type type: object properties: actionListContext: type: string example: example_value actionTarget: type: - string - 'null' example: example_value actionTargetType: type: - string - 'null' example: example_value apiName: type: string example: example_value externalId: type: string example: '500123' iconUrl: type: string example: https://www.example.com id: type: string example: abc123 isMassAction: type: string example: example_value label: type: string example: Example Title lwcComponent: type: - string - 'null' example: example_value primaryColor: type: string example: example_value relatedListRecordId: type: - string - 'null' example: '500123' relatedSourceObject: type: - string - 'null' example: example_value section: type: string example: example_value sourceObject: type: string example: example_value subtype: type: - string - 'null' example: example_value targetObject: type: string example: example_value targetUrl: type: - string - 'null' example: https://www.example.com type: type: string example: example_value examples: - actionListContext: MruList actionTarget: actionTargetType: Invoke apiName: New externalId: 00D58000000arpq:Account::MruList:Desktop:StandardButton:New iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/new_120.png id: 0JV4H0000102212WAA isMassAction: 'false' label: New lwcComponent: primaryColor: 1B96FF relatedListRecordId: relatedSourceObject: section: Page sourceObject: Account subtype: targetObject: Account targetUrl: type: StandardButton GetPhotoActions: title: GetPhotoActions required: - actions - eTag - url type: object properties: actions: $ref: '#/components/schemas/Actions23' eTag: type: string example: example_value url: type: string example: https://www.example.com examples: - actions: 0F94H000000UF2xSAG: actions: - actionListContext: Photo actionTarget: actionTargetType: Invoke apiName: ViewPhotoAction externalId: >- 00D58000000arpq:0F94H000000UF2xSAG::Photo:Desktop:StandardButton:ViewPhotoAction iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/email_120.png id: 0JV4H0000301820WAA isMassAction: 'false' label: View Photo lwcComponent: primaryColor: '939393' relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0F94H000000UF2xSAG subtype: targetObject: targetUrl: type: StandardButton - actionListContext: Photo actionTarget: actionTargetType: Invoke apiName: UpdatePhotoAction externalId: >- 00D58000000arpq:0F94H000000UF2xSAG::Photo:Desktop:StandardButton:UpdatePhotoAction iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/email_120.png id: 0JV4H0000301821WAA isMassAction: 'false' label: Update Photo lwcComponent: primaryColor: '939393' relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0F94H000000UF2xSAG subtype: targetObject: targetUrl: type: StandardButton - actionListContext: Photo actionTarget: actionTargetType: Invoke apiName: DeletePhotoAction externalId: >- 00D58000000arpq:0F94H000000UF2xSAG::Photo:Desktop:StandardButton:DeletePhotoAction iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/email_120.png id: 0JV4H0000301822WAA isMassAction: 'false' label: Delete Photo lwcComponent: primaryColor: '939393' relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0F94H000000UF2xSAG subtype: targetObject: targetUrl: type: StandardButton links: [] url: /services/data/v58.0/ui-api/actions/photo/0F94H000000UF2xSAG eTag: 802f98780c61a3109be0a574d2915772 url: /services/data/v58.0/ui-api/actions/photo/0F94H000000UF2xSAG Actions23: title: Actions23 required: - 0F94H000000UF2xSAG type: object properties: 0F94H000000UF2xSAG: $ref: '#/components/schemas/0F94H000000UF2xSAG' examples: - 0F94H000000UF2xSAG: actions: - actionListContext: Photo actionTarget: actionTargetType: Invoke apiName: ViewPhotoAction externalId: >- 00D58000000arpq:0F94H000000UF2xSAG::Photo:Desktop:StandardButton:ViewPhotoAction iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/email_120.png id: 0JV4H0000301820WAA isMassAction: 'false' label: View Photo lwcComponent: primaryColor: '939393' relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0F94H000000UF2xSAG subtype: targetObject: targetUrl: type: StandardButton - actionListContext: Photo actionTarget: actionTargetType: Invoke apiName: UpdatePhotoAction externalId: >- 00D58000000arpq:0F94H000000UF2xSAG::Photo:Desktop:StandardButton:UpdatePhotoAction iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/email_120.png id: 0JV4H0000301821WAA isMassAction: 'false' label: Update Photo lwcComponent: primaryColor: '939393' relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0F94H000000UF2xSAG subtype: targetObject: targetUrl: type: StandardButton - actionListContext: Photo actionTarget: actionTargetType: Invoke apiName: DeletePhotoAction externalId: >- 00D58000000arpq:0F94H000000UF2xSAG::Photo:Desktop:StandardButton:DeletePhotoAction iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/email_120.png id: 0JV4H0000301822WAA isMassAction: 'false' label: Delete Photo lwcComponent: primaryColor: '939393' relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0F94H000000UF2xSAG subtype: targetObject: targetUrl: type: StandardButton links: [] url: /services/data/v58.0/ui-api/actions/photo/0F94H000000UF2xSAG 0F94H000000UF2xSAG: title: 0F94H000000UF2xSAG required: - actions - links - url type: object properties: actions: type: array items: $ref: '#/components/schemas/Actions24' description: '' example: [] links: type: array items: type: string description: '' example: [] url: type: string example: https://www.example.com examples: - actions: - actionListContext: Photo actionTarget: actionTargetType: Invoke apiName: ViewPhotoAction externalId: >- 00D58000000arpq:0F94H000000UF2xSAG::Photo:Desktop:StandardButton:ViewPhotoAction iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/email_120.png id: 0JV4H0000301820WAA isMassAction: 'false' label: View Photo lwcComponent: primaryColor: '939393' relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0F94H000000UF2xSAG subtype: targetObject: targetUrl: type: StandardButton - actionListContext: Photo actionTarget: actionTargetType: Invoke apiName: UpdatePhotoAction externalId: >- 00D58000000arpq:0F94H000000UF2xSAG::Photo:Desktop:StandardButton:UpdatePhotoAction iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/email_120.png id: 0JV4H0000301821WAA isMassAction: 'false' label: Update Photo lwcComponent: primaryColor: '939393' relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0F94H000000UF2xSAG subtype: targetObject: targetUrl: type: StandardButton - actionListContext: Photo actionTarget: actionTargetType: Invoke apiName: DeletePhotoAction externalId: >- 00D58000000arpq:0F94H000000UF2xSAG::Photo:Desktop:StandardButton:DeletePhotoAction iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/email_120.png id: 0JV4H0000301822WAA isMassAction: 'false' label: Delete Photo lwcComponent: primaryColor: '939393' relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0F94H000000UF2xSAG subtype: targetObject: targetUrl: type: StandardButton links: [] url: /services/data/v58.0/ui-api/actions/photo/0F94H000000UF2xSAG Actions24: title: Actions24 required: - actionListContext - actionTarget - actionTargetType - apiName - externalId - iconUrl - id - isMassAction - label - lwcComponent - primaryColor - relatedListRecordId - relatedSourceObject - section - sourceObject - subtype - targetObject - targetUrl - type type: object properties: actionListContext: type: string example: example_value actionTarget: type: - string - 'null' example: example_value actionTargetType: type: string example: example_value apiName: type: string example: example_value externalId: type: string example: '500123' iconUrl: type: string example: https://www.example.com id: type: string example: abc123 isMassAction: type: string example: example_value label: type: string example: Example Title lwcComponent: type: - string - 'null' example: example_value primaryColor: type: string example: example_value relatedListRecordId: type: - string - 'null' example: '500123' relatedSourceObject: type: - string - 'null' example: example_value section: type: string example: example_value sourceObject: type: string example: example_value subtype: type: - string - 'null' example: example_value targetObject: type: - string - 'null' example: example_value targetUrl: type: - string - 'null' example: https://www.example.com type: type: string example: example_value examples: - actionListContext: Photo actionTarget: actionTargetType: Invoke apiName: ViewPhotoAction externalId: >- 00D58000000arpq:0F94H000000UF2xSAG::Photo:Desktop:StandardButton:ViewPhotoAction iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/action/email_120.png id: 0JV4H0000301820WAA isMassAction: 'false' label: View Photo lwcComponent: primaryColor: '939393' relatedListRecordId: relatedSourceObject: section: Page sourceObject: 0F94H000000UF2xSAG subtype: targetObject: targetUrl: type: StandardButton CreateaFavoriteRequest: title: CreateaFavoriteRequest required: - name - sortOrder - target - targetType type: object properties: name: type: string example: Example Title sortOrder: type: integer contentEncoding: int32 example: 10 target: type: string example: example_value targetType: type: string example: example_value examples: - name: Favorite Name sortOrder: 1 target: API Name or ID targetType: ListView | ObjectHome | Record | Tab CreateaFavoritelistview: title: CreateaFavoritelistview required: - accessCount - iconColor - iconUrl - id - lastAccessDate - name - objectType - sortOrder - subtitle - target - targetType type: object properties: accessCount: type: integer contentEncoding: int32 example: 42 iconColor: type: string example: example_value iconUrl: type: string example: https://www.example.com id: type: string example: abc123 lastAccessDate: type: string example: example_value name: type: string example: Example Title objectType: type: string example: example_value sortOrder: type: integer contentEncoding: int32 example: 10 subtitle: type: string example: example_value target: type: string example: example_value targetType: type: string example: example_value examples: - accessCount: 1 iconColor: '5867E8' iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_120.png id: 0MV4H0000004qIeWAI lastAccessDate: '2023-10-06T10:03:32.000Z' name: AllAccountsListView objectType: Account sortOrder: 1 subtitle: Accounts target: 00B58000002ssinEAA targetType: ListView GetaFavorite: title: GetaFavorite required: - accessCount - iconColor - iconUrl - id - lastAccessDate - name - objectType - sortOrder - subtitle - target - targetType type: object properties: accessCount: type: integer contentEncoding: int32 example: 42 iconColor: type: string example: example_value iconUrl: type: string example: https://www.example.com id: type: string example: abc123 lastAccessDate: type: string example: example_value name: type: string example: Example Title objectType: type: string example: example_value sortOrder: type: integer contentEncoding: int32 example: 10 subtitle: type: string example: example_value target: type: string example: example_value targetType: type: string example: example_value examples: - accessCount: 1 iconColor: '5867E8' iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_120.png id: 0MV4H0000004qIeWAI lastAccessDate: '2023-10-06T10:03:32.000Z' name: AllAccountsListView objectType: Account sortOrder: 1 subtitle: Accounts target: 00B58000002ssinEAA targetType: ListView GetFavorites: title: GetFavorites required: - favorites type: object properties: favorites: type: array items: $ref: '#/components/schemas/Favorite' description: '' example: [] examples: - favorites: - accessCount: 1 iconColor: '5867E8' iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_120.png id: 0MV4H0000004qIeWAI lastAccessDate: '2023-10-06T10:03:32.000Z' name: AllAccountsListView objectType: Account sortOrder: 1 subtitle: Accounts target: 00B58000002ssinEAA targetType: ListView Favorite: title: Favorite required: - accessCount - iconColor - iconUrl - id - lastAccessDate - name - objectType - sortOrder - subtitle - target - targetType type: object properties: accessCount: type: integer contentEncoding: int32 example: 42 iconColor: type: string example: example_value iconUrl: type: string example: https://www.example.com id: type: string example: abc123 lastAccessDate: type: string example: example_value name: type: string example: Example Title objectType: type: string example: example_value sortOrder: type: integer contentEncoding: int32 example: 10 subtitle: type: string example: example_value target: type: string example: example_value targetType: type: string example: example_value examples: - accessCount: 1 iconColor: '5867E8' iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_120.png id: 0MV4H0000004qIeWAI lastAccessDate: '2023-10-06T10:03:32.000Z' name: AllAccountsListView objectType: Account sortOrder: 1 subtitle: Accounts target: 00B58000002ssinEAA targetType: ListView UpdateaFavoriteRequest: title: UpdateaFavoriteRequest required: - name - sortOrder type: object properties: name: type: string example: Example Title sortOrder: type: integer contentEncoding: int32 example: 10 examples: - name: Red Accounts sortOrder: 1 UpdateaFavorite: title: UpdateaFavorite required: - accessCount - iconColor - iconUrl - id - lastAccessDate - name - objectType - sortOrder - subtitle - target - targetType type: object properties: accessCount: type: integer contentEncoding: int32 example: 42 iconColor: type: string example: example_value iconUrl: type: string example: https://www.example.com id: type: string example: abc123 lastAccessDate: type: string example: example_value name: type: string example: Example Title objectType: type: string example: example_value sortOrder: type: integer contentEncoding: int32 example: 10 subtitle: type: string example: example_value target: type: string example: example_value targetType: type: string example: example_value examples: - accessCount: 1 iconColor: '5867E8' iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_120.png id: 0MV4H0000004qIeWAI lastAccessDate: '2023-10-06T10:03:32.000Z' name: AllAccountsListViewFavoriteRenamed objectType: Account sortOrder: 1 subtitle: Accounts target: 00B58000002ssinEAA targetType: ListView UpdateaBatchofFavoritesRequest: title: UpdateaBatchofFavoritesRequest required: - favorites type: object properties: favorites: type: array items: $ref: '#/components/schemas/Favorite1' description: '' example: [] examples: - favorites: - id: 0MVR00000004DhnOAE name: Q4 Perf Favorite1: title: Favorite1 required: - id - name type: object properties: id: type: string example: abc123 name: type: string example: Example Title examples: - id: 0MVR00000004DhnOAE name: Q4 Perf UpdateaBatchofFavorites: title: UpdateaBatchofFavorites required: - favorites type: object properties: favorites: type: array items: $ref: '#/components/schemas/Favorite' description: '' example: [] examples: - favorites: - accessCount: 1 iconColor: '5867E8' iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_120.png id: 0MV4H0000004qIeWAI lastAccessDate: '2023-10-06T10:03:32.000Z' name: RenamedAllAcountsListView objectType: Account sortOrder: 1 subtitle: Accounts target: 00B58000002ssinEAA targetType: ListView UpdateUsageofaFavorite: title: UpdateUsageofaFavorite required: - accessCount - iconColor - iconUrl - id - lastAccessDate - name - objectType - sortOrder - subtitle - target - targetType type: object properties: accessCount: type: integer contentEncoding: int32 example: 42 iconColor: type: string example: example_value iconUrl: type: string example: https://www.example.com id: type: string example: abc123 lastAccessDate: type: string example: example_value name: type: string example: Example Title objectType: type: string example: example_value sortOrder: type: integer contentEncoding: int32 example: 10 subtitle: type: string example: example_value target: type: string example: example_value targetType: type: string example: example_value examples: - accessCount: 2 iconColor: '5867E8' iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_120.png id: 0MV4H0000004qIeWAI lastAccessDate: '2023-10-06T10:09:03.304Z' name: RenamedAllAcountsListView objectType: Account sortOrder: 1 subtitle: Accounts target: 00B58000002ssinEAA targetType: ListView GetListViewsforanObject: title: GetListViewsforanObject required: - count - currentPageToken - currentPageUrl - lists - nextPageToken - nextPageUrl - objectApiName - pageSize - previousPageToken - previousPageUrl - queryString - recentListsOnly type: object properties: count: type: integer contentEncoding: int32 example: 42 currentPageToken: type: string example: CAUQAA currentPageUrl: type: string example: https://www.example.com lists: type: array items: $ref: '#/components/schemas/List' description: '' example: [] nextPageToken: type: - string - 'null' example: CAUQAA nextPageUrl: type: - string - 'null' example: https://www.example.com objectApiName: type: string example: example_value pageSize: type: integer contentEncoding: int32 example: 10 previousPageToken: type: - string - 'null' example: CAUQAA previousPageUrl: type: - string - 'null' example: https://www.example.com queryString: type: - string - 'null' example: example_value recentListsOnly: type: boolean example: true examples: - count: 6 currentPageToken: '0' currentPageUrl: >- /services/data/v62.0/ui-api/list-info/Account?pageSize=20&pageToken=0 lists: - apiName: AllAccounts id: 00B58000002ssinEAA label: All Accounts url: /services/data/v62.0/ui-api/list-info/Account/AllAccounts - apiName: MyAccounts id: 00B58000002ssivEAA label: My Accounts url: /services/data/v62.0/ui-api/list-info/Account/MyAccounts - apiName: NewLastWeek id: 00B58000002ssiHEAQ label: New Last Week url: /services/data/v62.0/ui-api/list-info/Account/NewLastWeek - apiName: NewThisWeek id: 00B58000002ssi6EAA label: New This Week url: /services/data/v62.0/ui-api/list-info/Account/NewThisWeek - apiName: PlatinumandGoldSLACustomers id: 00B58000002ssiXEAQ label: Platinum and Gold SLA Customers url: >- /services/data/v62.0/ui-api/list-info/Account/PlatinumandGoldSLACustomers - apiName: RecentlyViewedAccounts id: 00B58000002ssimEAA label: Recently Viewed Accounts url: >- /services/data/v62.0/ui-api/list-info/Account/RecentlyViewedAccounts nextPageToken: nextPageUrl: objectApiName: Account pageSize: 20 previousPageToken: previousPageUrl: queryString: recentListsOnly: false List: title: List required: - apiName - id - label - url type: object properties: apiName: type: string example: example_value id: type: string example: abc123 label: type: string example: Example Title url: type: string example: https://www.example.com examples: - apiName: AllAccounts id: 00B58000002ssinEAA label: All Accounts url: /services/data/v62.0/ui-api/list-info/Account/AllAccounts GetListViewRecordsbyID: title: GetListViewRecordsbyID required: - count - currentPageToken - currentPageUrl - fields - listInfoETag - listReference - nextPageToken - nextPageUrl - optionalFields - pageSize - previousPageToken - previousPageUrl - records - searchTerm - sortBy - where type: object properties: count: type: integer contentEncoding: int32 example: 42 currentPageToken: type: string example: CAUQAA currentPageUrl: type: string example: https://www.example.com fields: type: array items: type: string description: '' example: [] listInfoETag: type: string example: example_value listReference: $ref: '#/components/schemas/ListReference' nextPageToken: type: string example: CAUQAA nextPageUrl: type: string example: https://www.example.com optionalFields: type: array items: type: string description: '' example: [] pageSize: type: integer contentEncoding: int32 example: 10 previousPageToken: type: - string - 'null' example: CAUQAA previousPageUrl: type: - string - 'null' example: https://www.example.com records: type: array items: $ref: '#/components/schemas/Records4' description: '' example: [] searchTerm: type: - string - 'null' example: example_value sortBy: type: string example: example_value where: type: - string - 'null' example: example_value examples: - count: 50 currentPageToken: '0' currentPageUrl: >- /services/data/v62.0/ui-api/list-records/00B58000002ssinEAA?pageSize=50&pageToken=0 fields: [] listInfoETag: 55ebdd0de6c2f1e17f63bf4581d64f76 listReference: id: 00B58000002ssinEAA listViewApiName: AllAccounts objectApiName: Account type: listView nextPageToken: '50' nextPageUrl: >- /services/data/v62.0/ui-api/list-records/00B58000002ssinEAA?pageSize=50&pageToken=50 optionalFields: [] pageSize: 50 previousPageToken: previousPageUrl: records: - apiName: Account childRelationships: {} eTag: c7b296e1aa5fa482e1f77e8dc0e0b5e1 fields: BillingCountry: displayValue: value: USA CreatedDate: displayValue: value: '2020-02-27T09:28:06.000Z' Id: displayValue: value: 0014H00002LbR7QQAV LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-04T18:35:13.000Z' Name: displayValue: value: ABC Computing Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: '123123123' Site: displayValue: value: SystemModstamp: displayValue: value: '2023-10-04T18:35:13.000Z' Type: displayValue: value: id: 0014H00002LbR7QQAV lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-04T18:35:13.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2023-10-04T18:35:13.000Z' - apiName: Account childRelationships: {} eTag: cfeff90a24208129b7cf7be4e47dda99 fields: BillingCountry: displayValue: value: USA CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOhAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2020-09-29T16:04:02.000Z' Name: displayValue: value: Burlington Textiles Corp of America Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (336) 222-7000 Site: displayValue: value: SystemModstamp: displayValue: value: '2020-09-29T16:04:02.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOhAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2020-09-29T16:04:02.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2020-09-29T16:04:02.000Z' - apiName: Account childRelationships: {} eTag: c42c5257506520c737965101b225840c fields: BillingCountry: displayValue: value: USA CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOjAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2020-09-29T15:52:06.000Z' Name: displayValue: value: Dickenson Co. Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (785) 241-6200 Site: displayValue: value: SystemModstamp: displayValue: value: '2020-09-29T15:52:06.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOjAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2020-09-29T15:52:06.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2020-09-29T15:52:06.000Z' - apiName: Account childRelationships: {} eTag: 2f21e61d45d05263809593342f5761f4 fields: BillingCountry: displayValue: value: France CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOiAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-05-11T08:48:05.000Z' Name: displayValue: value: Pyramid Construction Inc. Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (014) 427-4427 Site: displayValue: value: SystemModstamp: displayValue: value: '2016-05-11T08:48:05.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOiAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-05-11T08:48:05.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-05-11T08:48:05.000Z' - apiName: Account childRelationships: {} eTag: a5b391b1caf935de4bbc96858a4e6a12 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2020-02-04T18:26:08.000Z' Id: displayValue: value: 0014H00002E6wi6QAB LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2020-02-04T18:26:08.000Z' Name: displayValue: value: Sample Account Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2020-02-04T18:26:08.000Z' Type: displayValue: value: id: 0014H00002E6wi6QAB lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2020-02-04T18:26:08.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2020-02-04T18:26:08.000Z' - apiName: Account childRelationships: {} eTag: fe60d8fe25895ac63644cf563fdc35d6 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2021-02-02T13:47:39.000Z' Id: displayValue: value: 0014H00002x6HUhQAM LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2021-02-25T09:30:33.000Z' Name: displayValue: value: ACME Inc. Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2021-02-25T09:30:33.000Z' Type: displayValue: value: id: 0014H00002x6HUhQAM lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2021-02-25T09:30:33.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2021-02-25T09:30:33.000Z' - apiName: Account childRelationships: {} eTag: 3e85e3f4d6851dd2922333dcec928b1e fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2023-04-25T16:02:10.000Z' Id: displayValue: value: 0014H00004CXfY8QAL LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-04-25T16:02:10.000Z' Name: displayValue: value: test Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2023-04-25T16:02:10.000Z' Type: displayValue: value: id: 0014H00004CXfY8QAL lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-04-25T16:02:10.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2023-04-25T16:02:10.000Z' - apiName: Account childRelationships: {} eTag: d33080f9749c8d05a6b936a01419362e fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2023-09-13T22:04:24.000Z' Id: displayValue: value: 0014H00004GXwPnQAL LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-09-13T22:04:24.000Z' Name: displayValue: value: test Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2023-09-13T22:04:24.000Z' Type: displayValue: value: id: 0014H00004GXwPnQAL lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-09-13T22:04:24.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2023-09-13T22:04:24.000Z' - apiName: Account childRelationships: {} eTag: 02a02f9955d21594f12eca00514ae1e4 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOgAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-05-11T08:47:54.000Z' Name: displayValue: value: Edge Communications Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (512) 757-6000 Site: displayValue: value: SystemModstamp: displayValue: value: '2016-05-11T08:47:54.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOgAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-05-11T08:47:54.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-05-11T08:47:54.000Z' - apiName: Account childRelationships: {} eTag: 0eebc826426d1f09795db27deb0d0bfb fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOkAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-05-11T08:47:54.000Z' Name: displayValue: value: Grand Hotels & Resorts Ltd Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (312) 596-1000 Site: displayValue: value: SystemModstamp: displayValue: value: '2016-05-11T08:47:54.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOkAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-05-11T08:47:54.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-05-11T08:47:54.000Z' - apiName: Account childRelationships: {} eTag: 2a79ba99e5085e9392464789b92ef370 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOlAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T09:14:04.000Z' Name: displayValue: value: United Oil & Gas Corp. Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (212) 842-5500 Site: displayValue: value: SystemModstamp: displayValue: value: '2023-10-06T09:14:04.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOlAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T09:14:04.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2023-10-06T09:14:04.000Z' - apiName: Account childRelationships: {} eTag: c031e5ed9bda34a3a4c9f8485e2b45f5 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOmAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-05-11T08:48:05.000Z' Name: displayValue: value: Express Logistics and Transport Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (503) 421-7800 Site: displayValue: value: SystemModstamp: displayValue: value: '2016-05-11T08:48:05.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOmAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-05-11T08:48:05.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-05-11T08:48:05.000Z' - apiName: Account childRelationships: {} eTag: 8502b4f929b405553fe618841d8ac28b fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOnAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-05-11T08:47:54.000Z' Name: displayValue: value: University of Arizona Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (520) 773-9050 Site: displayValue: value: SystemModstamp: displayValue: value: '2016-05-11T08:47:54.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOnAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-05-11T08:47:54.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-05-11T08:47:54.000Z' - apiName: Account childRelationships: {} eTag: 65fc29db312ce8476ed58913eafcdb36 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOoAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2017-04-28T13:15:12.000Z' Name: displayValue: value: United Oil & Gas, Belgium Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: +44 191 4956203 Site: displayValue: value: SystemModstamp: displayValue: value: '2017-04-29T04:59:15.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOoAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2017-04-28T13:15:12.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2017-04-29T04:59:15.000Z' - apiName: Account childRelationships: {} eTag: 95b274689e30df21eac0c029c63587db fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOpAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-05-11T08:47:54.000Z' Name: displayValue: value: United Oil & Gas, Singapore Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (650) 450-8810 Site: displayValue: value: SystemModstamp: displayValue: value: '2016-05-11T08:47:54.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOpAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-05-11T08:47:54.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-05-11T08:47:54.000Z' - apiName: Account childRelationships: {} eTag: c368a7ee82696b7014aa50bd1f3097a0 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOqAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2020-09-29T16:04:43.000Z' Name: displayValue: value: GenePoint Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (650) 867-3450 Site: displayValue: value: SystemModstamp: displayValue: value: '2020-09-29T16:04:43.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOqAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2020-09-29T16:04:43.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2020-09-29T16:04:43.000Z' - apiName: Account childRelationships: {} eTag: 683d780209e8523cee5dfc75e4ecb655 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-14T14:54:05.000Z' Id: displayValue: value: 00158000007uG58AAE LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-14T14:54:05.000Z' Name: displayValue: value: Blackbeards Grog Emporium Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-14T14:54:05.000Z' Type: displayValue: value: id: 00158000007uG58AAE lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-14T14:54:05.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-14T14:54:05.000Z' - apiName: Account childRelationships: {} eTag: 08039118577ad459353eab0201c0da32 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-14T15:50:24.000Z' Id: displayValue: value: 00158000007uGY4AAM LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-14T15:50:24.000Z' Name: displayValue: value: Bluebeards Grog House Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-14T15:50:24.000Z' Type: displayValue: value: id: 00158000007uGY4AAM lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-14T15:50:24.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-14T15:50:24.000Z' - apiName: Account childRelationships: {} eTag: a46a048bcdcaf162a8c28219851a8726 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wBAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Insuron Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wBAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 53150ff4fad935b11a01d9c963d7ed2a fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wCAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Orboid Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wCAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: eb9e9002c0593cfd90d1fc8a89866e99 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wDAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Bovis Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wDAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: ce0b94e93ac9f29572d11f45662dc29b fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wEAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Roughies Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wEAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: a4bd35ad888f0ee47309af6645dbf9cc fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wFAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Otherside Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wFAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: fe9e0915af3f1048c0aa1d4aefa3bc22 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wGAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Endipin Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wGAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 6775eb7790169ada29bdf917f1334f2f fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wHAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Austech Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wHAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 28e08e57f11ad365ded07a49e0aab7b4 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wIAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Quility Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wIAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 7be73bde9fa7f2b6b672deaf6210c120 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wJAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Bleendot Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wJAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 490fb10e5dba5d155f2ede10bdf04043 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wKAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Apex Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wKAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 261acd5ca365592c6b5942d65c772d8d fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wLAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Cognicode Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wLAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 26f79e588eb05aa8cc5d994f3bd25ea0 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wMAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Securia Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wMAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 23b8ecbe0eacd2d4a23164cf92540615 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wNAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Fanfare Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wNAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: f0a49b68d802cb1ff30d6cef2f3f76e9 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wOAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Obones Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wOAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: df9ac3b4d6bcdaa75433fec054979643 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wPAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Eyeris Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wPAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: bcc5d95f4910344dd315a4ec9ca2b563 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wQAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Techtrix Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wQAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 51256f88c8db64e2f48187dc284a4eec fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wRAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Ceprene Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wRAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 7e0414c03ff4e63c5ddf286547fb6f42 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wSAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Vortexaco Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wSAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 0686be1a780882d98a9d0d32e18c76d9 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wTAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Techmania Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wTAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 3a97d66d9945233c1808db5478239335 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wUAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Gleamink Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wUAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 64fd8ccfd8894be8fb92d252f48ab3e2 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wVAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Apextri Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wVAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: cc6d0f4e15833d7f129d8248c6d0bb80 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wWAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Orbalix Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wWAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 8f0488216ee66c508d3f5fa715fbe1ea fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wXAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Zentry Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wXAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 2fae444d48ac673c879c28f9ea827cce fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wYAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Inear Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wYAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: cc5f9877af7c8e35e4bdf919009ae7b6 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wZAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Genesynk Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wZAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: b03cf2ca4e3b4607399375238769bfc5 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1waAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Flum Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1waAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: cb431803b04ef9646ae1f2de9520bc47 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wbAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Yogasm Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wbAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 5501cba638729bb1156928e6735563ac fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wcAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Mangelica Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wcAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: b2c53b40494c7d3de6bfdf689186e975 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wdAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Exoplode Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wdAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 007f696062d0fd6df9bfb0d3af01f8a9 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1weAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Digigene Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1weAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 30d9d2147c63da2beefb987268df1613 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wfAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Zanymax Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wfAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: a8272664cf5dfc36939ba2b2bc78f6f3 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wgAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Imperium Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wgAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' searchTerm: sortBy: '-BillingCountry,Id' where: ListReference: title: ListReference required: - id - listViewApiName - objectApiName - type type: object properties: id: type: string example: abc123 listViewApiName: type: string example: example_value objectApiName: type: string example: example_value type: type: string example: example_value examples: - id: 00B58000002ssinEAA listViewApiName: AllAccounts objectApiName: Account type: listView Records4: title: Records4 required: - apiName - childRelationships - eTag - fields - id - lastModifiedById - lastModifiedDate - recordTypeId - recordTypeInfo - systemModstamp type: object properties: apiName: type: string example: example_value childRelationships: type: object example: example_value eTag: type: string example: example_value fields: $ref: '#/components/schemas/Fields40' id: type: string example: abc123 lastModifiedById: type: string example: '500123' lastModifiedDate: type: string example: example_value recordTypeId: type: string example: '500123' recordTypeInfo: type: - string - 'null' example: example_value systemModstamp: type: string example: example_value examples: - apiName: Account childRelationships: {} eTag: c7b296e1aa5fa482e1f77e8dc0e0b5e1 fields: BillingCountry: displayValue: value: USA CreatedDate: displayValue: value: '2020-02-27T09:28:06.000Z' Id: displayValue: value: 0014H00002LbR7QQAV LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-04T18:35:13.000Z' Name: displayValue: value: ABC Computing Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: '123123123' Site: displayValue: value: SystemModstamp: displayValue: value: '2023-10-04T18:35:13.000Z' Type: displayValue: value: id: 0014H00002LbR7QQAV lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-04T18:35:13.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2023-10-04T18:35:13.000Z' Fields40: title: Fields40 required: - BillingCountry - CreatedDate - Id - LastModifiedById - LastModifiedDate - Name - Owner - OwnerId - Phone - Site - SystemModstamp - Type type: object properties: BillingCountry: $ref: '#/components/schemas/BillingCountry3' CreatedDate: $ref: '#/components/schemas/CreatedDate14' Id: $ref: '#/components/schemas/Id8' LastModifiedById: $ref: '#/components/schemas/LastModifiedById5' LastModifiedDate: $ref: '#/components/schemas/LastModifiedDate14' Name: $ref: '#/components/schemas/Name21' Owner: $ref: '#/components/schemas/Owner11' OwnerId: $ref: '#/components/schemas/OwnerId4' Phone: $ref: '#/components/schemas/Phone9' Site: $ref: '#/components/schemas/Site2' SystemModstamp: $ref: '#/components/schemas/SystemModstamp10' Type: $ref: '#/components/schemas/Type13' examples: - BillingCountry: displayValue: value: USA CreatedDate: displayValue: value: '2020-02-27T09:28:06.000Z' Id: displayValue: value: 0014H00002LbR7QQAV LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-04T18:35:13.000Z' Name: displayValue: value: ABC Computing Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: '123123123' Site: displayValue: value: SystemModstamp: displayValue: value: '2023-10-04T18:35:13.000Z' Type: displayValue: value: CreatedDate14: title: CreatedDate14 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: string example: example_value examples: - displayValue: value: '2020-02-27T09:28:06.000Z' LastModifiedDate14: title: LastModifiedDate14 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: string example: example_value examples: - displayValue: value: '2023-10-04T18:35:13.000Z' Owner11: title: Owner11 required: - displayValue - value type: object properties: displayValue: type: string example: example_value value: $ref: '#/components/schemas/Value22' examples: - displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' Value22: title: Value22 required: - apiName - childRelationships - eTag - fields - id - lastModifiedById - lastModifiedDate type: object properties: apiName: type: string example: example_value childRelationships: type: object example: example_value eTag: type: string example: example_value fields: $ref: '#/components/schemas/Fields41' id: type: string example: abc123 lastModifiedById: type: string example: '500123' lastModifiedDate: type: string example: example_value recordTypeId: type: - string - 'null' example: '500123' recordTypeInfo: type: - string - 'null' example: example_value systemModstamp: type: string example: example_value examples: - apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' Fields41: title: Fields41 required: - Alias - CreatedDate - Id - LastModifiedById - LastModifiedDate - Name - SystemModstamp type: object properties: Alias: $ref: '#/components/schemas/Alias4' CreatedDate: $ref: '#/components/schemas/CreatedDate14' Id: $ref: '#/components/schemas/Id8' LastModifiedById: $ref: '#/components/schemas/LastModifiedById5' LastModifiedDate: $ref: '#/components/schemas/LastModifiedDate14' Name: $ref: '#/components/schemas/Name21' SystemModstamp: $ref: '#/components/schemas/SystemModstamp10' examples: - Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' Alias4: title: Alias4 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: string example: example_value examples: - displayValue: value: POzil SystemModstamp10: title: SystemModstamp10 required: - displayValue - value type: object properties: displayValue: type: - string - 'null' example: example_value value: type: string example: example_value examples: - displayValue: value: '2023-10-06T08:34:22.000Z' GetListViewRecordsperAPIName: title: GetListViewRecordsperAPIName required: - count - currentPageToken - currentPageUrl - fields - listInfoETag - listReference - nextPageToken - nextPageUrl - optionalFields - pageSize - previousPageToken - previousPageUrl - records - searchTerm - sortBy - where type: object properties: count: type: integer contentEncoding: int32 example: 42 currentPageToken: type: string example: CAUQAA currentPageUrl: type: string example: https://www.example.com fields: type: array items: type: string description: '' example: [] listInfoETag: type: string example: example_value listReference: $ref: '#/components/schemas/ListReference' nextPageToken: type: string example: CAUQAA nextPageUrl: type: string example: https://www.example.com optionalFields: type: array items: type: string description: '' example: [] pageSize: type: integer contentEncoding: int32 example: 10 previousPageToken: type: - string - 'null' example: CAUQAA previousPageUrl: type: - string - 'null' example: https://www.example.com records: type: array items: $ref: '#/components/schemas/Records4' description: '' example: [] searchTerm: type: - string - 'null' example: example_value sortBy: type: string example: example_value where: type: - string - 'null' example: example_value examples: - count: 50 currentPageToken: '0' currentPageUrl: >- /services/data/v62.0/ui-api/list-records/00B58000002ssinEAA?pageSize=50&pageToken=0 fields: [] listInfoETag: 55ebdd0de6c2f1e17f63bf4581d64f76 listReference: id: 00B58000002ssinEAA listViewApiName: AllAccounts objectApiName: Account type: listView nextPageToken: '50' nextPageUrl: >- /services/data/v62.0/ui-api/list-records/00B58000002ssinEAA?pageSize=50&pageToken=50 optionalFields: [] pageSize: 50 previousPageToken: previousPageUrl: records: - apiName: Account childRelationships: {} eTag: c7b296e1aa5fa482e1f77e8dc0e0b5e1 fields: BillingCountry: displayValue: value: USA CreatedDate: displayValue: value: '2020-02-27T09:28:06.000Z' Id: displayValue: value: 0014H00002LbR7QQAV LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-04T18:35:13.000Z' Name: displayValue: value: ABC Computing Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: '123123123' Site: displayValue: value: SystemModstamp: displayValue: value: '2023-10-04T18:35:13.000Z' Type: displayValue: value: id: 0014H00002LbR7QQAV lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-04T18:35:13.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2023-10-04T18:35:13.000Z' - apiName: Account childRelationships: {} eTag: cfeff90a24208129b7cf7be4e47dda99 fields: BillingCountry: displayValue: value: USA CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOhAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2020-09-29T16:04:02.000Z' Name: displayValue: value: Burlington Textiles Corp of America Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (336) 222-7000 Site: displayValue: value: SystemModstamp: displayValue: value: '2020-09-29T16:04:02.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOhAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2020-09-29T16:04:02.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2020-09-29T16:04:02.000Z' - apiName: Account childRelationships: {} eTag: c42c5257506520c737965101b225840c fields: BillingCountry: displayValue: value: USA CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOjAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2020-09-29T15:52:06.000Z' Name: displayValue: value: Dickenson Co. Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (785) 241-6200 Site: displayValue: value: SystemModstamp: displayValue: value: '2020-09-29T15:52:06.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOjAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2020-09-29T15:52:06.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2020-09-29T15:52:06.000Z' - apiName: Account childRelationships: {} eTag: 2f21e61d45d05263809593342f5761f4 fields: BillingCountry: displayValue: value: France CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOiAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-05-11T08:48:05.000Z' Name: displayValue: value: Pyramid Construction Inc. Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (014) 427-4427 Site: displayValue: value: SystemModstamp: displayValue: value: '2016-05-11T08:48:05.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOiAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-05-11T08:48:05.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-05-11T08:48:05.000Z' - apiName: Account childRelationships: {} eTag: a5b391b1caf935de4bbc96858a4e6a12 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2020-02-04T18:26:08.000Z' Id: displayValue: value: 0014H00002E6wi6QAB LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2020-02-04T18:26:08.000Z' Name: displayValue: value: Sample Account Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2020-02-04T18:26:08.000Z' Type: displayValue: value: id: 0014H00002E6wi6QAB lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2020-02-04T18:26:08.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2020-02-04T18:26:08.000Z' - apiName: Account childRelationships: {} eTag: fe60d8fe25895ac63644cf563fdc35d6 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2021-02-02T13:47:39.000Z' Id: displayValue: value: 0014H00002x6HUhQAM LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2021-02-25T09:30:33.000Z' Name: displayValue: value: ACME Inc. Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2021-02-25T09:30:33.000Z' Type: displayValue: value: id: 0014H00002x6HUhQAM lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2021-02-25T09:30:33.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2021-02-25T09:30:33.000Z' - apiName: Account childRelationships: {} eTag: 3e85e3f4d6851dd2922333dcec928b1e fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2023-04-25T16:02:10.000Z' Id: displayValue: value: 0014H00004CXfY8QAL LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-04-25T16:02:10.000Z' Name: displayValue: value: test Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2023-04-25T16:02:10.000Z' Type: displayValue: value: id: 0014H00004CXfY8QAL lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-04-25T16:02:10.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2023-04-25T16:02:10.000Z' - apiName: Account childRelationships: {} eTag: d33080f9749c8d05a6b936a01419362e fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2023-09-13T22:04:24.000Z' Id: displayValue: value: 0014H00004GXwPnQAL LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-09-13T22:04:24.000Z' Name: displayValue: value: test Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2023-09-13T22:04:24.000Z' Type: displayValue: value: id: 0014H00004GXwPnQAL lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-09-13T22:04:24.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2023-09-13T22:04:24.000Z' - apiName: Account childRelationships: {} eTag: 02a02f9955d21594f12eca00514ae1e4 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOgAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-05-11T08:47:54.000Z' Name: displayValue: value: Edge Communications Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (512) 757-6000 Site: displayValue: value: SystemModstamp: displayValue: value: '2016-05-11T08:47:54.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOgAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-05-11T08:47:54.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-05-11T08:47:54.000Z' - apiName: Account childRelationships: {} eTag: 0eebc826426d1f09795db27deb0d0bfb fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOkAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-05-11T08:47:54.000Z' Name: displayValue: value: Grand Hotels & Resorts Ltd Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (312) 596-1000 Site: displayValue: value: SystemModstamp: displayValue: value: '2016-05-11T08:47:54.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOkAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-05-11T08:47:54.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-05-11T08:47:54.000Z' - apiName: Account childRelationships: {} eTag: 2a79ba99e5085e9392464789b92ef370 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOlAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T09:14:04.000Z' Name: displayValue: value: United Oil & Gas Corp. Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (212) 842-5500 Site: displayValue: value: SystemModstamp: displayValue: value: '2023-10-06T09:14:04.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOlAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T09:14:04.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2023-10-06T09:14:04.000Z' - apiName: Account childRelationships: {} eTag: c031e5ed9bda34a3a4c9f8485e2b45f5 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOmAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-05-11T08:48:05.000Z' Name: displayValue: value: Express Logistics and Transport Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (503) 421-7800 Site: displayValue: value: SystemModstamp: displayValue: value: '2016-05-11T08:48:05.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOmAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-05-11T08:48:05.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-05-11T08:48:05.000Z' - apiName: Account childRelationships: {} eTag: 8502b4f929b405553fe618841d8ac28b fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOnAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-05-11T08:47:54.000Z' Name: displayValue: value: University of Arizona Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (520) 773-9050 Site: displayValue: value: SystemModstamp: displayValue: value: '2016-05-11T08:47:54.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOnAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-05-11T08:47:54.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-05-11T08:47:54.000Z' - apiName: Account childRelationships: {} eTag: 65fc29db312ce8476ed58913eafcdb36 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOoAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2017-04-28T13:15:12.000Z' Name: displayValue: value: United Oil & Gas, Belgium Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: +44 191 4956203 Site: displayValue: value: SystemModstamp: displayValue: value: '2017-04-29T04:59:15.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOoAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2017-04-28T13:15:12.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2017-04-29T04:59:15.000Z' - apiName: Account childRelationships: {} eTag: 95b274689e30df21eac0c029c63587db fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOpAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-05-11T08:47:54.000Z' Name: displayValue: value: United Oil & Gas, Singapore Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (650) 450-8810 Site: displayValue: value: SystemModstamp: displayValue: value: '2016-05-11T08:47:54.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOpAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-05-11T08:47:54.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-05-11T08:47:54.000Z' - apiName: Account childRelationships: {} eTag: c368a7ee82696b7014aa50bd1f3097a0 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOqAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2020-09-29T16:04:43.000Z' Name: displayValue: value: GenePoint Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (650) 867-3450 Site: displayValue: value: SystemModstamp: displayValue: value: '2020-09-29T16:04:43.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOqAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2020-09-29T16:04:43.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2020-09-29T16:04:43.000Z' - apiName: Account childRelationships: {} eTag: 683d780209e8523cee5dfc75e4ecb655 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-14T14:54:05.000Z' Id: displayValue: value: 00158000007uG58AAE LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-14T14:54:05.000Z' Name: displayValue: value: Blackbeards Grog Emporium Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-14T14:54:05.000Z' Type: displayValue: value: id: 00158000007uG58AAE lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-14T14:54:05.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-14T14:54:05.000Z' - apiName: Account childRelationships: {} eTag: 08039118577ad459353eab0201c0da32 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-14T15:50:24.000Z' Id: displayValue: value: 00158000007uGY4AAM LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-14T15:50:24.000Z' Name: displayValue: value: Bluebeards Grog House Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-14T15:50:24.000Z' Type: displayValue: value: id: 00158000007uGY4AAM lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-14T15:50:24.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-14T15:50:24.000Z' - apiName: Account childRelationships: {} eTag: a46a048bcdcaf162a8c28219851a8726 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wBAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Insuron Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wBAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 53150ff4fad935b11a01d9c963d7ed2a fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wCAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Orboid Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wCAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: eb9e9002c0593cfd90d1fc8a89866e99 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wDAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Bovis Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wDAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: ce0b94e93ac9f29572d11f45662dc29b fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wEAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Roughies Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wEAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: a4bd35ad888f0ee47309af6645dbf9cc fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wFAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Otherside Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wFAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: fe9e0915af3f1048c0aa1d4aefa3bc22 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wGAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Endipin Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wGAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 6775eb7790169ada29bdf917f1334f2f fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wHAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Austech Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wHAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 28e08e57f11ad365ded07a49e0aab7b4 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wIAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Quility Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wIAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 7be73bde9fa7f2b6b672deaf6210c120 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wJAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Bleendot Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wJAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 490fb10e5dba5d155f2ede10bdf04043 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wKAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Apex Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wKAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 261acd5ca365592c6b5942d65c772d8d fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wLAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Cognicode Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wLAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 26f79e588eb05aa8cc5d994f3bd25ea0 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wMAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Securia Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wMAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 23b8ecbe0eacd2d4a23164cf92540615 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wNAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Fanfare Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wNAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: f0a49b68d802cb1ff30d6cef2f3f76e9 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wOAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Obones Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wOAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: df9ac3b4d6bcdaa75433fec054979643 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wPAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Eyeris Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wPAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: bcc5d95f4910344dd315a4ec9ca2b563 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wQAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Techtrix Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wQAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 51256f88c8db64e2f48187dc284a4eec fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wRAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Ceprene Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wRAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 7e0414c03ff4e63c5ddf286547fb6f42 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wSAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Vortexaco Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wSAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 0686be1a780882d98a9d0d32e18c76d9 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wTAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Techmania Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wTAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 3a97d66d9945233c1808db5478239335 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wUAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Gleamink Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wUAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 64fd8ccfd8894be8fb92d252f48ab3e2 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wVAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Apextri Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wVAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: cc6d0f4e15833d7f129d8248c6d0bb80 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wWAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Orbalix Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wWAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 8f0488216ee66c508d3f5fa715fbe1ea fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wXAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Zentry Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wXAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 2fae444d48ac673c879c28f9ea827cce fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wYAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Inear Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wYAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: cc5f9877af7c8e35e4bdf919009ae7b6 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wZAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Genesynk Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wZAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: b03cf2ca4e3b4607399375238769bfc5 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1waAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Flum Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1waAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: cb431803b04ef9646ae1f2de9520bc47 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wbAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Yogasm Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wbAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 5501cba638729bb1156928e6735563ac fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wcAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Mangelica Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wcAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: b2c53b40494c7d3de6bfdf689186e975 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wdAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Exoplode Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wdAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 007f696062d0fd6df9bfb0d3af01f8a9 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1weAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Digigene Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1weAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 30d9d2147c63da2beefb987268df1613 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wfAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Zanymax Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wfAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: a8272664cf5dfc36939ba2b2bc78f6f3 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wgAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Imperium Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wgAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' searchTerm: sortBy: '-BillingCountry,Id' where: GetListViewRecordsRequest: title: GetListViewRecordsRequest required: - fields - pageSize - sortBy - searchTerm - where type: object properties: fields: type: array items: type: string description: '' example: [] pageSize: type: integer contentEncoding: int32 example: 10 sortBy: type: array items: type: string description: '' example: [] searchTerm: type: string example: example_value where: type: string example: example_value examples: - fields: - Name - Type - AnnualRevenue - CreatedDate pageSize: 10 sortBy: - CreatedDate searchTerm: United where: '{AnnualRevenue: { gt: 1000000}}' GetListViewRecords: title: GetListViewRecords required: - count - currentPageToken - currentPageUrl - fields - listInfoETag - listReference - nextPageToken - nextPageUrl - optionalFields - pageSize - previousPageToken - previousPageUrl - records - searchTerm - sortBy - where type: object properties: count: type: integer contentEncoding: int32 example: 42 currentPageToken: type: string example: CAUQAA currentPageUrl: type: string example: https://www.example.com fields: type: array items: type: string description: '' example: [] listInfoETag: type: string example: example_value listReference: $ref: '#/components/schemas/ListReference' nextPageToken: type: string example: CAUQAA nextPageUrl: type: string example: https://www.example.com optionalFields: type: array items: type: string description: '' example: [] pageSize: type: integer contentEncoding: int32 example: 10 previousPageToken: type: - string - 'null' example: CAUQAA previousPageUrl: type: - string - 'null' example: https://www.example.com records: type: array items: $ref: '#/components/schemas/Records4' description: '' example: [] searchTerm: type: - string - 'null' example: example_value sortBy: type: string example: example_value where: type: - string - 'null' example: example_value examples: - count: 50 currentPageToken: '0' currentPageUrl: >- /services/data/v62.0/ui-api/list-records/00B58000002ssinEAA?pageSize=50&pageToken=0 fields: [] listInfoETag: 55ebdd0de6c2f1e17f63bf4581d64f76 listReference: id: 00B58000002ssinEAA listViewApiName: AllAccounts objectApiName: Account type: listView nextPageToken: '50' nextPageUrl: >- /services/data/v62.0/ui-api/list-records/00B58000002ssinEAA?pageSize=50&pageToken=50 optionalFields: [] pageSize: 50 previousPageToken: previousPageUrl: records: - apiName: Account childRelationships: {} eTag: c7b296e1aa5fa482e1f77e8dc0e0b5e1 fields: BillingCountry: displayValue: value: USA CreatedDate: displayValue: value: '2020-02-27T09:28:06.000Z' Id: displayValue: value: 0014H00002LbR7QQAV LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-04T18:35:13.000Z' Name: displayValue: value: ABC Computing Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: '123123123' Site: displayValue: value: SystemModstamp: displayValue: value: '2023-10-04T18:35:13.000Z' Type: displayValue: value: id: 0014H00002LbR7QQAV lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-04T18:35:13.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2023-10-04T18:35:13.000Z' - apiName: Account childRelationships: {} eTag: cfeff90a24208129b7cf7be4e47dda99 fields: BillingCountry: displayValue: value: USA CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOhAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2020-09-29T16:04:02.000Z' Name: displayValue: value: Burlington Textiles Corp of America Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (336) 222-7000 Site: displayValue: value: SystemModstamp: displayValue: value: '2020-09-29T16:04:02.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOhAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2020-09-29T16:04:02.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2020-09-29T16:04:02.000Z' - apiName: Account childRelationships: {} eTag: c42c5257506520c737965101b225840c fields: BillingCountry: displayValue: value: USA CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOjAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2020-09-29T15:52:06.000Z' Name: displayValue: value: Dickenson Co. Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (785) 241-6200 Site: displayValue: value: SystemModstamp: displayValue: value: '2020-09-29T15:52:06.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOjAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2020-09-29T15:52:06.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2020-09-29T15:52:06.000Z' - apiName: Account childRelationships: {} eTag: 2f21e61d45d05263809593342f5761f4 fields: BillingCountry: displayValue: value: France CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOiAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-05-11T08:48:05.000Z' Name: displayValue: value: Pyramid Construction Inc. Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (014) 427-4427 Site: displayValue: value: SystemModstamp: displayValue: value: '2016-05-11T08:48:05.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOiAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-05-11T08:48:05.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-05-11T08:48:05.000Z' - apiName: Account childRelationships: {} eTag: a5b391b1caf935de4bbc96858a4e6a12 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2020-02-04T18:26:08.000Z' Id: displayValue: value: 0014H00002E6wi6QAB LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2020-02-04T18:26:08.000Z' Name: displayValue: value: Sample Account Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2020-02-04T18:26:08.000Z' Type: displayValue: value: id: 0014H00002E6wi6QAB lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2020-02-04T18:26:08.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2020-02-04T18:26:08.000Z' - apiName: Account childRelationships: {} eTag: fe60d8fe25895ac63644cf563fdc35d6 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2021-02-02T13:47:39.000Z' Id: displayValue: value: 0014H00002x6HUhQAM LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2021-02-25T09:30:33.000Z' Name: displayValue: value: ACME Inc. Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2021-02-25T09:30:33.000Z' Type: displayValue: value: id: 0014H00002x6HUhQAM lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2021-02-25T09:30:33.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2021-02-25T09:30:33.000Z' - apiName: Account childRelationships: {} eTag: 3e85e3f4d6851dd2922333dcec928b1e fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2023-04-25T16:02:10.000Z' Id: displayValue: value: 0014H00004CXfY8QAL LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-04-25T16:02:10.000Z' Name: displayValue: value: test Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2023-04-25T16:02:10.000Z' Type: displayValue: value: id: 0014H00004CXfY8QAL lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-04-25T16:02:10.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2023-04-25T16:02:10.000Z' - apiName: Account childRelationships: {} eTag: d33080f9749c8d05a6b936a01419362e fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2023-09-13T22:04:24.000Z' Id: displayValue: value: 0014H00004GXwPnQAL LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-09-13T22:04:24.000Z' Name: displayValue: value: test Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2023-09-13T22:04:24.000Z' Type: displayValue: value: id: 0014H00004GXwPnQAL lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-09-13T22:04:24.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2023-09-13T22:04:24.000Z' - apiName: Account childRelationships: {} eTag: 02a02f9955d21594f12eca00514ae1e4 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOgAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-05-11T08:47:54.000Z' Name: displayValue: value: Edge Communications Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (512) 757-6000 Site: displayValue: value: SystemModstamp: displayValue: value: '2016-05-11T08:47:54.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOgAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-05-11T08:47:54.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-05-11T08:47:54.000Z' - apiName: Account childRelationships: {} eTag: 0eebc826426d1f09795db27deb0d0bfb fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOkAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-05-11T08:47:54.000Z' Name: displayValue: value: Grand Hotels & Resorts Ltd Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (312) 596-1000 Site: displayValue: value: SystemModstamp: displayValue: value: '2016-05-11T08:47:54.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOkAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-05-11T08:47:54.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-05-11T08:47:54.000Z' - apiName: Account childRelationships: {} eTag: 2a79ba99e5085e9392464789b92ef370 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOlAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T09:14:04.000Z' Name: displayValue: value: United Oil & Gas Corp. Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (212) 842-5500 Site: displayValue: value: SystemModstamp: displayValue: value: '2023-10-06T09:14:04.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOlAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T09:14:04.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2023-10-06T09:14:04.000Z' - apiName: Account childRelationships: {} eTag: c031e5ed9bda34a3a4c9f8485e2b45f5 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOmAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-05-11T08:48:05.000Z' Name: displayValue: value: Express Logistics and Transport Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (503) 421-7800 Site: displayValue: value: SystemModstamp: displayValue: value: '2016-05-11T08:48:05.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOmAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-05-11T08:48:05.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-05-11T08:48:05.000Z' - apiName: Account childRelationships: {} eTag: 8502b4f929b405553fe618841d8ac28b fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOnAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-05-11T08:47:54.000Z' Name: displayValue: value: University of Arizona Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (520) 773-9050 Site: displayValue: value: SystemModstamp: displayValue: value: '2016-05-11T08:47:54.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOnAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-05-11T08:47:54.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-05-11T08:47:54.000Z' - apiName: Account childRelationships: {} eTag: 65fc29db312ce8476ed58913eafcdb36 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOoAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2017-04-28T13:15:12.000Z' Name: displayValue: value: United Oil & Gas, Belgium Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: +44 191 4956203 Site: displayValue: value: SystemModstamp: displayValue: value: '2017-04-29T04:59:15.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOoAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2017-04-28T13:15:12.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2017-04-29T04:59:15.000Z' - apiName: Account childRelationships: {} eTag: 95b274689e30df21eac0c029c63587db fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOpAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-05-11T08:47:54.000Z' Name: displayValue: value: United Oil & Gas, Singapore Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (650) 450-8810 Site: displayValue: value: SystemModstamp: displayValue: value: '2016-05-11T08:47:54.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOpAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-05-11T08:47:54.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-05-11T08:47:54.000Z' - apiName: Account childRelationships: {} eTag: c368a7ee82696b7014aa50bd1f3097a0 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00158000006QBOqAAO LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2020-09-29T16:04:43.000Z' Name: displayValue: value: GenePoint Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: (650) 867-3450 Site: displayValue: value: SystemModstamp: displayValue: value: '2020-09-29T16:04:43.000Z' Type: displayValue: Customer value: Customer id: 00158000006QBOqAAO lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2020-09-29T16:04:43.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2020-09-29T16:04:43.000Z' - apiName: Account childRelationships: {} eTag: 683d780209e8523cee5dfc75e4ecb655 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-14T14:54:05.000Z' Id: displayValue: value: 00158000007uG58AAE LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-14T14:54:05.000Z' Name: displayValue: value: Blackbeards Grog Emporium Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-14T14:54:05.000Z' Type: displayValue: value: id: 00158000007uG58AAE lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-14T14:54:05.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-14T14:54:05.000Z' - apiName: Account childRelationships: {} eTag: 08039118577ad459353eab0201c0da32 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-14T15:50:24.000Z' Id: displayValue: value: 00158000007uGY4AAM LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-14T15:50:24.000Z' Name: displayValue: value: Bluebeards Grog House Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-14T15:50:24.000Z' Type: displayValue: value: id: 00158000007uGY4AAM lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-14T15:50:24.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-14T15:50:24.000Z' - apiName: Account childRelationships: {} eTag: a46a048bcdcaf162a8c28219851a8726 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wBAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Insuron Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wBAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 53150ff4fad935b11a01d9c963d7ed2a fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wCAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Orboid Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wCAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: eb9e9002c0593cfd90d1fc8a89866e99 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wDAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Bovis Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wDAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: ce0b94e93ac9f29572d11f45662dc29b fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wEAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Roughies Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wEAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: a4bd35ad888f0ee47309af6645dbf9cc fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wFAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Otherside Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wFAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: fe9e0915af3f1048c0aa1d4aefa3bc22 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wGAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Endipin Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wGAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 6775eb7790169ada29bdf917f1334f2f fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wHAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Austech Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wHAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 28e08e57f11ad365ded07a49e0aab7b4 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wIAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Quility Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wIAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 7be73bde9fa7f2b6b672deaf6210c120 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wJAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Bleendot Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wJAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 490fb10e5dba5d155f2ede10bdf04043 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wKAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Apex Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wKAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 261acd5ca365592c6b5942d65c772d8d fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wLAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Cognicode Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wLAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 26f79e588eb05aa8cc5d994f3bd25ea0 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wMAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Securia Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wMAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 23b8ecbe0eacd2d4a23164cf92540615 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wNAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Fanfare Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wNAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: f0a49b68d802cb1ff30d6cef2f3f76e9 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wOAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Obones Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wOAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: df9ac3b4d6bcdaa75433fec054979643 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wPAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Eyeris Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wPAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: bcc5d95f4910344dd315a4ec9ca2b563 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wQAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Techtrix Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wQAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 51256f88c8db64e2f48187dc284a4eec fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wRAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Ceprene Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wRAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 7e0414c03ff4e63c5ddf286547fb6f42 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wSAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Vortexaco Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wSAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 0686be1a780882d98a9d0d32e18c76d9 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wTAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Techmania Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wTAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 3a97d66d9945233c1808db5478239335 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wUAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Gleamink Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wUAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 64fd8ccfd8894be8fb92d252f48ab3e2 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wVAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Apextri Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wVAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: cc6d0f4e15833d7f129d8248c6d0bb80 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wWAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Orbalix Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wWAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 8f0488216ee66c508d3f5fa715fbe1ea fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wXAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Zentry Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wXAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 2fae444d48ac673c879c28f9ea827cce fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wYAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Inear Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wYAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: cc5f9877af7c8e35e4bdf919009ae7b6 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wZAAS LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Genesynk Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wZAAS lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: b03cf2ca4e3b4607399375238769bfc5 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1waAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Flum Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1waAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: cb431803b04ef9646ae1f2de9520bc47 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wbAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Yogasm Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wbAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 5501cba638729bb1156928e6735563ac fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wcAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Mangelica Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wcAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: b2c53b40494c7d3de6bfdf689186e975 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wdAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Exoplode Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wdAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 007f696062d0fd6df9bfb0d3af01f8a9 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1weAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Digigene Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1weAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: 30d9d2147c63da2beefb987268df1613 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wfAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Zanymax Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wfAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' - apiName: Account childRelationships: {} eTag: a8272664cf5dfc36939ba2b2bc78f6f3 fields: BillingCountry: displayValue: value: CreatedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Id: displayValue: value: 00158000009I1wgAAC LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2016-06-16T09:50:50.000Z' Name: displayValue: value: Imperium Bulk Company Owner: displayValue: Philippe Ozil value: apiName: User childRelationships: {} eTag: cd72f37056763253524392799303114f fields: Alias: displayValue: value: POzil CreatedDate: displayValue: value: '2016-05-09T13:51:39.000Z' Id: displayValue: value: 00558000000yFyDAAU LastModifiedById: displayValue: value: 00558000000yFyDAAU LastModifiedDate: displayValue: value: '2023-10-06T08:34:22.000Z' Name: displayValue: value: Philippe Ozil SystemModstamp: displayValue: value: '2023-10-06T08:34:22.000Z' id: 00558000000yFyDAAU lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2023-10-06T08:34:22.000Z' recordTypeId: recordTypeInfo: systemModstamp: '2023-10-06T08:34:22.000Z' OwnerId: displayValue: value: 00558000000yFyDAAU Phone: displayValue: value: Site: displayValue: value: SystemModstamp: displayValue: value: '2016-06-16T09:50:50.000Z' Type: displayValue: value: id: 00158000009I1wgAAC lastModifiedById: 00558000000yFyDAAU lastModifiedDate: '2016-06-16T09:50:50.000Z' recordTypeId: 012000000000000AAA recordTypeInfo: systemModstamp: '2016-06-16T09:50:50.000Z' searchTerm: sortBy: '-BillingCountry,Id' where: GetListViewMetadatabyID: title: GetListViewMetadatabyID required: - cloneable - createable - deletable - displayColumns - filterLogicString - filteredByInfo - hasMassActions - inlineEditDetails - label - listReference - listShares - objectApiNames - orderedByInfo - scope - searchable - updateable - userPreferences - visibility - visibilityEditable type: object properties: cloneable: type: boolean example: true createable: type: boolean example: true deletable: type: boolean example: true displayColumns: type: array items: $ref: '#/components/schemas/DisplayColumn' description: '' example: [] filterLogicString: type: - string - 'null' example: example_value filteredByInfo: type: array items: type: string description: '' example: [] hasMassActions: type: boolean example: true inlineEditDetails: type: object example: example_value label: type: string example: Example Title listReference: $ref: '#/components/schemas/ListReference' listShares: type: object example: example_value objectApiNames: type: array items: type: string description: '' example: [] orderedByInfo: type: array items: $ref: '#/components/schemas/OrderedByInfo' description: '' example: [] scope: type: object example: example_value searchable: type: boolean example: true updateable: type: boolean example: true userPreferences: $ref: '#/components/schemas/UserPreferences' visibility: type: string example: example_value visibilityEditable: type: boolean example: true examples: - cloneable: true createable: true deletable: true displayColumns: - fieldApiName: Name inlineEditAttributes: {} label: Account Name lookupId: Id searchable: true sortable: true - fieldApiName: Site inlineEditAttributes: {} label: Account Site lookupId: searchable: true sortable: true - fieldApiName: Phone inlineEditAttributes: {} label: Phone lookupId: searchable: true sortable: true - fieldApiName: Type inlineEditAttributes: {} label: Type lookupId: searchable: true sortable: true - fieldApiName: BillingCountry inlineEditAttributes: {} label: Billing Country lookupId: searchable: true sortable: true - fieldApiName: Owner.Alias inlineEditAttributes: {} label: Account Owner Alias lookupId: Owner.Id searchable: true sortable: true filterLogicString: filteredByInfo: [] hasMassActions: true inlineEditDetails: {} label: All Accounts listReference: id: 00B58000002ssinEAA listViewApiName: AllAccounts objectApiName: Account type: listView listShares: {} objectApiNames: [] orderedByInfo: - fieldApiName: BillingCountry isAscending: false label: Billing Country scope: {} searchable: true updateable: true userPreferences: columnWidths: Site: -1 Type: -1 BillingCountry: -1 Owner.Alias: -1 Phone: -1 Name: -1 columnWrap: Site: false Type: false BillingCountry: false Owner.Alias: false Phone: false Name: false visibility: Public visibilityEditable: true DisplayColumn: title: DisplayColumn required: - fieldApiName - inlineEditAttributes - label - lookupId - searchable - sortable type: object properties: fieldApiName: type: string example: example_value inlineEditAttributes: type: object example: example_value label: type: string example: Example Title lookupId: type: - string - 'null' example: '500123' searchable: type: boolean example: true sortable: type: boolean example: true examples: - fieldApiName: Name inlineEditAttributes: {} label: Account Name lookupId: Id searchable: true sortable: true OrderedByInfo: title: OrderedByInfo required: - fieldApiName - isAscending - label type: object properties: fieldApiName: type: string example: example_value isAscending: type: boolean example: true label: type: string example: Example Title examples: - fieldApiName: BillingCountry isAscending: false label: Billing Country UserPreferences: title: UserPreferences required: - columnWidths - columnWrap type: object properties: columnWidths: $ref: '#/components/schemas/ColumnWidths' columnWrap: $ref: '#/components/schemas/ColumnWrap' examples: - columnWidths: Site: -1 Type: -1 BillingCountry: -1 Owner.Alias: -1 Phone: -1 Name: -1 columnWrap: Site: false Type: false BillingCountry: false Owner.Alias: false Phone: false Name: false ColumnWidths: title: ColumnWidths required: - Site - Type - BillingCountry - Owner.Alias - Phone - Name type: object properties: Site: type: integer contentEncoding: int32 example: 10 Type: type: integer contentEncoding: int32 example: 10 BillingCountry: type: integer contentEncoding: int32 example: 42 Owner.Alias: type: integer contentEncoding: int32 example: 10 Phone: type: integer contentEncoding: int32 example: 10 Name: type: integer contentEncoding: int32 example: Example Title examples: - Site: -1 Type: -1 BillingCountry: -1 Owner.Alias: -1 Phone: -1 Name: -1 ColumnWrap: title: ColumnWrap required: - Site - Type - BillingCountry - Owner.Alias - Phone - Name type: object properties: Site: type: boolean example: true Type: type: boolean example: true BillingCountry: type: boolean example: 42 Owner.Alias: type: boolean example: true Phone: type: boolean example: true Name: type: boolean example: Example Title examples: - Site: false Type: false BillingCountry: false Owner.Alias: false Phone: false Name: false GetListViewMetadatabyAPIName: title: GetListViewMetadatabyAPIName required: - cloneable - createable - deletable - displayColumns - filterLogicString - filteredByInfo - hasMassActions - inlineEditDetails - label - listReference - listShares - objectApiNames - orderedByInfo - scope - updateable - userPreferences - visibility - visibilityEditable type: object properties: cloneable: type: boolean example: true createable: type: boolean example: true deletable: type: boolean example: true displayColumns: type: array items: $ref: '#/components/schemas/DisplayColumn' description: '' example: [] filterLogicString: type: - string - 'null' example: example_value filteredByInfo: type: array items: type: string description: '' example: [] hasMassActions: type: boolean example: true inlineEditDetails: type: object example: example_value label: type: string example: Example Title listReference: $ref: '#/components/schemas/ListReference' listShares: type: object example: example_value objectApiNames: type: array items: type: string description: '' example: [] orderedByInfo: type: array items: $ref: '#/components/schemas/OrderedByInfo' description: '' example: [] scope: type: object example: example_value updateable: type: boolean example: true userPreferences: $ref: '#/components/schemas/UserPreferences' visibility: type: string example: example_value visibilityEditable: type: boolean example: true examples: - cloneable: true createable: true deletable: true displayColumns: - fieldApiName: Name inlineEditAttributes: {} label: Account Name lookupId: Id searchable: true sortable: true - fieldApiName: Site inlineEditAttributes: {} label: Account Site lookupId: searchable: true sortable: true - fieldApiName: Phone inlineEditAttributes: {} label: Phone lookupId: searchable: true sortable: true - fieldApiName: Type inlineEditAttributes: {} label: Type lookupId: searchable: true sortable: true - fieldApiName: BillingCountry inlineEditAttributes: {} label: Billing Country lookupId: searchable: true sortable: true - fieldApiName: Owner.Alias inlineEditAttributes: {} label: Account Owner Alias lookupId: Owner.Id searchable: true sortable: true filterLogicString: filteredByInfo: [] hasMassActions: true inlineEditDetails: {} label: All Accounts listReference: id: 00B58000002ssinEAA listViewApiName: AllAccounts objectApiName: Account type: listView listShares: {} objectApiNames: [] orderedByInfo: - fieldApiName: BillingCountry isAscending: false label: Billing Country scope: {} updateable: true userPreferences: columnWidths: Site: -1 Type: -1 BillingCountry: -1 Owner.Alias: -1 Phone: -1 Name: -1 columnWrap: Site: false Type: false BillingCountry: false Owner.Alias: false Phone: false Name: false visibility: Public visibilityEditable: true GetApps: title: GetApps required: - apps - eTag type: object properties: apps: type: array items: $ref: '#/components/schemas/App' description: '' example: [] eTag: type: string example: example_value examples: - apps: - appId: 06m58000000fBK2AAM description: >- Manage your sales process with accounts, leads, opportunities, and more developerName: LightningSales eTag: e288a1d753c535d52fd11b047cd74482 formFactors: - Small - Medium - Large headerColor: '#0070D2' iconUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/SalesCloud/icon.png isNavAutoTempTabsDisabled: false isNavPersonalizationDisabled: false isNavTabPersistenceDisabled: false label: Sales logoUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/SalesCloud/logo.png mobileStartUrl: navItems: - availableInClassic: true availableInLightning: true color: FF538A content: https://pozil-dev-ed.my.salesforce.com/lightning/page/home custom: false developerName: standard-home iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/home_120.png id: itemType: Standard label: Home objectApiName: Home objectLabel: objectLabelPlural: pageReference: attributes: pageName: home state: {} type: standard__namedPage standardType: Home - availableInClassic: true availableInLightning: true color: FF5D2D content: https://pozil-dev-ed.my.salesforce.com/006/o custom: false developerName: standard-Opportunity iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/opportunity_120.png id: itemType: Entity label: Opportunities objectApiName: Opportunity objectLabel: Opportunity objectLabelPlural: Opportunities pageReference: attributes: objectApiName: Opportunity actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: FF5D2D content: https://pozil-dev-ed.my.salesforce.com/00Q/o custom: false developerName: standard-Lead iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/lead_120.png id: itemType: Entity label: Leads objectApiName: Lead objectLabel: Lead objectLabelPlural: Leads pageReference: attributes: objectApiName: Lead actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: false availableInLightning: true color: 3BA755 content: https://pozil-dev-ed.my.salesforce.com/00T/o custom: false developerName: standard-Task iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/task_120.png id: itemType: Standard label: Tasks objectApiName: Task objectLabel: Task objectLabelPlural: Tasks pageReference: attributes: objectApiName: Task actionName: home state: {} type: standard__objectPage standardType: Tasks - availableInClassic: true availableInLightning: true color: '939393' content: >- https://pozil-dev-ed.my.salesforce.com/_ui/core/chatter/files/FileTabPage custom: false developerName: standard-File iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/file_120.png id: itemType: Entity label: Files objectApiName: ContentDocument objectLabel: objectLabelPlural: pageReference: attributes: objectApiName: ContentDocument actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: '5867E8' content: https://pozil-dev-ed.my.salesforce.com/001/o custom: false developerName: standard-Account iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_120.png id: itemType: Entity label: Accounts objectApiName: Account objectLabel: Account objectLabelPlural: Accounts pageReference: attributes: objectApiName: Account actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: '5867E8' content: https://pozil-dev-ed.my.salesforce.com/003/o custom: false developerName: standard-Contact iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/contact_120.png id: itemType: Entity label: Contacts objectApiName: Contact objectLabel: Contact objectLabelPlural: Contacts pageReference: attributes: objectApiName: Contact actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: FF538A content: https://pozil-dev-ed.my.salesforce.com/01Z/o custom: false developerName: standard-Dashboard iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/dashboard_120.png id: itemType: Standard label: Dashboards objectApiName: Dashboard objectLabel: Dashboard objectLabelPlural: Dashboards pageReference: attributes: objectApiName: Dashboard actionName: home state: {} type: standard__objectPage standardType: Dashboards - availableInClassic: true availableInLightning: true color: 06A59A content: https://pozil-dev-ed.my.salesforce.com/00O/o custom: false developerName: standard-report iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/report_120.png id: itemType: Standard label: Reports objectApiName: Report objectLabel: Report objectLabelPlural: Reports pageReference: attributes: objectApiName: Report actionName: home state: {} type: standard__objectPage standardType: Reports - availableInClassic: false availableInLightning: true color: 1B96FF content: custom: false developerName: standard-Feed iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/feed_120.png id: itemType: Standard label: Chatter objectApiName: Feed objectLabel: objectLabelPlural: pageReference: attributes: pageName: chatter state: {} type: standard__namedPage standardType: Feed - availableInClassic: true availableInLightning: true color: 1B96FF content: >- https://pozil-dev-ed.my.salesforce.com/_ui/core/chatter/groups/GroupListPage custom: false developerName: standard-CollaborationGroup iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/groups_120.png id: itemType: Standard label: Groups objectApiName: CollaborationGroup objectLabel: Group objectLabelPlural: Groups pageReference: attributes: objectApiName: CollaborationGroup actionName: home state: {} type: standard__objectPage standardType: Groups - availableInClassic: false availableInLightning: true color: FF538A content: https://pozil-dev-ed.my.salesforce.com/00U/o custom: false developerName: standard-Event iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/event_120.png id: itemType: Standard label: Calendar objectApiName: Event objectLabel: Event objectLabelPlural: Events pageReference: attributes: objectApiName: Event actionName: home state: {} type: standard__objectPage standardType: Events - availableInClassic: true availableInLightning: true color: 1B96FF content: >- https://pozil-dev-ed.my.salesforce.com/_ui/core/chatter/people/PeopleListPage custom: false developerName: standard-OtherUserProfile iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/user_120.png id: itemType: Standard label: People objectApiName: User objectLabel: User objectLabelPlural: People pageReference: attributes: objectApiName: User actionName: home state: {} type: standard__objectPage standardType: People - availableInClassic: true availableInLightning: true color: FF5D2D content: https://pozil-dev-ed.my.salesforce.com/500/o custom: false developerName: standard-Case iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/case_120.png id: itemType: Entity label: Cases objectApiName: Case objectLabel: Case objectLabelPlural: Cases pageReference: attributes: objectApiName: Case actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: 3BA755 content: >- https://pozil-dev-ed.my.salesforce.com/_ui/sales/forecasting/ui/ForecastingTabPage custom: false developerName: standard-Forecasting3 iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/forecasts_120.png id: itemType: Standard label: Forecasts objectApiName: Forecasting3 objectLabel: objectLabelPlural: pageReference: attributes: pageName: forecasting state: {} type: standard__namedPage standardType: Forecasting3 selected: true startUrl: >- https://pozil-dev-ed.my.salesforce.com/home/home.jsp?tsid=02u58000000fBK2 type: Lightning userNavItems: [] - appId: 06m58000000dRxBAAU description: Manage customer service with accounts, contacts, cases, and more developerName: Service eTag: b8b5942342984b0853126b7a7558e130 formFactors: - Large headerColor: '#0070D2' iconUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/ServiceCloud/icon.png isNavAutoTempTabsDisabled: false isNavPersonalizationDisabled: false isNavTabPersistenceDisabled: false label: Service logoUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/ServiceCloud/logo.png mobileStartUrl: navItems: [] selected: false startUrl: >- https://pozil-dev-ed.my.salesforce.com/home/home.jsp?tsid=02u58000000dRxB type: Classic userNavItems: [] - appId: 06m58000000dRxCAAU description: Best-in-class on-demand marketing automation developerName: Marketing eTag: ffedb4e8ce9ada4905724cd13c74955e formFactors: - Large headerColor: '#0070D2' iconUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/MarketingCloud/icon.png isNavAutoTempTabsDisabled: false isNavPersonalizationDisabled: false isNavTabPersistenceDisabled: false label: Marketing logoUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/MarketingCloud/logo.png mobileStartUrl: navItems: [] selected: false startUrl: >- https://pozil-dev-ed.my.salesforce.com/home/home.jsp?tsid=02u58000000dRxC type: Classic userNavItems: [] - appId: 06m58000000dRx2AAE description: Salesforce CRM Communities developerName: Community eTag: 12283186521e9dff9e4440f9f83b7a4d formFactors: - Large headerColor: '#0070D2' iconUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/Community/icon.png isNavAutoTempTabsDisabled: false isNavPersonalizationDisabled: false isNavTabPersistenceDisabled: false label: Community logoUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/Community/logo.png mobileStartUrl: navItems: [] selected: false startUrl: >- https://pozil-dev-ed.my.salesforce.com/home/home.jsp?tsid=02u58000000dRx2 type: Classic userNavItems: [] - appId: 06m58000000dRx3AAE description: >- Build pixel-perfect, data-rich websites using the drag-and-drop Site.com application, and manage content and published sites. developerName: Sites eTag: 0f40c4dd79d400146f97c64b1cf7d865 formFactors: - Large headerColor: '#0070D2' iconUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/Sites/icon.png isNavAutoTempTabsDisabled: false isNavPersonalizationDisabled: false isNavTabPersistenceDisabled: false label: Site.com logoUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/app/00D58000000arpq/02u58000000dRx3AAE mobileStartUrl: navItems: [] selected: false startUrl: >- https://pozil-dev-ed.my.salesforce.com/home/home.jsp?tsid=02u58000000dRx3 type: Classic userNavItems: [] - appId: 06m58000000dRx4AAE description: >- The Salesforce Chatter social network, including profiles and feeds developerName: Chatter eTag: 95c37da7ec4eee2c9a96d53d7ce9b89b formFactors: - Large headerColor: '#0070D2' iconUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/Chatter/icon.png isNavAutoTempTabsDisabled: false isNavPersonalizationDisabled: false isNavTabPersistenceDisabled: false label: Salesforce Chatter logoUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Standard/feed/logo.svg mobileStartUrl: navItems: [] selected: false startUrl: >- https://pozil-dev-ed.my.salesforce.com/home/home.jsp?tsid=02u58000000dRx4 type: Classic userNavItems: [] - appId: 06m58000000dRx9AAE description: Salesforce CRM Content developerName: Content eTag: edeb0edc6c931a4b3ebb4c08bc7c4c21 formFactors: - Large headerColor: '#0070D2' iconUrl: isNavAutoTempTabsDisabled: false isNavPersonalizationDisabled: false isNavTabPersistenceDisabled: false label: Content logoUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Standard/file/logo.svg mobileStartUrl: navItems: [] selected: false startUrl: >- https://pozil-dev-ed.my.salesforce.com/home/home.jsp?tsid=02u58000000dRx9 type: Classic userNavItems: [] - appId: 06m58000000dRx1AAE description: App Launcher tabs developerName: AppLauncher eTag: 932216e29355c05453a6ed51a3d24902 formFactors: - Large headerColor: '#0070D2' iconUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/AppLauncher/icon.png isNavAutoTempTabsDisabled: false isNavPersonalizationDisabled: false isNavTabPersistenceDisabled: false label: App Launcher logoUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/AppLauncher/logo.png mobileStartUrl: navItems: [] selected: false startUrl: >- https://pozil-dev-ed.my.salesforce.com/app/mgmt/applauncher/appLauncher.apexp?tsid=02u58000000dRx1 type: Classic userNavItems: [] - appId: 06m58000000MpvkAAC description: View Adoption and Usage Metrics for Lightning Experience developerName: LightningInstrumentation eTag: 69788cb0de5d4b5b483fced75461fa88 formFactors: - Large headerColor: '#0070D2' iconUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/LightningInstrumentation/icon.png isNavAutoTempTabsDisabled: false isNavPersonalizationDisabled: false isNavTabPersistenceDisabled: false label: Lightning Usage App logoUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/LightningInstrumentation/logo.png mobileStartUrl: navItems: [] selected: false startUrl: >- https://pozil-dev-ed.my.salesforce.com/home/home.jsp?tsid=02u58000000Mpvk type: Lightning userNavItems: [] - appId: 06m4H000000QTsDQAW description: Manage your store's products, catalogs, and pricebooks. developerName: Commerce eTag: ba22fc3752be6c8c3f96bf7bd50a4e55 formFactors: - Large headerColor: '#0070D2' iconUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/Commerce/icon.png isNavAutoTempTabsDisabled: false isNavPersonalizationDisabled: false isNavTabPersistenceDisabled: false label: Commerce logoUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/Commerce/logo.png mobileStartUrl: navItems: [] selected: false startUrl: >- https://pozil-dev-ed.my.salesforce.com/home/home.jsp?tsid=02u4H000000QTsD type: Lightning userNavItems: [] eTag: 619eb2f896db72ff9a0823ed6a551e66 App: title: App required: - appId - description - developerName - eTag - formFactors - headerColor - iconUrl - isNavAutoTempTabsDisabled - isNavPersonalizationDisabled - isNavTabPersistenceDisabled - label - logoUrl - mobileStartUrl - navItems - selected - startUrl - type - userNavItems type: object properties: appId: type: string example: '500123' description: type: string example: A sample description. developerName: type: string example: example_value eTag: type: string example: example_value formFactors: type: array items: type: string description: '' example: [] headerColor: type: string example: example_value iconUrl: type: - string - 'null' example: https://www.example.com isNavAutoTempTabsDisabled: type: boolean example: true isNavPersonalizationDisabled: type: boolean example: true isNavTabPersistenceDisabled: type: boolean example: true label: type: string example: Example Title logoUrl: type: string example: https://www.example.com mobileStartUrl: type: - string - 'null' example: https://www.example.com navItems: type: array items: oneOf: - allOf: - $ref: '#/components/schemas/NavItem' - examples: - availableInClassic: true availableInLightning: true color: FF538A content: >- https://pozil-dev-ed.my.salesforce.com/lightning/page/home custom: false developerName: standard-home iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/home_120.png id: itemType: Standard label: Home objectApiName: Home objectLabel: objectLabelPlural: pageReference: attributes: pageName: home state: {} type: standard__namedPage standardType: Home - type: string description: '' example: [] selected: type: boolean example: true startUrl: type: string example: https://www.example.com type: type: string example: example_value userNavItems: type: array items: type: string description: '' example: [] examples: - appId: 06m58000000fBK2AAM description: >- Manage your sales process with accounts, leads, opportunities, and more developerName: LightningSales eTag: e288a1d753c535d52fd11b047cd74482 formFactors: - Small - Medium - Large headerColor: '#0070D2' iconUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/SalesCloud/icon.png isNavAutoTempTabsDisabled: false isNavPersonalizationDisabled: false isNavTabPersistenceDisabled: false label: Sales logoUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/SalesCloud/logo.png mobileStartUrl: navItems: - availableInClassic: true availableInLightning: true color: FF538A content: https://pozil-dev-ed.my.salesforce.com/lightning/page/home custom: false developerName: standard-home iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/home_120.png id: itemType: Standard label: Home objectApiName: Home objectLabel: objectLabelPlural: pageReference: attributes: pageName: home state: {} type: standard__namedPage standardType: Home - availableInClassic: true availableInLightning: true color: FF5D2D content: https://pozil-dev-ed.my.salesforce.com/006/o custom: false developerName: standard-Opportunity iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/opportunity_120.png id: itemType: Entity label: Opportunities objectApiName: Opportunity objectLabel: Opportunity objectLabelPlural: Opportunities pageReference: attributes: objectApiName: Opportunity actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: FF5D2D content: https://pozil-dev-ed.my.salesforce.com/00Q/o custom: false developerName: standard-Lead iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/lead_120.png id: itemType: Entity label: Leads objectApiName: Lead objectLabel: Lead objectLabelPlural: Leads pageReference: attributes: objectApiName: Lead actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: false availableInLightning: true color: 3BA755 content: https://pozil-dev-ed.my.salesforce.com/00T/o custom: false developerName: standard-Task iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/task_120.png id: itemType: Standard label: Tasks objectApiName: Task objectLabel: Task objectLabelPlural: Tasks pageReference: attributes: objectApiName: Task actionName: home state: {} type: standard__objectPage standardType: Tasks - availableInClassic: true availableInLightning: true color: '939393' content: >- https://pozil-dev-ed.my.salesforce.com/_ui/core/chatter/files/FileTabPage custom: false developerName: standard-File iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/file_120.png id: itemType: Entity label: Files objectApiName: ContentDocument objectLabel: objectLabelPlural: pageReference: attributes: objectApiName: ContentDocument actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: '5867E8' content: https://pozil-dev-ed.my.salesforce.com/001/o custom: false developerName: standard-Account iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_120.png id: itemType: Entity label: Accounts objectApiName: Account objectLabel: Account objectLabelPlural: Accounts pageReference: attributes: objectApiName: Account actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: '5867E8' content: https://pozil-dev-ed.my.salesforce.com/003/o custom: false developerName: standard-Contact iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/contact_120.png id: itemType: Entity label: Contacts objectApiName: Contact objectLabel: Contact objectLabelPlural: Contacts pageReference: attributes: objectApiName: Contact actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: FF538A content: https://pozil-dev-ed.my.salesforce.com/01Z/o custom: false developerName: standard-Dashboard iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/dashboard_120.png id: itemType: Standard label: Dashboards objectApiName: Dashboard objectLabel: Dashboard objectLabelPlural: Dashboards pageReference: attributes: objectApiName: Dashboard actionName: home state: {} type: standard__objectPage standardType: Dashboards - availableInClassic: true availableInLightning: true color: 06A59A content: https://pozil-dev-ed.my.salesforce.com/00O/o custom: false developerName: standard-report iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/report_120.png id: itemType: Standard label: Reports objectApiName: Report objectLabel: Report objectLabelPlural: Reports pageReference: attributes: objectApiName: Report actionName: home state: {} type: standard__objectPage standardType: Reports - availableInClassic: false availableInLightning: true color: 1B96FF content: custom: false developerName: standard-Feed iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/feed_120.png id: itemType: Standard label: Chatter objectApiName: Feed objectLabel: objectLabelPlural: pageReference: attributes: pageName: chatter state: {} type: standard__namedPage standardType: Feed - availableInClassic: true availableInLightning: true color: 1B96FF content: >- https://pozil-dev-ed.my.salesforce.com/_ui/core/chatter/groups/GroupListPage custom: false developerName: standard-CollaborationGroup iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/groups_120.png id: itemType: Standard label: Groups objectApiName: CollaborationGroup objectLabel: Group objectLabelPlural: Groups pageReference: attributes: objectApiName: CollaborationGroup actionName: home state: {} type: standard__objectPage standardType: Groups - availableInClassic: false availableInLightning: true color: FF538A content: https://pozil-dev-ed.my.salesforce.com/00U/o custom: false developerName: standard-Event iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/event_120.png id: itemType: Standard label: Calendar objectApiName: Event objectLabel: Event objectLabelPlural: Events pageReference: attributes: objectApiName: Event actionName: home state: {} type: standard__objectPage standardType: Events - availableInClassic: true availableInLightning: true color: 1B96FF content: >- https://pozil-dev-ed.my.salesforce.com/_ui/core/chatter/people/PeopleListPage custom: false developerName: standard-OtherUserProfile iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/user_120.png id: itemType: Standard label: People objectApiName: User objectLabel: User objectLabelPlural: People pageReference: attributes: objectApiName: User actionName: home state: {} type: standard__objectPage standardType: People - availableInClassic: true availableInLightning: true color: FF5D2D content: https://pozil-dev-ed.my.salesforce.com/500/o custom: false developerName: standard-Case iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/case_120.png id: itemType: Entity label: Cases objectApiName: Case objectLabel: Case objectLabelPlural: Cases pageReference: attributes: objectApiName: Case actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: 3BA755 content: >- https://pozil-dev-ed.my.salesforce.com/_ui/sales/forecasting/ui/ForecastingTabPage custom: false developerName: standard-Forecasting3 iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/forecasts_120.png id: itemType: Standard label: Forecasts objectApiName: Forecasting3 objectLabel: objectLabelPlural: pageReference: attributes: pageName: forecasting state: {} type: standard__namedPage standardType: Forecasting3 selected: true startUrl: >- https://pozil-dev-ed.my.salesforce.com/home/home.jsp?tsid=02u58000000fBK2 type: Lightning userNavItems: [] NavItem: title: NavItem type: object properties: availableInClassic: type: boolean example: true availableInLightning: type: boolean example: true color: type: string example: example_value content: type: - string - 'null' example: example_value custom: type: boolean example: true developerName: type: string example: example_value iconUrl: type: string example: https://www.example.com id: type: - string - 'null' example: abc123 itemType: type: string example: example_value label: type: string example: Example Title objectApiName: type: string example: example_value objectLabel: type: - string - 'null' example: example_value objectLabelPlural: type: - string - 'null' example: example_value pageReference: $ref: '#/components/schemas/PageReference' standardType: type: - string - 'null' example: example_value examples: - availableInClassic: true availableInLightning: true color: FF538A content: https://pozil-dev-ed.my.salesforce.com/lightning/page/home custom: false developerName: standard-home iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/home_120.png id: itemType: Standard label: Home objectApiName: Home objectLabel: objectLabelPlural: pageReference: attributes: pageName: home state: {} type: standard__namedPage standardType: Home PageReference: title: PageReference required: - attributes - state - type type: object properties: attributes: $ref: '#/components/schemas/Attributes29' state: type: object example: example_value type: type: string example: example_value examples: - attributes: pageName: home state: {} type: standard__namedPage Attributes29: title: Attributes29 type: object properties: pageName: type: string example: example_value objectApiName: type: string example: example_value actionName: type: string example: example_value examples: - pageName: home GetanApp: title: GetanApp required: - appId - description - developerName - eTag - formFactors - headerColor - iconUrl - isNavAutoTempTabsDisabled - isNavPersonalizationDisabled - isNavTabPersistenceDisabled - label - logoUrl - mobileStartUrl - navItems - selected - startUrl - type - userNavItems type: object properties: appId: type: string example: '500123' description: type: string example: A sample description. developerName: type: string example: example_value eTag: type: string example: example_value formFactors: type: array items: type: string description: '' example: [] headerColor: type: string example: example_value iconUrl: type: string example: https://www.example.com isNavAutoTempTabsDisabled: type: boolean example: true isNavPersonalizationDisabled: type: boolean example: true isNavTabPersistenceDisabled: type: boolean example: true label: type: string example: Example Title logoUrl: type: string example: https://www.example.com mobileStartUrl: type: - string - 'null' example: https://www.example.com navItems: type: array items: $ref: '#/components/schemas/NavItem2' description: '' example: [] selected: type: boolean example: true startUrl: type: string example: https://www.example.com type: type: string example: example_value userNavItems: type: array items: type: string description: '' example: [] examples: - appId: 06m58000000fBK2AAM description: >- Manage your sales process with accounts, leads, opportunities, and more developerName: LightningSales eTag: 21d4bafc5c5730c4f9421875288c4a00 formFactors: - Small - Medium - Large headerColor: '#0070D2' iconUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/SalesCloud/icon.png isNavAutoTempTabsDisabled: false isNavPersonalizationDisabled: false isNavTabPersistenceDisabled: false label: Sales logoUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/SalesCloud/logo.png mobileStartUrl: navItems: - availableInClassic: true availableInLightning: true color: FF5D2D content: https://pozil-dev-ed.my.salesforce.com/006/o custom: false developerName: standard-Opportunity iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/opportunity_120.png id: itemType: Entity label: Opportunities objectApiName: Opportunity objectLabel: Opportunity objectLabelPlural: Opportunities pageReference: attributes: objectApiName: Opportunity actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: FF5D2D content: https://pozil-dev-ed.my.salesforce.com/00Q/o custom: false developerName: standard-Lead iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/lead_120.png id: itemType: Entity label: Leads objectApiName: Lead objectLabel: Lead objectLabelPlural: Leads pageReference: attributes: objectApiName: Lead actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: false availableInLightning: true color: 3BA755 content: https://pozil-dev-ed.my.salesforce.com/00T/o custom: false developerName: standard-Task iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/task_120.png id: itemType: Standard label: Tasks objectApiName: Task objectLabel: Task objectLabelPlural: Tasks pageReference: attributes: objectApiName: Task actionName: home state: {} type: standard__objectPage standardType: Tasks - availableInClassic: true availableInLightning: true color: '939393' content: >- https://pozil-dev-ed.my.salesforce.com/_ui/core/chatter/files/FileTabPage custom: false developerName: standard-File iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/file_120.png id: itemType: Entity label: Files objectApiName: ContentDocument objectLabel: objectLabelPlural: pageReference: attributes: objectApiName: ContentDocument actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: '5867E8' content: https://pozil-dev-ed.my.salesforce.com/001/o custom: false developerName: standard-Account iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_120.png id: itemType: Entity label: Accounts objectApiName: Account objectLabel: Account objectLabelPlural: Accounts pageReference: attributes: objectApiName: Account actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: '5867E8' content: https://pozil-dev-ed.my.salesforce.com/003/o custom: false developerName: standard-Contact iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/contact_120.png id: itemType: Entity label: Contacts objectApiName: Contact objectLabel: Contact objectLabelPlural: Contacts pageReference: attributes: objectApiName: Contact actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: FF538A content: https://pozil-dev-ed.my.salesforce.com/01Z/o custom: false developerName: standard-Dashboard iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/dashboard_120.png id: itemType: Standard label: Dashboards objectApiName: Dashboard objectLabel: Dashboard objectLabelPlural: Dashboards pageReference: attributes: objectApiName: Dashboard actionName: home state: {} type: standard__objectPage standardType: Dashboards - availableInClassic: true availableInLightning: true color: 06A59A content: https://pozil-dev-ed.my.salesforce.com/00O/o custom: false developerName: standard-report iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/report_120.png id: itemType: Standard label: Reports objectApiName: Report objectLabel: Report objectLabelPlural: Reports pageReference: attributes: objectApiName: Report actionName: home state: {} type: standard__objectPage standardType: Reports - availableInClassic: false availableInLightning: true color: 1B96FF content: custom: false developerName: standard-Feed iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/feed_120.png id: itemType: Standard label: Chatter objectApiName: Feed objectLabel: objectLabelPlural: pageReference: attributes: pageName: chatter state: {} type: standard__namedPage standardType: Feed - availableInClassic: true availableInLightning: true color: 1B96FF content: >- https://pozil-dev-ed.my.salesforce.com/_ui/core/chatter/groups/GroupListPage custom: false developerName: standard-CollaborationGroup iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/groups_120.png id: itemType: Standard label: Groups objectApiName: CollaborationGroup objectLabel: Group objectLabelPlural: Groups pageReference: attributes: objectApiName: CollaborationGroup actionName: home state: {} type: standard__objectPage standardType: Groups - availableInClassic: false availableInLightning: true color: FF538A content: custom: false developerName: Events iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/event_120.png id: itemType: Standard label: Events objectApiName: Event objectLabel: Event objectLabelPlural: Events pageReference: attributes: objectApiName: Event actionName: home state: {} type: standard__objectPage standardType: Events - availableInClassic: true availableInLightning: true color: 1B96FF content: >- https://pozil-dev-ed.my.salesforce.com/_ui/core/chatter/people/PeopleListPage custom: false developerName: standard-OtherUserProfile iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/user_120.png id: itemType: Standard label: People objectApiName: User objectLabel: User objectLabelPlural: People pageReference: attributes: objectApiName: User actionName: home state: {} type: standard__objectPage standardType: People - availableInClassic: true availableInLightning: true color: FF5D2D content: https://pozil-dev-ed.my.salesforce.com/500/o custom: false developerName: standard-Case iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/case_120.png id: itemType: Entity label: Cases objectApiName: Case objectLabel: Case objectLabelPlural: Cases pageReference: attributes: objectApiName: Case actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: 3BA755 content: custom: false developerName: ForecastingLightning iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/forecasts_120.png id: itemType: Standard label: Forecasts objectApiName: objectLabel: objectLabelPlural: pageReference: attributes: pageName: forecasting state: {} type: standard__namedPage standardType: ForecastingLightning selected: true startUrl: >- https://pozil-dev-ed.my.salesforce.com/home/home.jsp?tsid=02u58000000fBK2 type: Lightning userNavItems: [] NavItem2: title: NavItem2 required: - availableInClassic - availableInLightning - color - content - custom - developerName - iconUrl - id - itemType - label - objectApiName - objectLabel - objectLabelPlural - pageReference - standardType type: object properties: availableInClassic: type: boolean example: true availableInLightning: type: boolean example: true color: type: string example: example_value content: type: - string - 'null' example: example_value custom: type: boolean example: true developerName: type: string example: example_value iconUrl: type: string example: https://www.example.com id: type: - string - 'null' example: abc123 itemType: type: string example: example_value label: type: string example: Example Title objectApiName: type: - string - 'null' example: example_value objectLabel: type: - string - 'null' example: example_value objectLabelPlural: type: - string - 'null' example: example_value pageReference: $ref: '#/components/schemas/PageReference' standardType: type: - string - 'null' example: example_value examples: - availableInClassic: true availableInLightning: true color: FF5D2D content: https://pozil-dev-ed.my.salesforce.com/006/o custom: false developerName: standard-Opportunity iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/opportunity_120.png id: itemType: Entity label: Opportunities objectApiName: Opportunity objectLabel: Opportunity objectLabelPlural: Opportunities pageReference: attributes: objectApiName: Opportunity actionName: home state: {} type: standard__objectPage standardType: UpdateLastSelectedApp: title: UpdateLastSelectedApp required: - appId - description - developerName - eTag - formFactors - headerColor - iconUrl - isNavAutoTempTabsDisabled - isNavPersonalizationDisabled - isNavTabPersistenceDisabled - label - logoUrl - mobileStartUrl - navItems - selected - startUrl - type - userNavItems type: object properties: appId: type: string example: '500123' description: type: string example: A sample description. developerName: type: string example: example_value eTag: type: string example: example_value formFactors: type: array items: type: string description: '' example: [] headerColor: type: string example: example_value iconUrl: type: string example: https://www.example.com isNavAutoTempTabsDisabled: type: boolean example: true isNavPersonalizationDisabled: type: boolean example: true isNavTabPersistenceDisabled: type: boolean example: true label: type: string example: Example Title logoUrl: type: string example: https://www.example.com mobileStartUrl: type: - string - 'null' example: https://www.example.com navItems: type: array items: $ref: '#/components/schemas/NavItem3' description: '' example: [] selected: type: boolean example: true startUrl: type: string example: https://www.example.com type: type: string example: example_value userNavItems: type: array items: type: string description: '' example: [] examples: - appId: 06m58000000fBK2AAM description: >- Manage your sales process with accounts, leads, opportunities, and more developerName: LightningSales eTag: e288a1d753c535d52fd11b047cd74482 formFactors: - Small - Medium - Large headerColor: '#0070D2' iconUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/SalesCloud/icon.png isNavAutoTempTabsDisabled: false isNavPersonalizationDisabled: false isNavTabPersistenceDisabled: false label: Sales logoUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/SalesCloud/logo.png mobileStartUrl: navItems: - availableInClassic: true availableInLightning: true color: FF538A content: https://pozil-dev-ed.my.salesforce.com/lightning/page/home custom: false developerName: standard-home iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/home_120.png id: itemType: Standard label: Home objectApiName: Home objectLabel: objectLabelPlural: pageReference: attributes: pageName: home state: {} type: standard__namedPage standardType: Home - availableInClassic: true availableInLightning: true color: FF5D2D content: https://pozil-dev-ed.my.salesforce.com/006/o custom: false developerName: standard-Opportunity iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/opportunity_120.png id: itemType: Entity label: Opportunities objectApiName: Opportunity objectLabel: Opportunity objectLabelPlural: Opportunities pageReference: attributes: objectApiName: Opportunity actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: FF5D2D content: https://pozil-dev-ed.my.salesforce.com/00Q/o custom: false developerName: standard-Lead iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/lead_120.png id: itemType: Entity label: Leads objectApiName: Lead objectLabel: Lead objectLabelPlural: Leads pageReference: attributes: objectApiName: Lead actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: false availableInLightning: true color: 3BA755 content: https://pozil-dev-ed.my.salesforce.com/00T/o custom: false developerName: standard-Task iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/task_120.png id: itemType: Standard label: Tasks objectApiName: Task objectLabel: Task objectLabelPlural: Tasks pageReference: attributes: objectApiName: Task actionName: home state: {} type: standard__objectPage standardType: Tasks - availableInClassic: true availableInLightning: true color: '939393' content: >- https://pozil-dev-ed.my.salesforce.com/_ui/core/chatter/files/FileTabPage custom: false developerName: standard-File iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/file_120.png id: itemType: Entity label: Files objectApiName: ContentDocument objectLabel: objectLabelPlural: pageReference: attributes: objectApiName: ContentDocument actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: '5867E8' content: https://pozil-dev-ed.my.salesforce.com/001/o custom: false developerName: standard-Account iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_120.png id: itemType: Entity label: Accounts objectApiName: Account objectLabel: Account objectLabelPlural: Accounts pageReference: attributes: objectApiName: Account actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: '5867E8' content: https://pozil-dev-ed.my.salesforce.com/003/o custom: false developerName: standard-Contact iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/contact_120.png id: itemType: Entity label: Contacts objectApiName: Contact objectLabel: Contact objectLabelPlural: Contacts pageReference: attributes: objectApiName: Contact actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: FF538A content: https://pozil-dev-ed.my.salesforce.com/01Z/o custom: false developerName: standard-Dashboard iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/dashboard_120.png id: itemType: Standard label: Dashboards objectApiName: Dashboard objectLabel: Dashboard objectLabelPlural: Dashboards pageReference: attributes: objectApiName: Dashboard actionName: home state: {} type: standard__objectPage standardType: Dashboards - availableInClassic: true availableInLightning: true color: 06A59A content: https://pozil-dev-ed.my.salesforce.com/00O/o custom: false developerName: standard-report iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/report_120.png id: itemType: Standard label: Reports objectApiName: Report objectLabel: Report objectLabelPlural: Reports pageReference: attributes: objectApiName: Report actionName: home state: {} type: standard__objectPage standardType: Reports - availableInClassic: false availableInLightning: true color: 1B96FF content: custom: false developerName: standard-Feed iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/feed_120.png id: itemType: Standard label: Chatter objectApiName: Feed objectLabel: objectLabelPlural: pageReference: attributes: pageName: chatter state: {} type: standard__namedPage standardType: Feed - availableInClassic: true availableInLightning: true color: 1B96FF content: >- https://pozil-dev-ed.my.salesforce.com/_ui/core/chatter/groups/GroupListPage custom: false developerName: standard-CollaborationGroup iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/groups_120.png id: itemType: Standard label: Groups objectApiName: CollaborationGroup objectLabel: Group objectLabelPlural: Groups pageReference: attributes: objectApiName: CollaborationGroup actionName: home state: {} type: standard__objectPage standardType: Groups - availableInClassic: false availableInLightning: true color: FF538A content: https://pozil-dev-ed.my.salesforce.com/00U/o custom: false developerName: standard-Event iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/event_120.png id: itemType: Standard label: Calendar objectApiName: Event objectLabel: Event objectLabelPlural: Events pageReference: attributes: objectApiName: Event actionName: home state: {} type: standard__objectPage standardType: Events - availableInClassic: true availableInLightning: true color: 1B96FF content: >- https://pozil-dev-ed.my.salesforce.com/_ui/core/chatter/people/PeopleListPage custom: false developerName: standard-OtherUserProfile iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/user_120.png id: itemType: Standard label: People objectApiName: User objectLabel: User objectLabelPlural: People pageReference: attributes: objectApiName: User actionName: home state: {} type: standard__objectPage standardType: People - availableInClassic: true availableInLightning: true color: FF5D2D content: https://pozil-dev-ed.my.salesforce.com/500/o custom: false developerName: standard-Case iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/case_120.png id: itemType: Entity label: Cases objectApiName: Case objectLabel: Case objectLabelPlural: Cases pageReference: attributes: objectApiName: Case actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: 3BA755 content: >- https://pozil-dev-ed.my.salesforce.com/_ui/sales/forecasting/ui/ForecastingTabPage custom: false developerName: standard-Forecasting3 iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/forecasts_120.png id: itemType: Standard label: Forecasts objectApiName: Forecasting3 objectLabel: objectLabelPlural: pageReference: attributes: pageName: forecasting state: {} type: standard__namedPage standardType: Forecasting3 selected: true startUrl: >- https://pozil-dev-ed.my.salesforce.com/home/home.jsp?tsid=02u58000000fBK2 type: Lightning userNavItems: [] NavItem3: title: NavItem3 required: - availableInClassic - availableInLightning - color - content - custom - developerName - iconUrl - id - itemType - label - objectApiName - objectLabel - objectLabelPlural - pageReference - standardType type: object properties: availableInClassic: type: boolean example: true availableInLightning: type: boolean example: true color: type: string example: example_value content: type: - string - 'null' example: example_value custom: type: boolean example: true developerName: type: string example: example_value iconUrl: type: string example: https://www.example.com id: type: - string - 'null' example: abc123 itemType: type: string example: example_value label: type: string example: Example Title objectApiName: type: string example: example_value objectLabel: type: - string - 'null' example: example_value objectLabelPlural: type: - string - 'null' example: example_value pageReference: $ref: '#/components/schemas/PageReference' standardType: type: - string - 'null' example: example_value examples: - availableInClassic: true availableInLightning: true color: FF538A content: https://pozil-dev-ed.my.salesforce.com/lightning/page/home custom: false developerName: standard-home iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/home_120.png id: itemType: Standard label: Home objectApiName: Home objectLabel: objectLabelPlural: pageReference: attributes: pageName: home state: {} type: standard__namedPage standardType: Home GetLastSelectedApp: title: GetLastSelectedApp required: - appId - description - developerName - eTag - formFactors - headerColor - iconUrl - isNavAutoTempTabsDisabled - isNavPersonalizationDisabled - isNavTabPersistenceDisabled - label - logoUrl - mobileStartUrl - navItems - selected - startUrl - type - userNavItems type: object properties: appId: type: string example: '500123' description: type: string example: A sample description. developerName: type: string example: example_value eTag: type: string example: example_value formFactors: type: array items: type: string description: '' example: [] headerColor: type: string example: example_value iconUrl: type: string example: https://www.example.com isNavAutoTempTabsDisabled: type: boolean example: true isNavPersonalizationDisabled: type: boolean example: true isNavTabPersistenceDisabled: type: boolean example: true label: type: string example: Example Title logoUrl: type: string example: https://www.example.com mobileStartUrl: type: - string - 'null' example: https://www.example.com navItems: type: array items: $ref: '#/components/schemas/NavItem3' description: '' example: [] selected: type: boolean example: true startUrl: type: string example: https://www.example.com type: type: string example: example_value userNavItems: type: array items: type: string description: '' example: [] examples: - appId: 06m58000000fBK2AAM description: >- Manage your sales process with accounts, leads, opportunities, and more developerName: LightningSales eTag: e288a1d753c535d52fd11b047cd74482 formFactors: - Small - Medium - Large headerColor: '#0070D2' iconUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/SalesCloud/icon.png isNavAutoTempTabsDisabled: false isNavPersonalizationDisabled: false isNavTabPersistenceDisabled: false label: Sales logoUrl: >- https://pozil-dev-ed.my.salesforce.com/logos/Salesforce/SalesCloud/logo.png mobileStartUrl: navItems: - availableInClassic: true availableInLightning: true color: FF538A content: https://pozil-dev-ed.my.salesforce.com/lightning/page/home custom: false developerName: standard-home iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/home_120.png id: itemType: Standard label: Home objectApiName: Home objectLabel: objectLabelPlural: pageReference: attributes: pageName: home state: {} type: standard__namedPage standardType: Home - availableInClassic: true availableInLightning: true color: FF5D2D content: https://pozil-dev-ed.my.salesforce.com/006/o custom: false developerName: standard-Opportunity iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/opportunity_120.png id: itemType: Entity label: Opportunities objectApiName: Opportunity objectLabel: Opportunity objectLabelPlural: Opportunities pageReference: attributes: objectApiName: Opportunity actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: FF5D2D content: https://pozil-dev-ed.my.salesforce.com/00Q/o custom: false developerName: standard-Lead iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/lead_120.png id: itemType: Entity label: Leads objectApiName: Lead objectLabel: Lead objectLabelPlural: Leads pageReference: attributes: objectApiName: Lead actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: false availableInLightning: true color: 3BA755 content: https://pozil-dev-ed.my.salesforce.com/00T/o custom: false developerName: standard-Task iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/task_120.png id: itemType: Standard label: Tasks objectApiName: Task objectLabel: Task objectLabelPlural: Tasks pageReference: attributes: objectApiName: Task actionName: home state: {} type: standard__objectPage standardType: Tasks - availableInClassic: true availableInLightning: true color: '939393' content: >- https://pozil-dev-ed.my.salesforce.com/_ui/core/chatter/files/FileTabPage custom: false developerName: standard-File iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/file_120.png id: itemType: Entity label: Files objectApiName: ContentDocument objectLabel: objectLabelPlural: pageReference: attributes: objectApiName: ContentDocument actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: '5867E8' content: https://pozil-dev-ed.my.salesforce.com/001/o custom: false developerName: standard-Account iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_120.png id: itemType: Entity label: Accounts objectApiName: Account objectLabel: Account objectLabelPlural: Accounts pageReference: attributes: objectApiName: Account actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: '5867E8' content: https://pozil-dev-ed.my.salesforce.com/003/o custom: false developerName: standard-Contact iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/contact_120.png id: itemType: Entity label: Contacts objectApiName: Contact objectLabel: Contact objectLabelPlural: Contacts pageReference: attributes: objectApiName: Contact actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: FF538A content: https://pozil-dev-ed.my.salesforce.com/01Z/o custom: false developerName: standard-Dashboard iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/dashboard_120.png id: itemType: Standard label: Dashboards objectApiName: Dashboard objectLabel: Dashboard objectLabelPlural: Dashboards pageReference: attributes: objectApiName: Dashboard actionName: home state: {} type: standard__objectPage standardType: Dashboards - availableInClassic: true availableInLightning: true color: 06A59A content: https://pozil-dev-ed.my.salesforce.com/00O/o custom: false developerName: standard-report iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/report_120.png id: itemType: Standard label: Reports objectApiName: Report objectLabel: Report objectLabelPlural: Reports pageReference: attributes: objectApiName: Report actionName: home state: {} type: standard__objectPage standardType: Reports - availableInClassic: false availableInLightning: true color: 1B96FF content: custom: false developerName: standard-Feed iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/feed_120.png id: itemType: Standard label: Chatter objectApiName: Feed objectLabel: objectLabelPlural: pageReference: attributes: pageName: chatter state: {} type: standard__namedPage standardType: Feed - availableInClassic: true availableInLightning: true color: 1B96FF content: >- https://pozil-dev-ed.my.salesforce.com/_ui/core/chatter/groups/GroupListPage custom: false developerName: standard-CollaborationGroup iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/groups_120.png id: itemType: Standard label: Groups objectApiName: CollaborationGroup objectLabel: Group objectLabelPlural: Groups pageReference: attributes: objectApiName: CollaborationGroup actionName: home state: {} type: standard__objectPage standardType: Groups - availableInClassic: false availableInLightning: true color: FF538A content: https://pozil-dev-ed.my.salesforce.com/00U/o custom: false developerName: standard-Event iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/event_120.png id: itemType: Standard label: Calendar objectApiName: Event objectLabel: Event objectLabelPlural: Events pageReference: attributes: objectApiName: Event actionName: home state: {} type: standard__objectPage standardType: Events - availableInClassic: true availableInLightning: true color: 1B96FF content: >- https://pozil-dev-ed.my.salesforce.com/_ui/core/chatter/people/PeopleListPage custom: false developerName: standard-OtherUserProfile iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/user_120.png id: itemType: Standard label: People objectApiName: User objectLabel: User objectLabelPlural: People pageReference: attributes: objectApiName: User actionName: home state: {} type: standard__objectPage standardType: People - availableInClassic: true availableInLightning: true color: FF5D2D content: https://pozil-dev-ed.my.salesforce.com/500/o custom: false developerName: standard-Case iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/case_120.png id: itemType: Entity label: Cases objectApiName: Case objectLabel: Case objectLabelPlural: Cases pageReference: attributes: objectApiName: Case actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: 3BA755 content: >- https://pozil-dev-ed.my.salesforce.com/_ui/sales/forecasting/ui/ForecastingTabPage custom: false developerName: standard-Forecasting3 iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/forecasts_120.png id: itemType: Standard label: Forecasts objectApiName: Forecasting3 objectLabel: objectLabelPlural: pageReference: attributes: pageName: forecasting state: {} type: standard__namedPage standardType: Forecasting3 selected: true startUrl: >- https://pozil-dev-ed.my.salesforce.com/home/home.jsp?tsid=02u58000000fBK2 type: Lightning userNavItems: [] Resultwithpersonalizednav: title: Resultwithpersonalizednav required: - currentPageUrl - eTag - navItems - nextPageUrl type: object properties: currentPageUrl: type: string example: https://www.example.com eTag: type: string example: example_value navItems: type: array items: $ref: '#/components/schemas/NavItem5' description: '' example: [] nextPageUrl: type: - string - 'null' example: https://www.example.com examples: - currentPageUrl: >- /services/data/v58.0/ui-api/apps/06m58000000fBK2AAM/user-nav-items?formFactor=large eTag: 0d35dc3820e3022bcf9145fc3ec5be69 navItems: - availableInClassic: true availableInLightning: true color: FF538A content: https://pozil-dev-ed.my.salesforce.com/lightning/page/home custom: false developerName: standard-home iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/home_120.png id: 0Qk4H0000009kokSAA itemType: Standard label: Home objectApiName: Home objectLabel: objectLabelPlural: pageReference: attributes: pageName: home state: {} type: standard__namedPage standardType: Home - availableInClassic: true availableInLightning: true color: FF5D2D content: https://pozil-dev-ed.my.salesforce.com/006/o custom: false developerName: standard-Opportunity iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/opportunity_120.png id: 0Qk4H0000009kolSAA itemType: Entity label: Opportunities objectApiName: Opportunity objectLabel: Opportunity objectLabelPlural: Opportunities pageReference: attributes: objectApiName: Opportunity actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: FF5D2D content: https://pozil-dev-ed.my.salesforce.com/00Q/o custom: false developerName: standard-Lead iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/lead_120.png id: 0Qk4H0000009komSAA itemType: Entity label: Leads objectApiName: Lead objectLabel: Lead objectLabelPlural: Leads pageReference: attributes: objectApiName: Lead actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: false availableInLightning: true color: 3BA755 content: https://pozil-dev-ed.my.salesforce.com/00T/o custom: false developerName: standard-Task iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/task_120.png id: 0Qk4H0000009konSAA itemType: Standard label: Tasks objectApiName: Task objectLabel: Task objectLabelPlural: Tasks pageReference: attributes: objectApiName: Task actionName: home state: {} type: standard__objectPage standardType: Tasks - availableInClassic: true availableInLightning: true color: '939393' content: >- https://pozil-dev-ed.my.salesforce.com/_ui/core/chatter/files/FileTabPage custom: false developerName: standard-File iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/file_120.png id: 0Qk4H0000009kooSAA itemType: Entity label: Files objectApiName: ContentDocument objectLabel: objectLabelPlural: pageReference: attributes: objectApiName: ContentDocument actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: '5867E8' content: https://pozil-dev-ed.my.salesforce.com/001/o custom: false developerName: standard-Account iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/account_120.png id: 0Qk4H0000009kopSAA itemType: Entity label: Accounts objectApiName: Account objectLabel: Account objectLabelPlural: Accounts pageReference: attributes: objectApiName: Account actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: '5867E8' content: https://pozil-dev-ed.my.salesforce.com/003/o custom: false developerName: standard-Contact iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/contact_120.png id: 0Qk4H0000009koqSAA itemType: Entity label: Contacts objectApiName: Contact objectLabel: Contact objectLabelPlural: Contacts pageReference: attributes: objectApiName: Contact actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: FF538A content: https://pozil-dev-ed.my.salesforce.com/01Z/o custom: false developerName: standard-Dashboard iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/dashboard_120.png id: 0Qk4H0000009korSAA itemType: Standard label: Dashboards objectApiName: Dashboard objectLabel: Dashboard objectLabelPlural: Dashboards pageReference: attributes: objectApiName: Dashboard actionName: home state: {} type: standard__objectPage standardType: Dashboards - availableInClassic: true availableInLightning: true color: 06A59A content: https://pozil-dev-ed.my.salesforce.com/00O/o custom: false developerName: standard-report iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/report_120.png id: 0Qk4H0000009kosSAA itemType: Standard label: Reports objectApiName: Report objectLabel: Report objectLabelPlural: Reports pageReference: attributes: objectApiName: Report actionName: home state: {} type: standard__objectPage standardType: Reports - availableInClassic: false availableInLightning: true color: 1B96FF content: custom: false developerName: standard-Feed iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/feed_120.png id: 0Qk4H0000009kotSAA itemType: Standard label: Chatter objectApiName: Feed objectLabel: objectLabelPlural: pageReference: attributes: pageName: chatter state: {} type: standard__namedPage standardType: Feed - availableInClassic: true availableInLightning: true color: 1B96FF content: >- https://pozil-dev-ed.my.salesforce.com/_ui/core/chatter/groups/GroupListPage custom: false developerName: standard-CollaborationGroup iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/groups_120.png id: 0Qk4H0000009kouSAA itemType: Standard label: Groups objectApiName: CollaborationGroup objectLabel: Group objectLabelPlural: Groups pageReference: attributes: objectApiName: CollaborationGroup actionName: home state: {} type: standard__objectPage standardType: Groups - availableInClassic: true availableInLightning: true color: 1B96FF content: >- https://pozil-dev-ed.my.salesforce.com/_ui/core/chatter/people/PeopleListPage custom: false developerName: standard-OtherUserProfile iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/user_120.png id: 0Qk4H0000009kovSAA itemType: Standard label: People objectApiName: User objectLabel: User objectLabelPlural: People pageReference: attributes: objectApiName: User actionName: home state: {} type: standard__objectPage standardType: People - availableInClassic: true availableInLightning: true color: FF5D2D content: https://pozil-dev-ed.my.salesforce.com/500/o custom: false developerName: standard-Case iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/case_120.png id: 0Qk4H0000009kowSAA itemType: Entity label: Cases objectApiName: Case objectLabel: Case objectLabelPlural: Cases pageReference: attributes: objectApiName: Case actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: false availableInLightning: true color: FF538A content: https://pozil-dev-ed.my.salesforce.com/00U/o custom: false developerName: standard-Event iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/event_120.png id: 0Qk4H0000009koxSAA itemType: Standard label: Calendar objectApiName: Event objectLabel: Event objectLabelPlural: Events pageReference: attributes: objectApiName: Event actionName: home state: {} type: standard__objectPage standardType: Events - availableInClassic: true availableInLightning: true color: 3BA755 content: >- https://pozil-dev-ed.my.salesforce.com/_ui/sales/forecasting/ui/ForecastingTabPage custom: false developerName: standard-Forecasting3 iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/forecasts_120.png id: 0Qk4H0000009koySAA itemType: Standard label: Forecasts objectApiName: Forecasting3 objectLabel: objectLabelPlural: pageReference: attributes: pageName: forecasting state: {} type: standard__namedPage standardType: Forecasting3 nextPageUrl: NavItem5: title: NavItem5 required: - availableInClassic - availableInLightning - color - content - custom - developerName - iconUrl - id - itemType - label - objectApiName - objectLabel - objectLabelPlural - pageReference - standardType type: object properties: availableInClassic: type: boolean example: true availableInLightning: type: boolean example: true color: type: string example: example_value content: type: - string - 'null' example: example_value custom: type: boolean example: true developerName: type: string example: example_value iconUrl: type: string example: https://www.example.com id: type: string example: abc123 itemType: type: string example: example_value label: type: string example: Example Title objectApiName: type: string example: example_value objectLabel: type: - string - 'null' example: example_value objectLabelPlural: type: - string - 'null' example: example_value pageReference: $ref: '#/components/schemas/PageReference' standardType: type: - string - 'null' example: example_value examples: - availableInClassic: true availableInLightning: true color: FF538A content: https://pozil-dev-ed.my.salesforce.com/lightning/page/home custom: false developerName: standard-home iconUrl: >- https://pozil-dev-ed.my.salesforce.com/img/icon/t4v35/standard/home_120.png id: 0Qk4H0000009kokSAA itemType: Standard label: Home objectApiName: Home objectLabel: objectLabelPlural: pageReference: attributes: pageName: home state: {} type: standard__namedPage standardType: Home Resultwithdefaultnav: title: Resultwithdefaultnav required: - currentPageUrl - eTag - navItems - nextPageUrl type: object properties: currentPageUrl: type: string example: https://www.example.com eTag: type: string example: example_value navItems: type: array items: type: string description: '' example: [] nextPageUrl: type: - string - 'null' example: https://www.example.com examples: - currentPageUrl: >- /services/data/v58.0/ui-api/apps/06m58000000fBK2AAM/user-nav-items?formFactor=large eTag: 88abcfe07e0b66040d6498a1624a45b7 navItems: [] nextPageUrl: GetAllNavigationItems: title: GetAllNavigationItems required: - currentPageUrl - eTag - navItems - nextPageUrl type: object properties: currentPageUrl: type: string example: https://www.example.com eTag: type: string example: example_value navItems: type: array items: $ref: '#/components/schemas/NavItem6' description: '' example: [] nextPageUrl: type: string example: https://www.example.com examples: - currentPageUrl: >- /services/data/v58.0/ui-api/nav-items?formFactor=Small&page=1&pageSize=5 eTag: 425dfe9232c5bd0e9c6e4b94771c91b8 navItems: - availableInClassic: true availableInLightning: true color: content: https://pozil-dev-ed.my.salesforce.com/4nK/o custom: false developerName: standard-AssetStatePeriod iconUrl: id: itemType: Entity label: Asset State Periods objectApiName: AssetStatePeriod objectLabel: Asset State Period objectLabelPlural: Asset State Periods pageReference: attributes: objectApiName: AssetStatePeriod actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: content: https://pozil-dev-ed.my.salesforce.com/02i/o custom: false developerName: standard-Asset iconUrl: id: itemType: Entity label: Assets objectApiName: Asset objectLabel: Asset objectLabelPlural: Assets pageReference: attributes: objectApiName: Asset actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: content: https://pozil-dev-ed.my.salesforce.com/0cI/o custom: false developerName: standard-AuthorizationForm iconUrl: id: itemType: Entity label: Authorization Form objectApiName: AuthorizationForm objectLabel: Authorization Form objectLabelPlural: Authorization Forms pageReference: attributes: objectApiName: AuthorizationForm actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: content: https://pozil-dev-ed.my.salesforce.com/0cK/o custom: false developerName: standard-AuthorizationFormConsent iconUrl: id: itemType: Entity label: Authorization Form Consent objectApiName: AuthorizationFormConsent objectLabel: Authorization Form Consent objectLabelPlural: Authorization Form Consents pageReference: attributes: objectApiName: AuthorizationFormConsent actionName: home state: {} type: standard__objectPage standardType: - availableInClassic: true availableInLightning: true color: content: https://pozil-dev-ed.my.salesforce.com/0cM/o custom: false developerName: standard-AuthorizationFormDataUse iconUrl: id: itemType: Entity label: Authorization Form Data Use objectApiName: AuthorizationFormDataUse objectLabel: Authorization Form Data Use objectLabelPlural: Authorization Form Data Uses pageReference: attributes: objectApiName: AuthorizationFormDataUse actionName: home state: {} type: standard__objectPage standardType: nextPageUrl: >- /services/data/v58.0/ui-api/nav-items?formFactor=Small&page=2&pageSize=5 NavItem6: title: NavItem6 required: - availableInClassic - availableInLightning - color - content - custom - developerName - iconUrl - id - itemType - label - objectApiName - objectLabel - objectLabelPlural - pageReference - standardType type: object properties: availableInClassic: type: boolean example: true availableInLightning: type: boolean example: true color: type: - string - 'null' example: example_value content: type: string example: example_value custom: type: boolean example: true developerName: type: string example: example_value iconUrl: type: - string - 'null' example: https://www.example.com id: type: - string - 'null' example: abc123 itemType: type: string example: example_value label: type: string example: Example Title objectApiName: type: string example: example_value objectLabel: type: string example: example_value objectLabelPlural: type: string example: example_value pageReference: $ref: '#/components/schemas/PageReference6' standardType: type: - string - 'null' example: example_value examples: - availableInClassic: true availableInLightning: true color: content: https://pozil-dev-ed.my.salesforce.com/4nK/o custom: false developerName: standard-AssetStatePeriod iconUrl: id: itemType: Entity label: Asset State Periods objectApiName: AssetStatePeriod objectLabel: Asset State Period objectLabelPlural: Asset State Periods pageReference: attributes: objectApiName: AssetStatePeriod actionName: home state: {} type: standard__objectPage standardType: PageReference6: title: PageReference6 required: - attributes - state - type type: object properties: attributes: $ref: '#/components/schemas/Attributes35' state: type: object example: example_value type: type: string example: example_value examples: - attributes: objectApiName: AssetStatePeriod actionName: home state: {} type: standard__objectPage Attributes35: title: Attributes35 required: - objectApiName - actionName type: object properties: objectApiName: type: string example: example_value actionName: type: string example: example_value examples: - objectApiName: AssetStatePeriod actionName: home GetActiveTheme: title: GetActiveTheme required: - brandColor - brandImage - defaultGroupBanner - defaultGroupImage - defaultPageBanner - defaultUserBanner - defaultUserImage - density - headerColor - linkColor - pageColor type: object properties: brandColor: type: string example: example_value brandImage: $ref: '#/components/schemas/BrandImage' defaultGroupBanner: $ref: '#/components/schemas/DefaultGroupBanner' defaultGroupImage: $ref: '#/components/schemas/DefaultGroupImage' defaultPageBanner: $ref: '#/components/schemas/DefaultPageBanner' defaultUserBanner: $ref: '#/components/schemas/DefaultUserBanner' defaultUserImage: $ref: '#/components/schemas/DefaultUserImage' density: type: string example: example_value headerColor: type: string example: example_value linkColor: type: string example: example_value pageColor: type: string example: example_value examples: - brandColor: '#0176D3' brandImage: largeUrl: /_slds/images/themes/lightning_blue/lightning_blue_logo_3x.png mediumUrl: /_slds/images/themes/lightning_blue/lightning_blue_logo_2x.png smallUrl: /_slds/images/themes/lightning_blue/lightning_blue_logo_1x.png defaultGroupBanner: fullSizeUrl: /_slds/images/themes/lightning_blue/lightning_blue_group.png defaultGroupImage: largeUrl: >- /_slds/images/themes/lightning_blue/lightning_blue_group_icon_200.png mediumUrl: >- /_slds/images/themes/lightning_blue/lightning_blue_group_icon_160.png smallUrl: >- /_slds/images/themes/lightning_blue/lightning_blue_group_icon_96.png defaultPageBanner: fullSizeUrl: /_slds/images/themes/lightning_blue/lightning_blue_background.png defaultUserBanner: fullSizeUrl: /_slds/images/themes/lightning_blue/lightning_blue_profile.png defaultUserImage: largeUrl: >- /_slds/images/themes/lightning_blue/lightning_blue_profile_avatar_200.png mediumUrl: >- /_slds/images/themes/lightning_blue/lightning_blue_profile_avatar_160.png smallUrl: >- /_slds/images/themes/lightning_blue/lightning_blue_profile_avatar_96.png density: ViewOne headerColor: '#FFFFFF' linkColor: '#0176D3' pageColor: '#B0C4DF' BrandImage: title: BrandImage required: - largeUrl - mediumUrl - smallUrl type: object properties: largeUrl: type: string example: https://www.example.com mediumUrl: type: string example: https://www.example.com smallUrl: type: string example: https://www.example.com examples: - largeUrl: /_slds/images/themes/lightning_blue/lightning_blue_logo_3x.png mediumUrl: /_slds/images/themes/lightning_blue/lightning_blue_logo_2x.png smallUrl: /_slds/images/themes/lightning_blue/lightning_blue_logo_1x.png DefaultGroupBanner: title: DefaultGroupBanner required: - fullSizeUrl type: object properties: fullSizeUrl: type: string example: https://www.example.com examples: - fullSizeUrl: /_slds/images/themes/lightning_blue/lightning_blue_group.png DefaultGroupImage: title: DefaultGroupImage required: - largeUrl - mediumUrl - smallUrl type: object properties: largeUrl: type: string example: https://www.example.com mediumUrl: type: string example: https://www.example.com smallUrl: type: string example: https://www.example.com examples: - largeUrl: >- /_slds/images/themes/lightning_blue/lightning_blue_group_icon_200.png mediumUrl: >- /_slds/images/themes/lightning_blue/lightning_blue_group_icon_160.png smallUrl: /_slds/images/themes/lightning_blue/lightning_blue_group_icon_96.png DefaultPageBanner: title: DefaultPageBanner required: - fullSizeUrl type: object properties: fullSizeUrl: type: string example: https://www.example.com examples: - fullSizeUrl: /_slds/images/themes/lightning_blue/lightning_blue_background.png DefaultUserBanner: title: DefaultUserBanner required: - fullSizeUrl type: object properties: fullSizeUrl: type: string example: https://www.example.com examples: - fullSizeUrl: /_slds/images/themes/lightning_blue/lightning_blue_profile.png DefaultUserImage: title: DefaultUserImage required: - largeUrl - mediumUrl - smallUrl type: object properties: largeUrl: type: string example: https://www.example.com mediumUrl: type: string example: https://www.example.com smallUrl: type: string example: https://www.example.com examples: - largeUrl: >- /_slds/images/themes/lightning_blue/lightning_blue_profile_avatar_200.png mediumUrl: >- /_slds/images/themes/lightning_blue/lightning_blue_profile_avatar_160.png smallUrl: >- /_slds/images/themes/lightning_blue/lightning_blue_profile_avatar_96.png securitySchemes: oauth2: type: oauth2 flows: implicit: authorizationUrl: >- {DefaultParameterValue}{DefaultParameterValue}/services/oauth2/authorize scopes: api: '' security: - oauth2: - api tags: - name: Abort - name: Access - name: Accounts - name: Actions - name: Active - name: Add - name: Agent - name: All - name: Amend - name: Applications - name: Appointment - name: Approvals - name: Async - name: Authentication - name: Authorize - name: Based - name: Basic - name: Batch - name: Benefits - name: Blobs - name: Bulk - name: Bundles - name: Calculate - name: Call - name: Cancel - name: Candidates - name: Capability - name: Cart - name: Change - name: Channel - name: Chart - name: Checks - name: Child - name: Client - name: Clone - name: Close - name: Collections - name: Comments description: Get, edit, and delete comments. - name: Commitment - name: Compact - name: Completion - name: Composite description: >- The Composite API executes a series of REST API requests in a single POST request, or retrieves a list of other composite resources with a GET request. There are three types of Composite requests sometime referred to as APIs: - [Composite](https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_composite_composite.htm) (the original) - [Composite Batch](https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_composite_batch.htm) - [Composite Graph](https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_composite_graph.htm) (the most recent) - name: Configuration - name: Connect - name: Consent - name: Content - name: Conversation - name: Corporate - name: Count - name: Create - name: Creation - name: Credential - name: Credentials description: >- > Use these Connect API endpoints to get credentials for OAuth consumers of an external client app. Collections returns credentials for all consumers associated with an external client app. Resources returns the the key, secret, or both key and secret for a specific consumer. - name: Custom - name: Data - name: Decision - name: Definition - name: Definitions - name: Deletes - name: Dependencies - name: Describe - name: Detail - name: Developer - name: Directories - name: Discovery - name: Download - name: Dynamic - name: Edit - name: Element - name: Elements - name: Eligible - name: Endpoint - name: Entries - name: Events - name: Exchange - name: Execution - name: Exit - name: Exports - name: Expression - name: External - name: Failed - name: Favorite - name: Feed - name: Feedback - name: Field - name: Files - name: Flow - name: Following - name: Game - name: Games - name: General - name: Generate - name: Get - name: Gift - name: Gifts - name: Global - name: Graph - name: Groups description: Get groups and group members. Create groups, invites, and members. - name: History - name: Identifiers - name: Image - name: Individual - name: Info - name: Information - name: Initialize - name: Initiate - name: Instant - name: Integration - name: Invites - name: Invoke - name: Item - name: Items - name: Jobs - name: Journals - name: Keys - name: Knowledge - name: Language - name: Last - name: Launch - name: Layout - name: Layouts - name: Lightning - name: Link - name: Lists - name: Loader - name: Login - name: Logs - name: Managed - name: Member - name: Members - name: Memberships - name: Messages - name: Method - name: Metrics - name: Models - name: Multiple - name: Named - name: Names - name: Navigation - name: News - name: Notation - name: Oauth - name: Objects - name: Order - name: Pages - name: Parallel - name: Password - name: Payments - name: Personalized - name: Photo - name: Platform - name: Post - name: Predict - name: Prices - name: Procedure - name: Process - name: Product - name: Profile - name: Promotion description: >- The [promotion APIs](https://developer.salesforce.com/docs/atlas.en-us.loyalty.meta/loyalty/loyalty_promotion_apis_reference.htm) allow you to set eligibility rules and limits for a promotion, choose a promotion template, and create a promotion. You can also get the details of a specific promotion, and view a list of eligible promotions for a customer’s cart. - name: Promotions - name: Prompts - name: Publish - name: Quantity - name: Queries - name: Quote - name: Read - name: Recently - name: Record - name: Records - name: Redeem - name: Refresh - name: Registration - name: Related - name: Relationships - name: Relay - name: Relevant - name: Requests - name: Resources - name: Response - name: Rest description: >- REST API provides a powerful, convenient, and simple Web services API for interacting with Lightning Platform. Its advantages include ease of integration and development, and it’s an excellent choice of technology for use with mobile applications and Web 2.0 projects. If you have many records to process, consider using Bulk API, which is based on REST principles and optimized for large sets of data. 📚 [REST API Developer Guide](https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/intro_what_is_rest_api.htm) - name: Result - name: Results - name: Retrieves - name: Revoke - name: Reward - name: Rows - name: Rules - name: Runs - name: Sale - name: Sandbox description: Manage sandboxes - name: Save - name: Schedules - name: Scheduling - name: Schema - name: Scope - name: Search - name: Selected - name: Self - name: Sets - name: Settings - name: Shares - name: Single - name: Slots - name: Soap - name: Spec - name: Standard - name: State - name: Status - name: Submit - name: Subscriptions - name: Suggested - name: Suggestions - name: Summaries - name: Supported - name: Sync - name: Table - name: Tables - name: Tabs - name: Templates - name: Tests - name: Text - name: Theme - name: Themes - name: Toggle - name: Tokens - name: Transaction - name: Trees - name: Type - name: Undelete - name: Update - name: Upload - name: Usage - name: Users - name: Values - name: Versions - name: View - name: Views