Skip to content

Instantly share code, notes, and snippets.

@lbrenman
Last active July 8, 2016 20:09
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lbrenman/0df7270473498e31dc9b817bb152d723 to your computer and use it in GitHub Desktop.
Save lbrenman/0df7270473498e31dc9b817bb152d723 to your computer and use it in GitHub Desktop.
Arrow API Swagger Interface
var Arrow = require('arrow');
var Model = Arrow.Model.reduce('appc.salesforce/Account', 'Account', {
fields: {
Name: {
type: String,
description: 'Account Name',
maxlength: 255,
required: true,
optional: false
},
Type: {
type: String,
description: 'Account Type',
maxlength: 40
},
Phone: {
type: String,
description: 'Account Phone',
maxlength: 40
}
},
actions: [
'create',
'read',
'update',
'delete',
'deleteAll'
]
});
module.exports = Model;
{
"swagger": "2.0",
"info": {
"version": "1.0.0",
"title": "lbdemoapi",
"contact": {
"name": "Leor Brenman"
},
"license": {
"name": ""
}
},
"host": "cb0ed9de31943f6afc79b235afebae6553aeaf56.cloudapp-enterprise.appcelerator.com",
"basePath": "/api",
"schemes": [
"http",
"https"
],
"consumes": [
"application/json",
"application/x-www-form-urlencoded",
"multipart/form-data"
],
"produces": [
"application/json",
"application/xml",
"text/yaml",
"text/csv",
"text/plain"
],
"definitions": {
"Account": {
"type": "object",
"properties": {
"Name": {
"type": "string"
},
"Type": {
"type": "string"
},
"Phone": {
"type": "string"
}
},
"required": [
"Name"
]
},
"ResponseModel": {
"type": "object",
"required": [
"code",
"success",
"request-id"
],
"properties": {
"code": {
"type": "integer",
"format": "int32"
},
"success": {
"type": "boolean",
"default": false
},
"request-id": {
"type": "string"
},
"message": {
"type": "string"
},
"url": {
"type": "string"
}
}
},
"ErrorModel": {
"type": "object",
"required": [
"message",
"code",
"success",
"request-id"
],
"properties": {
"code": {
"type": "integer",
"format": "int32"
},
"success": {
"type": "boolean",
"default": false
},
"request-id": {
"type": "string"
},
"message": {
"type": "string"
},
"url": {
"type": "string"
}
}
}
},
"paths": {
"/account": {
"post": {
"description": "Create a account",
"operationId": "createAccount",
"parameters": [
{
"name": "Create",
"in": "body",
"description": "Create body",
"schema": {
"type": "object",
"required": [
"Name"
],
"properties": {
"Name": {
"type": "string",
"description": "Account Name"
},
"Type": {
"type": "string",
"description": "Account Type"
},
"Phone": {
"type": "string",
"description": "Account Phone"
}
}
}
}
],
"responses": {
"201": {
"description": "The create succeeded.",
"headers": {
"Location": {
"description": "The URL to the newly created instance.",
"type": "string"
}
}
},
"401": {
"description": "This request requires user authentication, as configured by the server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"404": {
"description": "No results were found.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"500": {
"description": "Something went wrong during the request; check out the logs on your server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"504": {
"description": "The request took too long to process, and the server timed it out.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"default": {
"description": "Response from Server",
"schema": {
"$ref": "#/definitions/ResponseModel"
}
}
},
"tags": [
"Account"
]
},
"get": {
"description": "Find all accounts",
"operationId": "findAccount",
"responses": {
"200": {
"description": "The find all succeeded, and the results are available.",
"schema": {
"type": "array",
"items": {
"$ref": "#/definitions/Account"
}
}
},
"401": {
"description": "This request requires user authentication, as configured by the server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"404": {
"description": "No results were found.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"500": {
"description": "Something went wrong during the request; check out the logs on your server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"504": {
"description": "The request took too long to process, and the server timed it out.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"default": {
"description": "Response from Server",
"schema": {
"$ref": "#/definitions/ResponseModel"
}
}
},
"tags": [
"Account"
]
},
"delete": {
"description": "Deletes all accounts",
"operationId": "deleteAccount",
"responses": {
"204": {
"description": "The delete succeeded."
},
"401": {
"description": "This request requires user authentication, as configured by the server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"404": {
"description": "No results were found.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"500": {
"description": "Something went wrong during the request; check out the logs on your server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"504": {
"description": "The request took too long to process, and the server timed it out.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"default": {
"description": "Response from Server",
"schema": {
"$ref": "#/definitions/ResponseModel"
}
}
},
"tags": [
"Account"
]
}
},
"/account/count": {
"get": {
"description": "Count accounts",
"operationId": "findAccountCount",
"parameters": [
{
"name": "limit",
"in": "query",
"description": "The number of records to fetch. The value must be greater than 0, and no greater than 1000.",
"type": "number"
},
{
"name": "skip",
"in": "query",
"description": "The number of records to skip. The value must not be less than 0.",
"type": "number"
},
{
"name": "where",
"in": "query",
"description": "Constrains values for fields. The value should be encoded JSON.",
"type": "string"
},
{
"name": "order",
"in": "query",
"description": "A dictionary of one or more fields specifying sorting of results. In general, you can sort based on any predefined field that you can query using the where operator, as well as on custom fields. The value should be encoded JSON.",
"type": "string"
},
{
"name": "sel",
"in": "query",
"description": "Selects which fields to return from the query. Others are excluded. The value should be encoded JSON.",
"type": "string"
},
{
"name": "unsel",
"in": "query",
"description": "Selects which fields to not return from the query. Others are included. The value should be encoded JSON.",
"type": "string"
},
{
"name": "page",
"in": "query",
"description": "Request page number starting from 1.",
"type": "number"
},
{
"name": "per_page",
"in": "query",
"description": "Number of results per page.",
"type": "number"
}
],
"responses": {
"200": {
"description": "The count succeeded, and the results are available.",
"schema": {
"type": "integer"
}
},
"401": {
"description": "This request requires user authentication, as configured by the server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"404": {
"description": "No results were found.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"500": {
"description": "Something went wrong during the request; check out the logs on your server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"504": {
"description": "The request took too long to process, and the server timed it out.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"default": {
"description": "Response from Server",
"schema": {
"$ref": "#/definitions/ResponseModel"
}
}
},
"tags": [
"Account"
]
}
},
"/account/query": {
"get": {
"description": "Query accounts",
"operationId": "findAccountQuery",
"parameters": [
{
"name": "limit",
"in": "query",
"description": "The number of records to fetch. The value must be greater than 0, and no greater than 1000.",
"type": "number"
},
{
"name": "skip",
"in": "query",
"description": "The number of records to skip. The value must not be less than 0.",
"type": "number"
},
{
"name": "where",
"in": "query",
"description": "Constrains values for fields. The value should be encoded JSON.",
"type": "string"
},
{
"name": "order",
"in": "query",
"description": "A dictionary of one or more fields specifying sorting of results. In general, you can sort based on any predefined field that you can query using the where operator, as well as on custom fields. The value should be encoded JSON.",
"type": "string"
},
{
"name": "sel",
"in": "query",
"description": "Selects which fields to return from the query. Others are excluded. The value should be encoded JSON.",
"type": "string"
},
{
"name": "unsel",
"in": "query",
"description": "Selects which fields to not return from the query. Others are included. The value should be encoded JSON.",
"type": "string"
},
{
"name": "page",
"in": "query",
"description": "Request page number starting from 1.",
"type": "number"
},
{
"name": "per_page",
"in": "query",
"description": "Number of results per page.",
"type": "number"
}
],
"responses": {
"200": {
"description": "The query succeeded, and the results are available.",
"schema": {
"type": "array",
"items": {
"$ref": "#/definitions/Account"
}
}
},
"401": {
"description": "This request requires user authentication, as configured by the server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"404": {
"description": "No results were found.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"500": {
"description": "Something went wrong during the request; check out the logs on your server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"504": {
"description": "The request took too long to process, and the server timed it out.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"default": {
"description": "Response from Server",
"schema": {
"$ref": "#/definitions/ResponseModel"
}
}
},
"tags": [
"Account"
]
}
},
"/account/{id}": {
"get": {
"description": "Find one account by ID",
"operationId": "findAccountByID",
"parameters": [
{
"name": "id",
"in": "path",
"description": "The find succeeded, and the results are available.",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"description": "Account Response",
"schema": {
"$ref": "#/definitions/Account"
}
},
"401": {
"description": "This request requires user authentication, as configured by the server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"404": {
"description": "No results were found.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"500": {
"description": "Something went wrong during the request; check out the logs on your server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"504": {
"description": "The request took too long to process, and the server timed it out.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"default": {
"description": "Response from Server",
"schema": {
"$ref": "#/definitions/ResponseModel"
}
}
},
"tags": [
"Account"
]
},
"delete": {
"description": "Delete a specific account",
"operationId": "deleteAccountByID",
"parameters": [
{
"name": "id",
"in": "path",
"description": "The account ID",
"required": true,
"type": "string"
}
],
"responses": {
"204": {
"description": "The delete succeeded."
},
"401": {
"description": "This request requires user authentication, as configured by the server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"404": {
"description": "No results were found.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"500": {
"description": "Something went wrong during the request; check out the logs on your server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"504": {
"description": "The request took too long to process, and the server timed it out.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"default": {
"description": "Response from Server",
"schema": {
"$ref": "#/definitions/ResponseModel"
}
}
},
"tags": [
"Account"
]
},
"put": {
"description": "Update a specific account",
"operationId": "updateAccountByID",
"parameters": [
{
"name": "id",
"in": "path",
"description": "The account ID",
"required": true,
"type": "string"
},
{
"name": "Update",
"in": "body",
"description": "Update body",
"schema": {
"type": "object",
"properties": {
"Name": {
"type": "string",
"description": "Account Name"
},
"Type": {
"type": "string",
"description": "Account Type"
},
"Phone": {
"type": "string",
"description": "Account Phone"
}
}
}
}
],
"responses": {
"204": {
"description": "The update succeeded."
},
"401": {
"description": "This request requires user authentication, as configured by the server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"404": {
"description": "No results were found.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"500": {
"description": "Something went wrong during the request; check out the logs on your server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"504": {
"description": "The request took too long to process, and the server timed it out.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"default": {
"description": "Response from Server",
"schema": {
"$ref": "#/definitions/ResponseModel"
}
}
},
"tags": [
"Account"
]
}
},
"/account/distinct/{field}": {
"get": {
"description": "Find distinct accounts",
"operationId": "findAccountDistinctByFIELD",
"parameters": [
{
"name": "limit",
"in": "query",
"description": "The number of records to fetch. The value must be greater than 0, and no greater than 1000.",
"type": "number"
},
{
"name": "skip",
"in": "query",
"description": "The number of records to skip. The value must not be less than 0.",
"type": "number"
},
{
"name": "where",
"in": "query",
"description": "Constrains values for fields. The value should be encoded JSON.",
"type": "string"
},
{
"name": "order",
"in": "query",
"description": "A dictionary of one or more fields specifying sorting of results. In general, you can sort based on any predefined field that you can query using the where operator, as well as on custom fields. The value should be encoded JSON.",
"type": "string"
},
{
"name": "sel",
"in": "query",
"description": "Selects which fields to return from the query. Others are excluded. The value should be encoded JSON.",
"type": "string"
},
{
"name": "unsel",
"in": "query",
"description": "Selects which fields to not return from the query. Others are included. The value should be encoded JSON.",
"type": "string"
},
{
"name": "page",
"in": "query",
"description": "Request page number starting from 1.",
"type": "number"
},
{
"name": "per_page",
"in": "query",
"description": "Number of results per page.",
"type": "number"
},
{
"name": "field",
"in": "path",
"description": "The field name that must be distinct.",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"description": "Distinct fields response.",
"schema": {
"type": "array",
"items": {
"type": "string"
},
"uniqueItems": true
}
},
"401": {
"description": "This request requires user authentication, as configured by the server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"404": {
"description": "No results were found.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"500": {
"description": "Something went wrong during the request; check out the logs on your server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"504": {
"description": "The request took too long to process, and the server timed it out.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"default": {
"description": "Response from Server",
"schema": {
"$ref": "#/definitions/ResponseModel"
}
}
},
"tags": [
"Account"
]
}
}
}
}

Arrow API Swagger Interface

When you create Arrow Builder API's, the Arrow Admin Console displays your automatically generated API docs in the API Docs tab as described here. An example is shown below.

While the API Docs are appropriate for developers, what if you need to programmatically import the APIs into a tool such as the Axway API Manager. Arrow API's also contain a Swagger definition that can be used this purpose.

Arrow Project Swagger

Your Arrow project Swagger file that describes all of the APIs in the project can be accessed at the following URL:

https://<SUB_DOMAIN_TOKEN>.cloudapp-enterprise-.appcelerator.com/arrow/swagger.json

For example, for my published Arrow Project, the Swagger definition can be found here:

https://cb0ed9de31943f6afc79b235afebae6553aeaf56.cloudapp-enterprise.appcelerator.com/arrow/swagger.json

Inidividual APIs

Each API also has a separate swagger definition associated with the API itself. This is convenient if you only need access to one API and not the entire set of API's exposed by your Arrow Project.

For example, if you have a model and associated API's, account, as follows:

var Arrow = require('arrow');
var Model = Arrow.Model.reduce('appc.salesforce/Account', 'Account', {
	fields: {
		Name: {
			type: String,
			description: 'Account Name',
			maxlength: 255,
			required: true,
			optional: false
		},
		Type: {
			type: String,
			description: 'Account Type',
			maxlength: 40
		},
		Phone: {
			type: String,
			description: 'Account Phone',
			maxlength: 40
		}
	},
	actions: [
		'create',
		'read',
		'update',
		'delete',
		'deleteAll'
	]
});
module.exports = Model;

API docs for this API can be found at the following URL:

https://<SUB_DOMAIN_TOKEN>.cloudapp-enterprise-.appcelerator.com/arrow/docs.html?apis/account.html

The swagger definition for account can be found at the following URL:

https://<SUB_DOMAIN_TOKEN>.cloudapp-enterprise-.appcelerator.com/arrow/docs.json?apis/account.json

Swagger files for the Arrow project and individual API's can be found here

var Arrow = require('arrow');
var Model = Arrow.Model.reduce('appc.salesforce/Opportunity', 'Opportunity', {
fields: {
AccountId: {
type: String,
description: 'Account ID',
maxlength: 18
},
Name: {
type: String,
description: 'Name',
maxlength: 120,
required: true,
optional: false
},
Description: {
type: String,
description: 'Description',
maxlength: 32000
},
StageName: {
type: String,
description: 'Stage',
maxlength: 40,
required: true,
optional: false
},
Amount: {
type: Number,
description: 'Amount'
},
Probability: {
type: Number,
description: 'Probability (%)'
}
},
actions: [
'create',
'read',
'update',
'delete',
'deleteAll'
]
});
module.exports = Model;
{
"swagger": "2.0",
"info": {
"version": "1.0.0",
"title": "lbdemoapi",
"contact": {
"name": "Leor Brenman"
},
"license": {
"name": ""
}
},
"host": "cb0ed9de31943f6afc79b235afebae6553aeaf56.cloudapp-enterprise.appcelerator.com",
"basePath": "/api",
"schemes": [
"http",
"https"
],
"consumes": [
"application/json",
"application/x-www-form-urlencoded",
"multipart/form-data"
],
"produces": [
"application/json",
"application/xml",
"text/yaml",
"text/csv",
"text/plain"
],
"definitions": {
"Opportunity": {
"type": "object",
"properties": {
"AccountId": {
"type": "string"
},
"Name": {
"type": "string"
},
"Description": {
"type": "string"
},
"StageName": {
"type": "string"
},
"Amount": {
"type": "integer",
"format": "int32"
},
"Probability": {
"type": "integer",
"format": "int32"
}
},
"required": [
"Name",
"StageName"
]
},
"ResponseModel": {
"type": "object",
"required": [
"code",
"success",
"request-id"
],
"properties": {
"code": {
"type": "integer",
"format": "int32"
},
"success": {
"type": "boolean",
"default": false
},
"request-id": {
"type": "string"
},
"message": {
"type": "string"
},
"url": {
"type": "string"
}
}
},
"ErrorModel": {
"type": "object",
"required": [
"message",
"code",
"success",
"request-id"
],
"properties": {
"code": {
"type": "integer",
"format": "int32"
},
"success": {
"type": "boolean",
"default": false
},
"request-id": {
"type": "string"
},
"message": {
"type": "string"
},
"url": {
"type": "string"
}
}
}
},
"paths": {
"/opportunity": {
"post": {
"description": "Create a opportunity",
"operationId": "createOpportunity",
"parameters": [
{
"name": "Create",
"in": "body",
"description": "Create body",
"schema": {
"type": "object",
"required": [
"Name",
"StageName"
],
"properties": {
"AccountId": {
"type": "string",
"description": "Account ID"
},
"Name": {
"type": "string",
"description": "Name"
},
"Description": {
"type": "string",
"description": "Description"
},
"StageName": {
"type": "string",
"description": "Stage"
},
"Amount": {
"type": "number",
"description": "Amount"
},
"Probability": {
"type": "number",
"description": "Probability (%)"
}
}
}
}
],
"responses": {
"201": {
"description": "The create succeeded.",
"headers": {
"Location": {
"description": "The URL to the newly created instance.",
"type": "string"
}
}
},
"401": {
"description": "This request requires user authentication, as configured by the server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"404": {
"description": "No results were found.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"500": {
"description": "Something went wrong during the request; check out the logs on your server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"504": {
"description": "The request took too long to process, and the server timed it out.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"default": {
"description": "Response from Server",
"schema": {
"$ref": "#/definitions/ResponseModel"
}
}
},
"tags": [
"Opportunity"
]
},
"delete": {
"description": "Deletes all opportunities",
"operationId": "deleteOpportunity",
"responses": {
"204": {
"description": "The delete succeeded."
},
"401": {
"description": "This request requires user authentication, as configured by the server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"404": {
"description": "No results were found.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"500": {
"description": "Something went wrong during the request; check out the logs on your server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"504": {
"description": "The request took too long to process, and the server timed it out.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"default": {
"description": "Response from Server",
"schema": {
"$ref": "#/definitions/ResponseModel"
}
}
},
"tags": [
"Opportunity"
]
},
"get": {
"description": "Find all opportunities",
"operationId": "findOpportunity",
"responses": {
"200": {
"description": "The find all succeeded, and the results are available.",
"schema": {
"type": "array",
"items": {
"$ref": "#/definitions/Opportunity"
}
}
},
"401": {
"description": "This request requires user authentication, as configured by the server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"404": {
"description": "No results were found.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"500": {
"description": "Something went wrong during the request; check out the logs on your server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"504": {
"description": "The request took too long to process, and the server timed it out.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"default": {
"description": "Response from Server",
"schema": {
"$ref": "#/definitions/ResponseModel"
}
}
},
"tags": [
"Opportunity"
]
}
},
"/opportunity/query": {
"get": {
"description": "Query opportunities",
"operationId": "findOpportunityQuery",
"parameters": [
{
"name": "limit",
"in": "query",
"description": "The number of records to fetch. The value must be greater than 0, and no greater than 1000.",
"type": "number"
},
{
"name": "skip",
"in": "query",
"description": "The number of records to skip. The value must not be less than 0.",
"type": "number"
},
{
"name": "where",
"in": "query",
"description": "Constrains values for fields. The value should be encoded JSON.",
"type": "string"
},
{
"name": "order",
"in": "query",
"description": "A dictionary of one or more fields specifying sorting of results. In general, you can sort based on any predefined field that you can query using the where operator, as well as on custom fields. The value should be encoded JSON.",
"type": "string"
},
{
"name": "sel",
"in": "query",
"description": "Selects which fields to return from the query. Others are excluded. The value should be encoded JSON.",
"type": "string"
},
{
"name": "unsel",
"in": "query",
"description": "Selects which fields to not return from the query. Others are included. The value should be encoded JSON.",
"type": "string"
},
{
"name": "page",
"in": "query",
"description": "Request page number starting from 1.",
"type": "number"
},
{
"name": "per_page",
"in": "query",
"description": "Number of results per page.",
"type": "number"
}
],
"responses": {
"200": {
"description": "The query succeeded, and the results are available.",
"schema": {
"type": "array",
"items": {
"$ref": "#/definitions/Opportunity"
}
}
},
"401": {
"description": "This request requires user authentication, as configured by the server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"404": {
"description": "No results were found.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"500": {
"description": "Something went wrong during the request; check out the logs on your server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"504": {
"description": "The request took too long to process, and the server timed it out.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"default": {
"description": "Response from Server",
"schema": {
"$ref": "#/definitions/ResponseModel"
}
}
},
"tags": [
"Opportunity"
]
}
},
"/opportunity/count": {
"get": {
"description": "Count opportunities",
"operationId": "findOpportunityCount",
"parameters": [
{
"name": "limit",
"in": "query",
"description": "The number of records to fetch. The value must be greater than 0, and no greater than 1000.",
"type": "number"
},
{
"name": "skip",
"in": "query",
"description": "The number of records to skip. The value must not be less than 0.",
"type": "number"
},
{
"name": "where",
"in": "query",
"description": "Constrains values for fields. The value should be encoded JSON.",
"type": "string"
},
{
"name": "order",
"in": "query",
"description": "A dictionary of one or more fields specifying sorting of results. In general, you can sort based on any predefined field that you can query using the where operator, as well as on custom fields. The value should be encoded JSON.",
"type": "string"
},
{
"name": "sel",
"in": "query",
"description": "Selects which fields to return from the query. Others are excluded. The value should be encoded JSON.",
"type": "string"
},
{
"name": "unsel",
"in": "query",
"description": "Selects which fields to not return from the query. Others are included. The value should be encoded JSON.",
"type": "string"
},
{
"name": "page",
"in": "query",
"description": "Request page number starting from 1.",
"type": "number"
},
{
"name": "per_page",
"in": "query",
"description": "Number of results per page.",
"type": "number"
}
],
"responses": {
"200": {
"description": "The count succeeded, and the results are available.",
"schema": {
"type": "integer"
}
},
"401": {
"description": "This request requires user authentication, as configured by the server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"404": {
"description": "No results were found.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"500": {
"description": "Something went wrong during the request; check out the logs on your server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"504": {
"description": "The request took too long to process, and the server timed it out.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"default": {
"description": "Response from Server",
"schema": {
"$ref": "#/definitions/ResponseModel"
}
}
},
"tags": [
"Opportunity"
]
}
},
"/opportunity/{id}": {
"delete": {
"description": "Delete a specific opportunity",
"operationId": "deleteOpportunityByID",
"parameters": [
{
"name": "id",
"in": "path",
"description": "The opportunity ID",
"required": true,
"type": "string"
}
],
"responses": {
"204": {
"description": "The delete succeeded."
},
"401": {
"description": "This request requires user authentication, as configured by the server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"404": {
"description": "No results were found.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"500": {
"description": "Something went wrong during the request; check out the logs on your server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"504": {
"description": "The request took too long to process, and the server timed it out.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"default": {
"description": "Response from Server",
"schema": {
"$ref": "#/definitions/ResponseModel"
}
}
},
"tags": [
"Opportunity"
]
},
"get": {
"description": "Find one opportunity by ID",
"operationId": "findOpportunityByID",
"parameters": [
{
"name": "id",
"in": "path",
"description": "The find succeeded, and the results are available.",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"description": "Opportunity Response",
"schema": {
"$ref": "#/definitions/Opportunity"
}
},
"401": {
"description": "This request requires user authentication, as configured by the server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"404": {
"description": "No results were found.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"500": {
"description": "Something went wrong during the request; check out the logs on your server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"504": {
"description": "The request took too long to process, and the server timed it out.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"default": {
"description": "Response from Server",
"schema": {
"$ref": "#/definitions/ResponseModel"
}
}
},
"tags": [
"Opportunity"
]
},
"put": {
"description": "Update a specific opportunity",
"operationId": "updateOpportunityByID",
"parameters": [
{
"name": "id",
"in": "path",
"description": "The opportunity ID",
"required": true,
"type": "string"
},
{
"name": "Update",
"in": "body",
"description": "Update body",
"schema": {
"type": "object",
"properties": {
"AccountId": {
"type": "string",
"description": "Account ID"
},
"Name": {
"type": "string",
"description": "Name"
},
"Description": {
"type": "string",
"description": "Description"
},
"StageName": {
"type": "string",
"description": "Stage"
},
"Amount": {
"type": "number",
"description": "Amount"
},
"Probability": {
"type": "number",
"description": "Probability (%)"
}
}
}
}
],
"responses": {
"204": {
"description": "The update succeeded."
},
"401": {
"description": "This request requires user authentication, as configured by the server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"404": {
"description": "No results were found.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"500": {
"description": "Something went wrong during the request; check out the logs on your server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"504": {
"description": "The request took too long to process, and the server timed it out.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"default": {
"description": "Response from Server",
"schema": {
"$ref": "#/definitions/ResponseModel"
}
}
},
"tags": [
"Opportunity"
]
}
},
"/opportunity/distinct/{field}": {
"get": {
"description": "Find distinct opportunities",
"operationId": "findOpportunityDistinctByFIELD",
"parameters": [
{
"name": "limit",
"in": "query",
"description": "The number of records to fetch. The value must be greater than 0, and no greater than 1000.",
"type": "number"
},
{
"name": "skip",
"in": "query",
"description": "The number of records to skip. The value must not be less than 0.",
"type": "number"
},
{
"name": "where",
"in": "query",
"description": "Constrains values for fields. The value should be encoded JSON.",
"type": "string"
},
{
"name": "order",
"in": "query",
"description": "A dictionary of one or more fields specifying sorting of results. In general, you can sort based on any predefined field that you can query using the where operator, as well as on custom fields. The value should be encoded JSON.",
"type": "string"
},
{
"name": "sel",
"in": "query",
"description": "Selects which fields to return from the query. Others are excluded. The value should be encoded JSON.",
"type": "string"
},
{
"name": "unsel",
"in": "query",
"description": "Selects which fields to not return from the query. Others are included. The value should be encoded JSON.",
"type": "string"
},
{
"name": "page",
"in": "query",
"description": "Request page number starting from 1.",
"type": "number"
},
{
"name": "per_page",
"in": "query",
"description": "Number of results per page.",
"type": "number"
},
{
"name": "field",
"in": "path",
"description": "The field name that must be distinct.",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"description": "Distinct fields response.",
"schema": {
"type": "array",
"items": {
"type": "string"
},
"uniqueItems": true
}
},
"401": {
"description": "This request requires user authentication, as configured by the server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"404": {
"description": "No results were found.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"500": {
"description": "Something went wrong during the request; check out the logs on your server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"504": {
"description": "The request took too long to process, and the server timed it out.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"default": {
"description": "Response from Server",
"schema": {
"$ref": "#/definitions/ResponseModel"
}
}
},
"tags": [
"Opportunity"
]
}
}
}
}
{
"swagger": "2.0",
"info": {
"version": "1.0.0",
"title": "lbdemoapi",
"contact": {
"name": "Leor Brenman"
},
"license": {
"name": ""
}
},
"host": "cb0ed9de31943f6afc79b235afebae6553aeaf56.cloudapp-enterprise.appcelerator.com",
"basePath": "/api",
"schemes": [
"http",
"https"
],
"consumes": [
"application/json",
"application/x-www-form-urlencoded",
"multipart/form-data"
],
"produces": [
"application/json",
"application/xml",
"text/yaml",
"text/csv",
"text/plain"
],
"definitions": {
"appc.salesforce_AcceptedEventRelation": {
"type": "object",
"properties": {
"RelationId": {
"type": "string"
},
"EventId": {
"type": "string"
},
"RespondedDate": {
"type": "string",
"format": "date"
},
"Response": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"IsDeleted": {
"type": "boolean"
},
"Type": {
"type": "string"
}
},
"required": [
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"IsDeleted"
]
},
"appc.salesforce_Account": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"MasterRecordId": {
"type": "string"
},
"Name": {
"type": "string"
},
"Type": {
"type": "string"
},
"ParentId": {
"type": "string"
},
"BillingStreet": {
"type": "string"
},
"BillingCity": {
"type": "string"
},
"BillingState": {
"type": "string"
},
"BillingPostalCode": {
"type": "string"
},
"BillingCountry": {
"type": "string"
},
"BillingLatitude": {
"type": "integer",
"format": "int32"
},
"BillingLongitude": {
"type": "integer",
"format": "int32"
},
"BillingAddress": {
"type": "string"
},
"ShippingStreet": {
"type": "string"
},
"ShippingCity": {
"type": "string"
},
"ShippingState": {
"type": "string"
},
"ShippingPostalCode": {
"type": "string"
},
"ShippingCountry": {
"type": "string"
},
"ShippingLatitude": {
"type": "integer",
"format": "int32"
},
"ShippingLongitude": {
"type": "integer",
"format": "int32"
},
"ShippingAddress": {
"type": "string"
},
"Phone": {
"type": "string"
},
"Fax": {
"type": "string"
},
"AccountNumber": {
"type": "string"
},
"Website": {
"type": "string"
},
"PhotoUrl": {
"type": "string"
},
"Sic": {
"type": "string"
},
"Industry": {
"type": "string"
},
"AnnualRevenue": {
"type": "integer",
"format": "int32"
},
"NumberOfEmployees": {
"type": "integer",
"format": "int32"
},
"Ownership": {
"type": "string"
},
"TickerSymbol": {
"type": "string"
},
"Description": {
"type": "string"
},
"Rating": {
"type": "string"
},
"Site": {
"type": "string"
},
"OwnerId": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"LastActivityDate": {
"type": "string",
"format": "date"
},
"LastViewedDate": {
"type": "string",
"format": "date"
},
"LastReferencedDate": {
"type": "string",
"format": "date"
},
"Jigsaw": {
"type": "string"
},
"JigsawCompanyId": {
"type": "string"
},
"AccountSource": {
"type": "string"
},
"SicDesc": {
"type": "string"
},
"lb_sftest__CustomerPriority__c": {
"type": "string"
},
"lb_sftest__SLA__c": {
"type": "string"
},
"lb_sftest__Active__c": {
"type": "string"
},
"lb_sftest__NumberofLocations__c": {
"type": "integer",
"format": "int32"
},
"lb_sftest__UpsellOpportunity__c": {
"type": "string"
},
"lb_sftest__SLASerialNumber__c": {
"type": "string"
},
"lb_sftest__SLAExpirationDate__c": {
"type": "string",
"format": "date"
}
},
"required": [
"IsDeleted",
"Name",
"OwnerId",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp"
]
},
"appc.salesforce_AccountContactRole": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"AccountId": {
"type": "string"
},
"ContactId": {
"type": "string"
},
"Role": {
"type": "string"
},
"IsPrimary": {
"type": "boolean"
}
},
"required": [
"IsDeleted",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"AccountId",
"ContactId",
"IsPrimary"
]
},
"appc.salesforce_AccountFeed": {
"type": "object",
"properties": {
"ParentId": {
"type": "string"
},
"Type": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"IsDeleted": {
"type": "boolean"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"CommentCount": {
"type": "integer",
"format": "int32"
},
"LikeCount": {
"type": "integer",
"format": "int32"
},
"Title": {
"type": "string"
},
"Body": {
"type": "string"
},
"LinkUrl": {
"type": "string"
},
"RelatedRecordId": {
"type": "string"
},
"ContentData": {
"type": "integer",
"format": "int32"
},
"ContentFileName": {
"type": "string"
},
"ContentDescription": {
"type": "string"
},
"ContentType": {
"type": "string"
},
"ContentSize": {
"type": "integer",
"format": "int32"
},
"InsertedById": {
"type": "string"
}
},
"required": [
"ParentId",
"CreatedById",
"CreatedDate",
"IsDeleted",
"LastModifiedDate",
"SystemModstamp",
"CommentCount",
"LikeCount"
]
},
"appc.salesforce_AccountHistory": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"AccountId": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"Field": {
"type": "string"
},
"OldValue": {
"type": "string"
},
"NewValue": {
"type": "string"
}
},
"required": [
"IsDeleted",
"AccountId",
"CreatedById",
"CreatedDate",
"Field"
]
},
"appc.salesforce_AccountPartner": {
"type": "object",
"properties": {
"AccountFromId": {
"type": "string"
},
"AccountToId": {
"type": "string"
},
"OpportunityId": {
"type": "string"
},
"Role": {
"type": "string"
},
"IsPrimary": {
"type": "boolean"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"IsDeleted": {
"type": "boolean"
},
"ReversePartnerId": {
"type": "string"
}
},
"required": [
"AccountFromId",
"IsPrimary",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"IsDeleted"
]
},
"appc.salesforce_AccountShare": {
"type": "object",
"properties": {
"AccountId": {
"type": "string"
},
"UserOrGroupId": {
"type": "string"
},
"AccountAccessLevel": {
"type": "string"
},
"OpportunityAccessLevel": {
"type": "string"
},
"CaseAccessLevel": {
"type": "string"
},
"ContactAccessLevel": {
"type": "string"
},
"RowCause": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"IsDeleted": {
"type": "boolean"
}
},
"required": [
"AccountId",
"UserOrGroupId",
"AccountAccessLevel",
"OpportunityAccessLevel",
"CaseAccessLevel",
"LastModifiedDate",
"LastModifiedById",
"IsDeleted"
]
},
"appc.salesforce_ActionLinkGroupTemplate": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"DeveloperName": {
"type": "string"
},
"Language": {
"type": "string"
},
"MasterLabel": {
"type": "string"
},
"NamespacePrefix": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"ExecutionsAllowed": {
"type": "string"
},
"HoursUntilExpiration": {
"type": "integer",
"format": "int32"
},
"Category": {
"type": "string"
},
"IsPublished": {
"type": "boolean"
}
},
"required": [
"IsDeleted",
"DeveloperName",
"MasterLabel",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"ExecutionsAllowed",
"Category",
"IsPublished"
]
},
"appc.salesforce_ActionLinkTemplate": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"ActionLinkGroupTemplateId": {
"type": "string"
},
"LabelKey": {
"type": "string"
},
"Method": {
"type": "string"
},
"LinkType": {
"type": "string"
},
"Position": {
"type": "integer",
"format": "int32"
},
"IsConfirmationRequired": {
"type": "boolean"
},
"IsGroupDefault": {
"type": "boolean"
},
"UserVisibility": {
"type": "string"
},
"UserAlias": {
"type": "string"
},
"Label": {
"type": "string"
},
"ActionUrl": {
"type": "string"
},
"RequestBody": {
"type": "string"
},
"Headers": {
"type": "string"
}
},
"required": [
"IsDeleted",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"ActionLinkGroupTemplateId",
"LabelKey",
"Method",
"LinkType",
"Position",
"IsConfirmationRequired",
"IsGroupDefault",
"UserVisibility",
"ActionUrl"
]
},
"appc.salesforce_ActivityHistory": {
"type": "object",
"properties": {
"AccountId": {
"type": "string"
},
"WhoId": {
"type": "string"
},
"WhatId": {
"type": "string"
},
"Subject": {
"type": "string"
},
"IsTask": {
"type": "boolean"
},
"ActivityDate": {
"type": "string",
"format": "date"
},
"OwnerId": {
"type": "string"
},
"Status": {
"type": "string"
},
"Priority": {
"type": "string"
},
"IsHighPriority": {
"type": "boolean"
},
"ActivityType": {
"type": "string"
},
"IsClosed": {
"type": "boolean"
},
"IsAllDayEvent": {
"type": "boolean"
},
"IsVisibleInSelfService": {
"type": "boolean"
},
"DurationInMinutes": {
"type": "integer",
"format": "int32"
},
"Location": {
"type": "string"
},
"Description": {
"type": "string"
},
"IsDeleted": {
"type": "boolean"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"CallDurationInSeconds": {
"type": "integer",
"format": "int32"
},
"CallType": {
"type": "string"
},
"CallDisposition": {
"type": "string"
},
"CallObject": {
"type": "string"
},
"ReminderDateTime": {
"type": "string",
"format": "date"
},
"IsReminderSet": {
"type": "boolean"
},
"EndDateTime": {
"type": "string",
"format": "date"
},
"StartDateTime": {
"type": "string",
"format": "date"
}
},
"required": [
"IsTask",
"IsHighPriority",
"IsClosed",
"IsAllDayEvent",
"IsVisibleInSelfService",
"IsDeleted",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"IsReminderSet"
]
},
"appc.salesforce_AdditionalNumber": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"CallCenterId": {
"type": "string"
},
"Name": {
"type": "string"
},
"Description": {
"type": "string"
},
"Phone": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"IsDeleted",
"Name",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp"
]
},
"appc.salesforce_AggregateResult": {
"type": "object",
"properties": {}
},
"appc.salesforce_Announcement": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"FeedItemId": {
"type": "string"
},
"ExpirationDate": {
"type": "string",
"format": "date"
},
"ParentId": {
"type": "string"
}
},
"required": [
"IsDeleted",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"FeedItemId",
"ExpirationDate"
]
},
"appc.salesforce_ApexClass": {
"type": "object",
"properties": {
"NamespacePrefix": {
"type": "string"
},
"Name": {
"type": "string"
},
"ApiVersion": {
"type": "integer",
"format": "int32"
},
"Status": {
"type": "string"
},
"IsValid": {
"type": "boolean"
},
"BodyCrc": {
"type": "integer",
"format": "int32"
},
"Body": {
"type": "string"
},
"LengthWithoutComments": {
"type": "integer",
"format": "int32"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"Name",
"ApiVersion",
"Status",
"IsValid",
"LengthWithoutComments",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp"
]
},
"appc.salesforce_ApexComponent": {
"type": "object",
"properties": {
"NamespacePrefix": {
"type": "string"
},
"Name": {
"type": "string"
},
"ApiVersion": {
"type": "integer",
"format": "int32"
},
"MasterLabel": {
"type": "string"
},
"Description": {
"type": "string"
},
"ControllerType": {
"type": "string"
},
"ControllerKey": {
"type": "string"
},
"Markup": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"Name",
"ApiVersion",
"MasterLabel",
"ControllerType",
"Markup",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp"
]
},
"appc.salesforce_ApexLog": {
"type": "object",
"properties": {
"LogUserId": {
"type": "string"
},
"LogLength": {
"type": "integer",
"format": "int32"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"Request": {
"type": "string"
},
"Operation": {
"type": "string"
},
"Application": {
"type": "string"
},
"Status": {
"type": "string"
},
"DurationMilliseconds": {
"type": "integer",
"format": "int32"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"StartTime": {
"type": "string",
"format": "date"
},
"Location": {
"type": "string"
}
},
"required": [
"LogLength",
"LastModifiedDate",
"Request",
"Operation",
"Application",
"Status",
"DurationMilliseconds",
"SystemModstamp",
"StartTime"
]
},
"appc.salesforce_ApexPage": {
"type": "object",
"properties": {
"NamespacePrefix": {
"type": "string"
},
"Name": {
"type": "string"
},
"ApiVersion": {
"type": "integer",
"format": "int32"
},
"MasterLabel": {
"type": "string"
},
"Description": {
"type": "string"
},
"ControllerType": {
"type": "string"
},
"ControllerKey": {
"type": "string"
},
"IsAvailableInTouch": {
"type": "boolean"
},
"IsConfirmationTokenRequired": {
"type": "boolean"
},
"Markup": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"Name",
"ApiVersion",
"MasterLabel",
"ControllerType",
"IsAvailableInTouch",
"IsConfirmationTokenRequired",
"Markup",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp"
]
},
"appc.salesforce_ApexTestQueueItem": {
"type": "object",
"properties": {
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"ApexClassId": {
"type": "string"
},
"Status": {
"type": "string"
},
"ExtendedStatus": {
"type": "string"
},
"ParentJobId": {
"type": "string"
}
},
"required": [
"CreatedDate",
"CreatedById",
"SystemModstamp",
"ApexClassId",
"Status"
]
},
"appc.salesforce_ApexTestResult": {
"type": "object",
"properties": {
"SystemModstamp": {
"type": "string",
"format": "date"
},
"TestTimestamp": {
"type": "string",
"format": "date"
},
"Outcome": {
"type": "string"
},
"ApexClassId": {
"type": "string"
},
"MethodName": {
"type": "string"
},
"Message": {
"type": "string"
},
"StackTrace": {
"type": "string"
},
"AsyncApexJobId": {
"type": "string"
},
"QueueItemId": {
"type": "string"
},
"ApexLogId": {
"type": "string"
}
},
"required": [
"SystemModstamp",
"TestTimestamp",
"Outcome",
"ApexClassId"
]
},
"appc.salesforce_ApexTrigger": {
"type": "object",
"properties": {
"NamespacePrefix": {
"type": "string"
},
"Name": {
"type": "string"
},
"TableEnumOrId": {
"type": "string"
},
"UsageBeforeInsert": {
"type": "boolean"
},
"UsageAfterInsert": {
"type": "boolean"
},
"UsageBeforeUpdate": {
"type": "boolean"
},
"UsageAfterUpdate": {
"type": "boolean"
},
"UsageBeforeDelete": {
"type": "boolean"
},
"UsageAfterDelete": {
"type": "boolean"
},
"UsageIsBulk": {
"type": "boolean"
},
"UsageAfterUndelete": {
"type": "boolean"
},
"ApiVersion": {
"type": "integer",
"format": "int32"
},
"Status": {
"type": "string"
},
"IsValid": {
"type": "boolean"
},
"BodyCrc": {
"type": "integer",
"format": "int32"
},
"Body": {
"type": "string"
},
"LengthWithoutComments": {
"type": "integer",
"format": "int32"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"Name",
"UsageBeforeInsert",
"UsageAfterInsert",
"UsageBeforeUpdate",
"UsageAfterUpdate",
"UsageBeforeDelete",
"UsageAfterDelete",
"UsageIsBulk",
"UsageAfterUndelete",
"ApiVersion",
"Status",
"IsValid",
"LengthWithoutComments",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp"
]
},
"appc.salesforce_AppMenuItem": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"SortOrder": {
"type": "integer",
"format": "int32"
},
"Name": {
"type": "string"
},
"NamespacePrefix": {
"type": "string"
},
"Label": {
"type": "string"
},
"Description": {
"type": "string"
},
"StartUrl": {
"type": "string"
},
"MobileStartUrl": {
"type": "string"
},
"LogoUrl": {
"type": "string"
},
"IconUrl": {
"type": "string"
},
"InfoUrl": {
"type": "string"
},
"IsUsingAdminAuthorization": {
"type": "boolean"
},
"MobilePlatform": {
"type": "string"
},
"MobileMinOsVer": {
"type": "string"
},
"MobileDeviceType": {
"type": "string"
},
"IsRegisteredDeviceOnly": {
"type": "boolean"
},
"MobileAppVer": {
"type": "string"
},
"MobileAppInstalledDate": {
"type": "string",
"format": "date"
},
"MobileAppInstalledVersion": {
"type": "string"
},
"MobileAppBinaryId": {
"type": "string"
},
"MobileAppInstallUrl": {
"type": "string"
},
"CanvasEnabled": {
"type": "boolean"
},
"CanvasReferenceId": {
"type": "string"
},
"CanvasUrl": {
"type": "string"
},
"CanvasAccessMethod": {
"type": "string"
},
"CanvasSelectedLocations": {
"type": "string"
},
"CanvasOptions": {
"type": "string"
},
"Type": {
"type": "string"
},
"ApplicationId": {
"type": "string"
}
},
"required": [
"IsDeleted",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"SortOrder",
"IsUsingAdminAuthorization",
"IsRegisteredDeviceOnly",
"CanvasEnabled"
]
},
"appc.salesforce_Approval": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"ParentId": {
"type": "string"
},
"OwnerId": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"Status": {
"type": "string"
},
"RequestComment": {
"type": "string"
},
"ApproveComment": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"IsDeleted",
"ParentId",
"OwnerId",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"Status",
"SystemModstamp"
]
},
"appc.salesforce_Asset": {
"type": "object",
"properties": {
"ContactId": {
"type": "string"
},
"AccountId": {
"type": "string"
},
"Product2Id": {
"type": "string"
},
"IsCompetitorProduct": {
"type": "boolean"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"IsDeleted": {
"type": "boolean"
},
"Name": {
"type": "string"
},
"SerialNumber": {
"type": "string"
},
"InstallDate": {
"type": "string",
"format": "date"
},
"PurchaseDate": {
"type": "string",
"format": "date"
},
"UsageEndDate": {
"type": "string",
"format": "date"
},
"Status": {
"type": "string"
},
"Price": {
"type": "integer",
"format": "int32"
},
"Quantity": {
"type": "integer",
"format": "int32"
},
"Description": {
"type": "string"
},
"LastViewedDate": {
"type": "string",
"format": "date"
},
"LastReferencedDate": {
"type": "string",
"format": "date"
}
},
"required": [
"IsCompetitorProduct",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"IsDeleted",
"Name"
]
},
"appc.salesforce_AssetFeed": {
"type": "object",
"properties": {
"ParentId": {
"type": "string"
},
"Type": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"IsDeleted": {
"type": "boolean"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"CommentCount": {
"type": "integer",
"format": "int32"
},
"LikeCount": {
"type": "integer",
"format": "int32"
},
"Title": {
"type": "string"
},
"Body": {
"type": "string"
},
"LinkUrl": {
"type": "string"
},
"RelatedRecordId": {
"type": "string"
},
"ContentData": {
"type": "integer",
"format": "int32"
},
"ContentFileName": {
"type": "string"
},
"ContentDescription": {
"type": "string"
},
"ContentType": {
"type": "string"
},
"ContentSize": {
"type": "integer",
"format": "int32"
},
"InsertedById": {
"type": "string"
}
},
"required": [
"ParentId",
"CreatedById",
"CreatedDate",
"IsDeleted",
"LastModifiedDate",
"SystemModstamp",
"CommentCount",
"LikeCount"
]
},
"appc.salesforce_AssetHistory": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"AssetId": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"Field": {
"type": "string"
},
"OldValue": {
"type": "string"
},
"NewValue": {
"type": "string"
}
},
"required": [
"IsDeleted",
"AssetId",
"CreatedById",
"CreatedDate",
"Field"
]
},
"appc.salesforce_AssignmentRule": {
"type": "object",
"properties": {
"Name": {
"type": "string"
},
"SobjectType": {
"type": "string"
},
"Active": {
"type": "boolean"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"Active",
"CreatedById",
"CreatedDate",
"LastModifiedById",
"LastModifiedDate",
"SystemModstamp"
]
},
"appc.salesforce_AsyncApexJob": {
"type": "object",
"properties": {
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"JobType": {
"type": "string"
},
"ApexClassId": {
"type": "string"
},
"Status": {
"type": "string"
},
"JobItemsProcessed": {
"type": "integer",
"format": "int32"
},
"TotalJobItems": {
"type": "integer",
"format": "int32"
},
"NumberOfErrors": {
"type": "integer",
"format": "int32"
},
"CompletedDate": {
"type": "string",
"format": "date"
},
"MethodName": {
"type": "string"
},
"ExtendedStatus": {
"type": "string"
},
"ParentJobId": {
"type": "string"
},
"LastProcessed": {
"type": "string"
},
"LastProcessedOffset": {
"type": "integer",
"format": "int32"
}
},
"required": [
"CreatedDate",
"CreatedById",
"JobType",
"Status",
"JobItemsProcessed"
]
},
"appc.salesforce_AttachedContentDocument": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"LinkedEntityId": {
"type": "string"
},
"ContentDocumentId": {
"type": "string"
},
"Title": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"FileType": {
"type": "string"
},
"ContentSize": {
"type": "integer",
"format": "int32"
},
"FileExtension": {
"type": "string"
},
"ContentUrl": {
"type": "string"
},
"ExternalDataSourceName": {
"type": "string"
}
},
"required": [
"IsDeleted",
"LinkedEntityId",
"Title",
"CreatedById",
"CreatedDate",
"LastModifiedById",
"LastModifiedDate"
]
},
"appc.salesforce_Attachment": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"ParentId": {
"type": "string"
},
"Name": {
"type": "string"
},
"IsPrivate": {
"type": "boolean"
},
"ContentType": {
"type": "string"
},
"BodyLength": {
"type": "integer",
"format": "int32"
},
"Body": {
"type": "integer",
"format": "int32"
},
"OwnerId": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"Description": {
"type": "string"
}
},
"required": [
"IsDeleted",
"ParentId",
"Name",
"IsPrivate",
"Body",
"OwnerId",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp"
]
},
"appc.salesforce_AuraDefinition": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"AuraDefinitionBundleId": {
"type": "string"
},
"DefType": {
"type": "string"
},
"Format": {
"type": "string"
},
"Source": {
"type": "string"
}
},
"required": [
"IsDeleted",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"AuraDefinitionBundleId",
"DefType",
"Format",
"Source"
]
},
"appc.salesforce_AuraDefinitionBundle": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"DeveloperName": {
"type": "string"
},
"Language": {
"type": "string"
},
"MasterLabel": {
"type": "string"
},
"NamespacePrefix": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"ApiVersion": {
"type": "integer",
"format": "int32"
},
"Description": {
"type": "string"
}
},
"required": [
"IsDeleted",
"DeveloperName",
"MasterLabel",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"ApiVersion",
"Description"
]
},
"appc.salesforce_AuthConfig": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"DeveloperName": {
"type": "string"
},
"Language": {
"type": "string"
},
"MasterLabel": {
"type": "string"
},
"NamespacePrefix": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"Url": {
"type": "string"
},
"AuthOptionsUsernamePassword": {
"type": "boolean"
},
"AuthOptionsSaml": {
"type": "boolean"
},
"AuthOptionsAuthProvider": {
"type": "boolean"
},
"IsActive": {
"type": "boolean"
},
"Type": {
"type": "string"
}
},
"required": [
"IsDeleted",
"DeveloperName",
"Language",
"MasterLabel",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"Url",
"AuthOptionsUsernamePassword",
"AuthOptionsSaml",
"AuthOptionsAuthProvider",
"IsActive",
"Type"
]
},
"appc.salesforce_AuthConfigProviders": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"AuthConfigId": {
"type": "string"
},
"AuthProviderId": {
"type": "string"
}
},
"required": [
"IsDeleted",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"AuthConfigId",
"AuthProviderId"
]
},
"appc.salesforce_AuthProvider": {
"type": "object",
"properties": {
"CreatedDate": {
"type": "string",
"format": "date"
},
"ProviderType": {
"type": "string"
},
"FriendlyName": {
"type": "string"
},
"DeveloperName": {
"type": "string"
},
"RegistrationHandlerId": {
"type": "string"
},
"ExecutionUserId": {
"type": "string"
},
"ConsumerKey": {
"type": "string"
},
"ConsumerSecret": {
"type": "string"
},
"ErrorUrl": {
"type": "string"
},
"AuthorizeUrl": {
"type": "string"
},
"TokenUrl": {
"type": "string"
},
"UserInfoUrl": {
"type": "string"
},
"DefaultScopes": {
"type": "string"
},
"IdTokenIssuer": {
"type": "string"
},
"OptionsSendAccessTokenInHeader": {
"type": "boolean"
},
"OptionsSendClientCredentialsInHeader": {
"type": "boolean"
},
"OptionsIncludeOrgIdInId": {
"type": "boolean"
},
"IconUrl": {
"type": "string"
},
"LogoutUrl": {
"type": "string"
}
},
"required": [
"CreatedDate",
"ProviderType",
"FriendlyName",
"DeveloperName",
"OptionsSendAccessTokenInHeader",
"OptionsSendClientCredentialsInHeader",
"OptionsIncludeOrgIdInId"
]
},
"appc.salesforce_AuthSession": {
"type": "object",
"properties": {
"UsersId": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"NumSecondsValid": {
"type": "integer",
"format": "int32"
},
"UserType": {
"type": "string"
},
"SourceIp": {
"type": "string"
},
"LoginType": {
"type": "string"
},
"SessionType": {
"type": "string"
},
"SessionSecurityLevel": {
"type": "string"
},
"LogoutUrl": {
"type": "string"
},
"ParentId": {
"type": "string"
},
"LoginHistoryId": {
"type": "string"
},
"LoginGeoId": {
"type": "string"
}
},
"required": [
"CreatedDate",
"LastModifiedDate",
"NumSecondsValid",
"UserType",
"SourceIp"
]
},
"appc.salesforce_BackgroundOperation": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"Name": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"SubmittedAt": {
"type": "string",
"format": "date"
},
"Status": {
"type": "string"
},
"ExecutionGroup": {
"type": "string"
},
"SequenceGroup": {
"type": "string"
},
"SequenceNumber": {
"type": "integer",
"format": "int32"
},
"GroupLeaderId": {
"type": "string"
},
"StartedAt": {
"type": "string",
"format": "date"
},
"FinishedAt": {
"type": "string",
"format": "date"
},
"WorkerUri": {
"type": "string"
},
"Timeout": {
"type": "integer",
"format": "int32"
},
"ExpiresAt": {
"type": "string",
"format": "date"
},
"NumFollowers": {
"type": "integer",
"format": "int32"
},
"ProcessAfter": {
"type": "string",
"format": "date"
},
"ParentKey": {
"type": "string"
},
"RetryLimit": {
"type": "integer",
"format": "int32"
},
"RetryCount": {
"type": "integer",
"format": "int32"
},
"RetryBackoff": {
"type": "integer",
"format": "int32"
},
"Error": {
"type": "string"
}
},
"required": [
"IsDeleted",
"Name",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp"
]
},
"appc.salesforce_BrandTemplate": {
"type": "object",
"properties": {
"Name": {
"type": "string"
},
"DeveloperName": {
"type": "string"
},
"IsActive": {
"type": "boolean"
},
"Description": {
"type": "string"
},
"Value": {
"type": "string"
},
"NamespacePrefix": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"Name",
"DeveloperName",
"IsActive",
"Value",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp"
]
},
"appc.salesforce_BusinessHours": {
"type": "object",
"properties": {
"Name": {
"type": "string"
},
"IsActive": {
"type": "boolean"
},
"IsDefault": {
"type": "boolean"
},
"SundayStartTime": {
"type": "string",
"format": "date"
},
"SundayEndTime": {
"type": "string",
"format": "date"
},
"MondayStartTime": {
"type": "string",
"format": "date"
},
"MondayEndTime": {
"type": "string",
"format": "date"
},
"TuesdayStartTime": {
"type": "string",
"format": "date"
},
"TuesdayEndTime": {
"type": "string",
"format": "date"
},
"WednesdayStartTime": {
"type": "string",
"format": "date"
},
"WednesdayEndTime": {
"type": "string",
"format": "date"
},
"ThursdayStartTime": {
"type": "string",
"format": "date"
},
"ThursdayEndTime": {
"type": "string",
"format": "date"
},
"FridayStartTime": {
"type": "string",
"format": "date"
},
"FridayEndTime": {
"type": "string",
"format": "date"
},
"SaturdayStartTime": {
"type": "string",
"format": "date"
},
"SaturdayEndTime": {
"type": "string",
"format": "date"
},
"TimeZoneSidKey": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
}
},
"required": [
"Name",
"IsActive",
"IsDefault",
"TimeZoneSidKey",
"SystemModstamp",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById"
]
},
"appc.salesforce_BusinessProcess": {
"type": "object",
"properties": {
"Name": {
"type": "string"
},
"NamespacePrefix": {
"type": "string"
},
"Description": {
"type": "string"
},
"TableEnumOrId": {
"type": "string"
},
"IsActive": {
"type": "boolean"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"Name",
"TableEnumOrId",
"IsActive",
"CreatedById",
"CreatedDate",
"LastModifiedById",
"LastModifiedDate",
"SystemModstamp"
]
},
"appc.salesforce_CallCenter": {
"type": "object",
"properties": {
"Name": {
"type": "string"
},
"InternalName": {
"type": "string"
},
"Version": {
"type": "integer",
"format": "int32"
},
"AdapterUrl": {
"type": "string"
},
"CustomSettings": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
}
},
"required": [
"Name",
"InternalName",
"SystemModstamp",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById"
]
},
"appc.salesforce_Campaign": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"Name": {
"type": "string"
},
"ParentId": {
"type": "string"
},
"Type": {
"type": "string"
},
"Status": {
"type": "string"
},
"StartDate": {
"type": "string",
"format": "date"
},
"EndDate": {
"type": "string",
"format": "date"
},
"ExpectedRevenue": {
"type": "integer",
"format": "int32"
},
"BudgetedCost": {
"type": "integer",
"format": "int32"
},
"ActualCost": {
"type": "integer",
"format": "int32"
},
"ExpectedResponse": {
"type": "integer",
"format": "int32"
},
"NumberSent": {
"type": "integer",
"format": "int32"
},
"IsActive": {
"type": "boolean"
},
"Description": {
"type": "string"
},
"NumberOfLeads": {
"type": "integer",
"format": "int32"
},
"NumberOfConvertedLeads": {
"type": "integer",
"format": "int32"
},
"NumberOfContacts": {
"type": "integer",
"format": "int32"
},
"NumberOfResponses": {
"type": "integer",
"format": "int32"
},
"NumberOfOpportunities": {
"type": "integer",
"format": "int32"
},
"NumberOfWonOpportunities": {
"type": "integer",
"format": "int32"
},
"AmountAllOpportunities": {
"type": "integer",
"format": "int32"
},
"AmountWonOpportunities": {
"type": "integer",
"format": "int32"
},
"OwnerId": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"LastActivityDate": {
"type": "string",
"format": "date"
},
"LastViewedDate": {
"type": "string",
"format": "date"
},
"LastReferencedDate": {
"type": "string",
"format": "date"
},
"CampaignMemberRecordTypeId": {
"type": "string"
}
},
"required": [
"IsDeleted",
"Name",
"IsActive",
"NumberOfLeads",
"NumberOfConvertedLeads",
"NumberOfContacts",
"NumberOfResponses",
"NumberOfOpportunities",
"NumberOfWonOpportunities",
"AmountAllOpportunities",
"AmountWonOpportunities",
"OwnerId",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp"
]
},
"appc.salesforce_CampaignFeed": {
"type": "object",
"properties": {
"ParentId": {
"type": "string"
},
"Type": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"IsDeleted": {
"type": "boolean"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"CommentCount": {
"type": "integer",
"format": "int32"
},
"LikeCount": {
"type": "integer",
"format": "int32"
},
"Title": {
"type": "string"
},
"Body": {
"type": "string"
},
"LinkUrl": {
"type": "string"
},
"RelatedRecordId": {
"type": "string"
},
"ContentData": {
"type": "integer",
"format": "int32"
},
"ContentFileName": {
"type": "string"
},
"ContentDescription": {
"type": "string"
},
"ContentType": {
"type": "string"
},
"ContentSize": {
"type": "integer",
"format": "int32"
},
"InsertedById": {
"type": "string"
}
},
"required": [
"ParentId",
"CreatedById",
"CreatedDate",
"IsDeleted",
"LastModifiedDate",
"SystemModstamp",
"CommentCount",
"LikeCount"
]
},
"appc.salesforce_CampaignMember": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"CampaignId": {
"type": "string"
},
"LeadId": {
"type": "string"
},
"ContactId": {
"type": "string"
},
"Status": {
"type": "string"
},
"HasResponded": {
"type": "boolean"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"FirstRespondedDate": {
"type": "string",
"format": "date"
},
"Name": {
"type": "string"
}
},
"required": [
"IsDeleted",
"CampaignId",
"HasResponded",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp"
]
},
"appc.salesforce_CampaignMemberStatus": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"CampaignId": {
"type": "string"
},
"Label": {
"type": "string"
},
"SortOrder": {
"type": "integer",
"format": "int32"
},
"IsDefault": {
"type": "boolean"
},
"HasResponded": {
"type": "boolean"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"IsDeleted",
"CampaignId",
"Label",
"SortOrder",
"IsDefault",
"HasResponded",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp"
]
},
"appc.salesforce_CampaignShare": {
"type": "object",
"properties": {
"CampaignId": {
"type": "string"
},
"UserOrGroupId": {
"type": "string"
},
"CampaignAccessLevel": {
"type": "string"
},
"RowCause": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"IsDeleted": {
"type": "boolean"
}
},
"required": [
"CampaignId",
"UserOrGroupId",
"CampaignAccessLevel",
"LastModifiedDate",
"LastModifiedById",
"IsDeleted"
]
},
"appc.salesforce_Case": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"CaseNumber": {
"type": "string"
},
"ContactId": {
"type": "string"
},
"AccountId": {
"type": "string"
},
"AssetId": {
"type": "string"
},
"ParentId": {
"type": "string"
},
"SuppliedName": {
"type": "string"
},
"SuppliedEmail": {
"type": "string"
},
"SuppliedPhone": {
"type": "string"
},
"SuppliedCompany": {
"type": "string"
},
"Type": {
"type": "string"
},
"Status": {
"type": "string"
},
"Reason": {
"type": "string"
},
"Origin": {
"type": "string"
},
"Subject": {
"type": "string"
},
"Priority": {
"type": "string"
},
"Description": {
"type": "string"
},
"IsClosed": {
"type": "boolean"
},
"ClosedDate": {
"type": "string",
"format": "date"
},
"IsEscalated": {
"type": "boolean"
},
"OwnerId": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"LastViewedDate": {
"type": "string",
"format": "date"
},
"LastReferencedDate": {
"type": "string",
"format": "date"
},
"lb_sftest__EngineeringReqNumber__c": {
"type": "string"
},
"lb_sftest__SLAViolation__c": {
"type": "string"
},
"lb_sftest__Product__c": {
"type": "string"
},
"lb_sftest__PotentialLiability__c": {
"type": "string"
}
},
"required": [
"IsDeleted",
"CaseNumber",
"IsClosed",
"IsEscalated",
"OwnerId",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp"
]
},
"appc.salesforce_CaseComment": {
"type": "object",
"properties": {
"ParentId": {
"type": "string"
},
"IsPublished": {
"type": "boolean"
},
"CommentBody": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"IsDeleted": {
"type": "boolean"
}
},
"required": [
"ParentId",
"IsPublished",
"CreatedById",
"CreatedDate",
"SystemModstamp",
"LastModifiedDate",
"LastModifiedById",
"IsDeleted"
]
},
"appc.salesforce_CaseContactRole": {
"type": "object",
"properties": {
"CasesId": {
"type": "string"
},
"ContactId": {
"type": "string"
},
"Role": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"IsDeleted": {
"type": "boolean"
}
},
"required": [
"CasesId",
"ContactId",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"IsDeleted"
]
},
"appc.salesforce_CaseFeed": {
"type": "object",
"properties": {
"ParentId": {
"type": "string"
},
"Type": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"IsDeleted": {
"type": "boolean"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"CommentCount": {
"type": "integer",
"format": "int32"
},
"LikeCount": {
"type": "integer",
"format": "int32"
},
"Title": {
"type": "string"
},
"Body": {
"type": "string"
},
"LinkUrl": {
"type": "string"
},
"RelatedRecordId": {
"type": "string"
},
"ContentData": {
"type": "integer",
"format": "int32"
},
"ContentFileName": {
"type": "string"
},
"ContentDescription": {
"type": "string"
},
"ContentType": {
"type": "string"
},
"ContentSize": {
"type": "integer",
"format": "int32"
},
"InsertedById": {
"type": "string"
}
},
"required": [
"ParentId",
"CreatedById",
"CreatedDate",
"IsDeleted",
"LastModifiedDate",
"SystemModstamp",
"CommentCount",
"LikeCount"
]
},
"appc.salesforce_CaseHistory": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"CaseId": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"Field": {
"type": "string"
},
"OldValue": {
"type": "string"
},
"NewValue": {
"type": "string"
}
},
"required": [
"IsDeleted",
"CaseId",
"CreatedById",
"CreatedDate",
"Field"
]
},
"appc.salesforce_CaseShare": {
"type": "object",
"properties": {
"CaseId": {
"type": "string"
},
"UserOrGroupId": {
"type": "string"
},
"CaseAccessLevel": {
"type": "string"
},
"RowCause": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"IsDeleted": {
"type": "boolean"
}
},
"required": [
"CaseId",
"UserOrGroupId",
"CaseAccessLevel",
"LastModifiedDate",
"LastModifiedById",
"IsDeleted"
]
},
"appc.salesforce_CaseSolution": {
"type": "object",
"properties": {
"CaseId": {
"type": "string"
},
"SolutionId": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"IsDeleted": {
"type": "boolean"
}
},
"required": [
"CaseId",
"SolutionId",
"CreatedById",
"CreatedDate",
"SystemModstamp",
"IsDeleted"
]
},
"appc.salesforce_CaseStatus": {
"type": "object",
"properties": {
"MasterLabel": {
"type": "string"
},
"SortOrder": {
"type": "integer",
"format": "int32"
},
"IsDefault": {
"type": "boolean"
},
"IsClosed": {
"type": "boolean"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"IsDefault",
"IsClosed",
"CreatedById",
"CreatedDate",
"LastModifiedById",
"LastModifiedDate",
"SystemModstamp"
]
},
"appc.salesforce_CaseTeamMember": {
"type": "object",
"properties": {
"ParentId": {
"type": "string"
},
"MemberId": {
"type": "string"
},
"TeamTemplateMemberId": {
"type": "string"
},
"TeamRoleId": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"ParentId",
"MemberId",
"TeamRoleId",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp"
]
},
"appc.salesforce_CaseTeamRole": {
"type": "object",
"properties": {
"Name": {
"type": "string"
},
"AccessLevel": {
"type": "string"
},
"PreferencesVisibleInCSP": {
"type": "boolean"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"Name",
"AccessLevel",
"PreferencesVisibleInCSP",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp"
]
},
"appc.salesforce_CaseTeamTemplate": {
"type": "object",
"properties": {
"Name": {
"type": "string"
},
"Description": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"Name",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp"
]
},
"appc.salesforce_CaseTeamTemplateMember": {
"type": "object",
"properties": {
"TeamTemplateId": {
"type": "string"
},
"MemberId": {
"type": "string"
},
"TeamRoleId": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"TeamTemplateId",
"MemberId",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp"
]
},
"appc.salesforce_CaseTeamTemplateRecord": {
"type": "object",
"properties": {
"ParentId": {
"type": "string"
},
"TeamTemplateId": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"ParentId",
"TeamTemplateId",
"CreatedDate",
"CreatedById",
"SystemModstamp"
]
},
"appc.salesforce_CategoryData": {
"type": "object",
"properties": {
"CategoryNodeId": {
"type": "string"
},
"RelatedSobjectId": {
"type": "string"
},
"IsDeleted": {
"type": "boolean"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"CategoryNodeId",
"RelatedSobjectId",
"IsDeleted",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp"
]
},
"appc.salesforce_CategoryNode": {
"type": "object",
"properties": {
"ParentId": {
"type": "string"
},
"MasterLabel": {
"type": "string"
},
"SortOrder": {
"type": "integer",
"format": "int32"
},
"SortStyle": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"MasterLabel",
"SortStyle",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp"
]
},
"appc.salesforce_ChatterActivity": {
"type": "object",
"properties": {
"ParentId": {
"type": "string"
},
"PostCount": {
"type": "integer",
"format": "int32"
},
"CommentCount": {
"type": "integer",
"format": "int32"
},
"CommentReceivedCount": {
"type": "integer",
"format": "int32"
},
"LikeReceivedCount": {
"type": "integer",
"format": "int32"
},
"InfluenceRawRank": {
"type": "integer",
"format": "int32"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"PostCount",
"CommentCount",
"CommentReceivedCount",
"LikeReceivedCount",
"InfluenceRawRank",
"SystemModstamp"
]
},
"appc.salesforce_ClientBrowser": {
"type": "object",
"properties": {
"UsersId": {
"type": "string"
},
"FullUserAgent": {
"type": "string"
},
"ProxyInfo": {
"type": "string"
},
"LastUpdate": {
"type": "string",
"format": "date"
},
"CreatedDate": {
"type": "string",
"format": "date"
}
},
"required": [
"UsersId",
"CreatedDate"
]
},
"appc.salesforce_CollaborationGroup": {
"type": "object",
"properties": {
"Name": {
"type": "string"
},
"MemberCount": {
"type": "integer",
"format": "int32"
},
"OwnerId": {
"type": "string"
},
"CollaborationType": {
"type": "string"
},
"Description": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"FullPhotoUrl": {
"type": "string"
},
"SmallPhotoUrl": {
"type": "string"
},
"LastFeedModifiedDate": {
"type": "string",
"format": "date"
},
"InformationTitle": {
"type": "string"
},
"InformationBody": {
"type": "string"
},
"HasPrivateFieldsAccess": {
"type": "boolean"
},
"CanHaveGuests": {
"type": "boolean"
},
"LastViewedDate": {
"type": "string",
"format": "date"
},
"LastReferencedDate": {
"type": "string",
"format": "date"
},
"IsArchived": {
"type": "boolean"
},
"IsAutoArchiveDisabled": {
"type": "boolean"
},
"AnnouncementId": {
"type": "string"
}
},
"required": [
"Name",
"OwnerId",
"CollaborationType",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"LastFeedModifiedDate",
"HasPrivateFieldsAccess",
"CanHaveGuests",
"IsArchived",
"IsAutoArchiveDisabled"
]
},
"appc.salesforce_CollaborationGroupFeed": {
"type": "object",
"properties": {
"ParentId": {
"type": "string"
},
"Type": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"IsDeleted": {
"type": "boolean"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"CommentCount": {
"type": "integer",
"format": "int32"
},
"LikeCount": {
"type": "integer",
"format": "int32"
},
"Title": {
"type": "string"
},
"Body": {
"type": "string"
},
"LinkUrl": {
"type": "string"
},
"RelatedRecordId": {
"type": "string"
},
"ContentData": {
"type": "integer",
"format": "int32"
},
"ContentFileName": {
"type": "string"
},
"ContentDescription": {
"type": "string"
},
"ContentType": {
"type": "string"
},
"ContentSize": {
"type": "integer",
"format": "int32"
},
"InsertedById": {
"type": "string"
}
},
"required": [
"ParentId",
"CreatedById",
"CreatedDate",
"IsDeleted",
"LastModifiedDate",
"SystemModstamp",
"CommentCount",
"LikeCount"
]
},
"appc.salesforce_CollaborationGroupMember": {
"type": "object",
"properties": {
"CollaborationGroupId": {
"type": "string"
},
"MemberId": {
"type": "string"
},
"CollaborationRole": {
"type": "string"
},
"NotificationFrequency": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"LastFeedAccessDate": {
"type": "string",
"format": "date"
}
},
"required": [
"CollaborationGroupId",
"MemberId",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp"
]
},
"appc.salesforce_CollaborationGroupMemberRequest": {
"type": "object",
"properties": {
"CollaborationGroupId": {
"type": "string"
},
"RequesterId": {
"type": "string"
},
"ResponseMessage": {
"type": "string"
},
"Status": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"CollaborationGroupId",
"RequesterId",
"Status",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp"
]
},
"appc.salesforce_CollaborationGroupRecord": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"CollaborationGroupId": {
"type": "string"
},
"RecordId": {
"type": "string"
}
},
"required": [
"IsDeleted",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"CollaborationGroupId",
"RecordId"
]
},
"appc.salesforce_CollaborationInvitation": {
"type": "object",
"properties": {
"ParentId": {
"type": "string"
},
"SharedEntityId": {
"type": "string"
},
"InviterId": {
"type": "string"
},
"InvitedUserEmail": {
"type": "string"
},
"InvitedUserEmailNormalized": {
"type": "string"
},
"Status": {
"type": "string"
},
"OptionalMessage": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"SharedEntityId",
"InviterId",
"InvitedUserEmail",
"InvitedUserEmailNormalized",
"Status",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp"
]
},
"appc.salesforce_CombinedAttachment": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"ParentId": {
"type": "string"
},
"RecordType": {
"type": "string"
},
"Title": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"FileType": {
"type": "string"
},
"ContentSize": {
"type": "integer",
"format": "int32"
},
"FileExtension": {
"type": "string"
},
"ContentUrl": {
"type": "string"
},
"ExternalDataSourceName": {
"type": "string"
}
},
"required": [
"IsDeleted",
"ParentId",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById"
]
},
"appc.salesforce_Community": {
"type": "object",
"properties": {
"SystemModstamp": {
"type": "string",
"format": "date"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"Name": {
"type": "string"
},
"Description": {
"type": "string"
},
"IsActive": {
"type": "boolean"
}
},
"required": [
"SystemModstamp",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"Name",
"IsActive"
]
},
"appc.salesforce_ConnectedApplication": {
"type": "object",
"properties": {
"Name": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"OptionsAllowAdminApprovedUsersOnly": {
"type": "boolean"
},
"OptionsRefreshTokenValidityMetric": {
"type": "boolean"
},
"OptionsHasSessionLevelPolicy": {
"type": "boolean"
},
"MobileSessionTimeout": {
"type": "string"
},
"PinLength": {
"type": "string"
},
"StartUrl": {
"type": "string"
},
"MobileStartUrl": {
"type": "string"
},
"RefreshTokenValidityPeriod": {
"type": "integer",
"format": "int32"
}
},
"required": [
"Name",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"OptionsAllowAdminApprovedUsersOnly",
"OptionsRefreshTokenValidityMetric",
"OptionsHasSessionLevelPolicy"
]
},
"appc.salesforce_Contact": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"MasterRecordId": {
"type": "string"
},
"AccountId": {
"type": "string"
},
"LastName": {
"type": "string"
},
"FirstName": {
"type": "string"
},
"Salutation": {
"type": "string"
},
"Name": {
"type": "string"
},
"OtherStreet": {
"type": "string"
},
"OtherCity": {
"type": "string"
},
"OtherState": {
"type": "string"
},
"OtherPostalCode": {
"type": "string"
},
"OtherCountry": {
"type": "string"
},
"OtherLatitude": {
"type": "integer",
"format": "int32"
},
"OtherLongitude": {
"type": "integer",
"format": "int32"
},
"OtherAddress": {
"type": "string"
},
"MailingStreet": {
"type": "string"
},
"MailingCity": {
"type": "string"
},
"MailingState": {
"type": "string"
},
"MailingPostalCode": {
"type": "string"
},
"MailingCountry": {
"type": "string"
},
"MailingLatitude": {
"type": "integer",
"format": "int32"
},
"MailingLongitude": {
"type": "integer",
"format": "int32"
},
"MailingAddress": {
"type": "string"
},
"Phone": {
"type": "string"
},
"Fax": {
"type": "string"
},
"MobilePhone": {
"type": "string"
},
"HomePhone": {
"type": "string"
},
"OtherPhone": {
"type": "string"
},
"AssistantPhone": {
"type": "string"
},
"ReportsToId": {
"type": "string"
},
"Email": {
"type": "string"
},
"Title": {
"type": "string"
},
"Department": {
"type": "string"
},
"AssistantName": {
"type": "string"
},
"LeadSource": {
"type": "string"
},
"Birthdate": {
"type": "string",
"format": "date"
},
"Description": {
"type": "string"
},
"OwnerId": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"LastActivityDate": {
"type": "string",
"format": "date"
},
"LastCURequestDate": {
"type": "string",
"format": "date"
},
"LastCUUpdateDate": {
"type": "string",
"format": "date"
},
"LastViewedDate": {
"type": "string",
"format": "date"
},
"LastReferencedDate": {
"type": "string",
"format": "date"
},
"EmailBouncedReason": {
"type": "string"
},
"EmailBouncedDate": {
"type": "string",
"format": "date"
},
"IsEmailBounced": {
"type": "boolean"
},
"PhotoUrl": {
"type": "string"
},
"Jigsaw": {
"type": "string"
},
"JigsawContactId": {
"type": "string"
},
"lb_sftest__Level__c": {
"type": "string"
},
"lb_sftest__Languages__c": {
"type": "string"
}
},
"required": [
"IsDeleted",
"LastName",
"Name",
"OwnerId",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"IsEmailBounced"
]
},
"appc.salesforce_ContactFeed": {
"type": "object",
"properties": {
"ParentId": {
"type": "string"
},
"Type": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"IsDeleted": {
"type": "boolean"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"CommentCount": {
"type": "integer",
"format": "int32"
},
"LikeCount": {
"type": "integer",
"format": "int32"
},
"Title": {
"type": "string"
},
"Body": {
"type": "string"
},
"LinkUrl": {
"type": "string"
},
"RelatedRecordId": {
"type": "string"
},
"ContentData": {
"type": "integer",
"format": "int32"
},
"ContentFileName": {
"type": "string"
},
"ContentDescription": {
"type": "string"
},
"ContentType": {
"type": "string"
},
"ContentSize": {
"type": "integer",
"format": "int32"
},
"InsertedById": {
"type": "string"
}
},
"required": [
"ParentId",
"CreatedById",
"CreatedDate",
"IsDeleted",
"LastModifiedDate",
"SystemModstamp",
"CommentCount",
"LikeCount"
]
},
"appc.salesforce_ContactHistory": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"ContactId": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"Field": {
"type": "string"
},
"OldValue": {
"type": "string"
},
"NewValue": {
"type": "string"
}
},
"required": [
"IsDeleted",
"ContactId",
"CreatedById",
"CreatedDate",
"Field"
]
},
"appc.salesforce_ContactShare": {
"type": "object",
"properties": {
"ContactId": {
"type": "string"
},
"UserOrGroupId": {
"type": "string"
},
"ContactAccessLevel": {
"type": "string"
},
"RowCause": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"IsDeleted": {
"type": "boolean"
}
},
"required": [
"ContactId",
"UserOrGroupId",
"ContactAccessLevel",
"LastModifiedDate",
"LastModifiedById",
"IsDeleted"
]
},
"appc.salesforce_ContentDistribution": {
"type": "object",
"properties": {
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"OwnerId": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"Name": {
"type": "string"
},
"IsDeleted": {
"type": "boolean"
},
"ContentVersionId": {
"type": "string"
},
"ContentDocumentId": {
"type": "string"
},
"RelatedRecordId": {
"type": "string"
},
"PreferencesAllowPDFDownload": {
"type": "boolean"
},
"PreferencesAllowOriginalDownload": {
"type": "boolean"
},
"PreferencesPasswordRequired": {
"type": "boolean"
},
"PreferencesNotifyOnVisit": {
"type": "boolean"
},
"PreferencesLinkLatestVersion": {
"type": "boolean"
},
"PreferencesAllowViewInBrowser": {
"type": "boolean"
},
"PreferencesExpires": {
"type": "boolean"
},
"PreferencesNotifyRndtnComplete": {
"type": "boolean"
},
"ExpiryDate": {
"type": "string",
"format": "date"
},
"Password": {
"type": "string"
},
"ViewCount": {
"type": "integer",
"format": "int32"
},
"FirstViewDate": {
"type": "string",
"format": "date"
},
"LastViewDate": {
"type": "string",
"format": "date"
},
"DistributionPublicUrl": {
"type": "string"
}
},
"required": [
"CreatedDate",
"CreatedById",
"OwnerId",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"Name",
"IsDeleted",
"ContentVersionId",
"PreferencesAllowPDFDownload",
"PreferencesAllowOriginalDownload",
"PreferencesPasswordRequired",
"PreferencesNotifyOnVisit",
"PreferencesLinkLatestVersion",
"PreferencesAllowViewInBrowser",
"PreferencesExpires",
"PreferencesNotifyRndtnComplete"
]
},
"appc.salesforce_ContentDistributionView": {
"type": "object",
"properties": {
"DistributionId": {
"type": "string"
},
"ParentViewId": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"IsDeleted": {
"type": "boolean"
},
"IsInternal": {
"type": "boolean"
},
"IsDownload": {
"type": "boolean"
}
},
"required": [
"DistributionId",
"CreatedDate",
"CreatedById",
"SystemModstamp",
"IsDeleted",
"IsInternal",
"IsDownload"
]
},
"appc.salesforce_ContentDocument": {
"type": "object",
"properties": {
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"IsArchived": {
"type": "boolean"
},
"ArchivedById": {
"type": "string"
},
"ArchivedDate": {
"type": "string",
"format": "date"
},
"IsDeleted": {
"type": "boolean"
},
"OwnerId": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"Title": {
"type": "string"
},
"PublishStatus": {
"type": "string"
},
"LatestPublishedVersionId": {
"type": "string"
},
"ParentId": {
"type": "string"
},
"LastViewedDate": {
"type": "string",
"format": "date"
},
"LastReferencedDate": {
"type": "string",
"format": "date"
},
"Description": {
"type": "string"
},
"ContentSize": {
"type": "integer",
"format": "int32"
},
"FileType": {
"type": "string"
},
"FileExtension": {
"type": "string"
},
"ContentModifiedDate": {
"type": "string",
"format": "date"
}
},
"required": [
"CreatedById",
"CreatedDate",
"LastModifiedById",
"LastModifiedDate",
"IsArchived",
"IsDeleted",
"OwnerId",
"SystemModstamp",
"Title",
"PublishStatus"
]
},
"appc.salesforce_ContentDocumentFeed": {
"type": "object",
"properties": {
"ParentId": {
"type": "string"
},
"Type": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"IsDeleted": {
"type": "boolean"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"CommentCount": {
"type": "integer",
"format": "int32"
},
"LikeCount": {
"type": "integer",
"format": "int32"
},
"Title": {
"type": "string"
},
"Body": {
"type": "string"
},
"LinkUrl": {
"type": "string"
},
"RelatedRecordId": {
"type": "string"
},
"ContentData": {
"type": "integer",
"format": "int32"
},
"ContentFileName": {
"type": "string"
},
"ContentDescription": {
"type": "string"
},
"ContentType": {
"type": "string"
},
"ContentSize": {
"type": "integer",
"format": "int32"
},
"InsertedById": {
"type": "string"
}
},
"required": [
"ParentId",
"CreatedById",
"CreatedDate",
"IsDeleted",
"LastModifiedDate",
"SystemModstamp",
"CommentCount",
"LikeCount"
]
},
"appc.salesforce_ContentDocumentHistory": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"ContentDocumentId": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"Field": {
"type": "string"
},
"OldValue": {
"type": "string"
},
"NewValue": {
"type": "string"
}
},
"required": [
"IsDeleted",
"ContentDocumentId",
"CreatedById",
"CreatedDate",
"Field"
]
},
"appc.salesforce_ContentDocumentLink": {
"type": "object",
"properties": {
"LinkedEntityId": {
"type": "string"
},
"ContentDocumentId": {
"type": "string"
},
"IsDeleted": {
"type": "boolean"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"ShareType": {
"type": "string"
},
"Visibility": {
"type": "string"
}
},
"required": [
"LinkedEntityId",
"ContentDocumentId",
"IsDeleted",
"SystemModstamp"
]
},
"appc.salesforce_ContentFolder": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"Name": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"ParentContentFolderId": {
"type": "string"
}
},
"required": [
"IsDeleted",
"Name",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp"
]
},
"appc.salesforce_ContentFolderLink": {
"type": "object",
"properties": {
"ParentEntityId": {
"type": "string"
},
"ContentFolderId": {
"type": "string"
},
"IsDeleted": {
"type": "boolean"
}
},
"required": [
"ParentEntityId",
"ContentFolderId",
"IsDeleted"
]
},
"appc.salesforce_ContentFolderMember": {
"type": "object",
"properties": {
"ParentContentFolderId": {
"type": "string"
},
"ChildRecordId": {
"type": "string"
},
"IsDeleted": {
"type": "boolean"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
}
},
"required": [
"ParentContentFolderId",
"ChildRecordId",
"IsDeleted",
"SystemModstamp",
"CreatedById",
"CreatedDate",
"LastModifiedById",
"LastModifiedDate"
]
},
"appc.salesforce_ContentVersion": {
"type": "object",
"properties": {
"ContentDocumentId": {
"type": "string"
},
"IsLatest": {
"type": "boolean"
},
"ContentUrl": {
"type": "string"
},
"VersionNumber": {
"type": "string"
},
"Title": {
"type": "string"
},
"Description": {
"type": "string"
},
"ReasonForChange": {
"type": "string"
},
"PathOnClient": {
"type": "string"
},
"RatingCount": {
"type": "integer",
"format": "int32"
},
"IsDeleted": {
"type": "boolean"
},
"ContentModifiedDate": {
"type": "string",
"format": "date"
},
"ContentModifiedById": {
"type": "string"
},
"PositiveRatingCount": {
"type": "integer",
"format": "int32"
},
"NegativeRatingCount": {
"type": "integer",
"format": "int32"
},
"FeaturedContentBoost": {
"type": "integer",
"format": "int32"
},
"FeaturedContentDate": {
"type": "string",
"format": "date"
},
"OwnerId": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"TagCsv": {
"type": "string"
},
"FileType": {
"type": "string"
},
"PublishStatus": {
"type": "string"
},
"VersionData": {
"type": "integer",
"format": "int32"
},
"ContentSize": {
"type": "integer",
"format": "int32"
},
"FileExtension": {
"type": "string"
},
"FirstPublishLocationId": {
"type": "string"
},
"Origin": {
"type": "string"
},
"ContentLocation": {
"type": "string"
},
"ExternalDocumentInfo1": {
"type": "string"
},
"ExternalDocumentInfo2": {
"type": "string"
},
"ExternalDataSourceId": {
"type": "string"
},
"Checksum": {
"type": "string"
},
"IsMajorVersion": {
"type": "boolean"
}
},
"required": [
"ContentDocumentId",
"IsLatest",
"Title",
"IsDeleted",
"OwnerId",
"CreatedById",
"CreatedDate",
"LastModifiedById",
"LastModifiedDate",
"SystemModstamp",
"FileType",
"PublishStatus",
"Origin",
"ContentLocation",
"IsMajorVersion"
]
},
"appc.salesforce_ContentVersionHistory": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"ContentVersionId": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"Field": {
"type": "string"
},
"OldValue": {
"type": "string"
},
"NewValue": {
"type": "string"
}
},
"required": [
"IsDeleted",
"ContentVersionId",
"CreatedById",
"CreatedDate",
"Field"
]
},
"appc.salesforce_ContentWorkspace": {
"type": "object",
"properties": {
"Name": {
"type": "string"
},
"Description": {
"type": "string"
},
"TagModel": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"DefaultRecordTypeId": {
"type": "string"
},
"IsRestrictContentTypes": {
"type": "boolean"
},
"IsRestrictLinkedContentTypes": {
"type": "boolean"
}
},
"required": [
"Name",
"CreatedById",
"CreatedDate",
"LastModifiedById",
"SystemModstamp",
"LastModifiedDate",
"IsRestrictContentTypes",
"IsRestrictLinkedContentTypes"
]
},
"appc.salesforce_ContentWorkspaceDoc": {
"type": "object",
"properties": {
"ContentWorkspaceId": {
"type": "string"
},
"ContentDocumentId": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"IsOwner": {
"type": "boolean"
},
"IsDeleted": {
"type": "boolean"
}
},
"required": [
"ContentWorkspaceId",
"ContentDocumentId",
"CreatedDate",
"SystemModstamp",
"IsOwner",
"IsDeleted"
]
},
"appc.salesforce_Contract": {
"type": "object",
"properties": {
"AccountId": {
"type": "string"
},
"OwnerExpirationNotice": {
"type": "string"
},
"StartDate": {
"type": "string",
"format": "date"
},
"EndDate": {
"type": "string",
"format": "date"
},
"BillingStreet": {
"type": "string"
},
"BillingCity": {
"type": "string"
},
"BillingState": {
"type": "string"
},
"BillingPostalCode": {
"type": "string"
},
"BillingCountry": {
"type": "string"
},
"BillingLatitude": {
"type": "integer",
"format": "int32"
},
"BillingLongitude": {
"type": "integer",
"format": "int32"
},
"BillingAddress": {
"type": "string"
},
"ContractTerm": {
"type": "integer",
"format": "int32"
},
"OwnerId": {
"type": "string"
},
"Status": {
"type": "string"
},
"CompanySignedId": {
"type": "string"
},
"CompanySignedDate": {
"type": "string",
"format": "date"
},
"CustomerSignedId": {
"type": "string"
},
"CustomerSignedTitle": {
"type": "string"
},
"CustomerSignedDate": {
"type": "string",
"format": "date"
},
"SpecialTerms": {
"type": "string"
},
"ActivatedById": {
"type": "string"
},
"ActivatedDate": {
"type": "string",
"format": "date"
},
"StatusCode": {
"type": "string"
},
"Description": {
"type": "string"
},
"IsDeleted": {
"type": "boolean"
},
"ContractNumber": {
"type": "string"
},
"LastApprovedDate": {
"type": "string",
"format": "date"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"LastActivityDate": {
"type": "string",
"format": "date"
},
"LastViewedDate": {
"type": "string",
"format": "date"
},
"LastReferencedDate": {
"type": "string",
"format": "date"
}
},
"required": [
"AccountId",
"OwnerId",
"Status",
"StatusCode",
"IsDeleted",
"ContractNumber",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp"
]
},
"appc.salesforce_ContractContactRole": {
"type": "object",
"properties": {
"ContractId": {
"type": "string"
},
"ContactId": {
"type": "string"
},
"Role": {
"type": "string"
},
"IsPrimary": {
"type": "boolean"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"IsDeleted": {
"type": "boolean"
}
},
"required": [
"ContractId",
"ContactId",
"IsPrimary",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"IsDeleted"
]
},
"appc.salesforce_ContractFeed": {
"type": "object",
"properties": {
"ParentId": {
"type": "string"
},
"Type": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"IsDeleted": {
"type": "boolean"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"CommentCount": {
"type": "integer",
"format": "int32"
},
"LikeCount": {
"type": "integer",
"format": "int32"
},
"Title": {
"type": "string"
},
"Body": {
"type": "string"
},
"LinkUrl": {
"type": "string"
},
"RelatedRecordId": {
"type": "string"
},
"ContentData": {
"type": "integer",
"format": "int32"
},
"ContentFileName": {
"type": "string"
},
"ContentDescription": {
"type": "string"
},
"ContentType": {
"type": "string"
},
"ContentSize": {
"type": "integer",
"format": "int32"
},
"InsertedById": {
"type": "string"
}
},
"required": [
"ParentId",
"CreatedById",
"CreatedDate",
"IsDeleted",
"LastModifiedDate",
"SystemModstamp",
"CommentCount",
"LikeCount"
]
},
"appc.salesforce_ContractHistory": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"ContractId": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"Field": {
"type": "string"
},
"OldValue": {
"type": "string"
},
"NewValue": {
"type": "string"
}
},
"required": [
"IsDeleted",
"ContractId",
"CreatedById",
"CreatedDate",
"Field"
]
},
"appc.salesforce_ContractStatus": {
"type": "object",
"properties": {
"MasterLabel": {
"type": "string"
},
"SortOrder": {
"type": "integer",
"format": "int32"
},
"IsDefault": {
"type": "boolean"
},
"StatusCode": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"IsDefault",
"CreatedById",
"CreatedDate",
"LastModifiedById",
"LastModifiedDate",
"SystemModstamp"
]
},
"appc.salesforce_CorsWhitelistEntry": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"DeveloperName": {
"type": "string"
},
"Language": {
"type": "string"
},
"MasterLabel": {
"type": "string"
},
"NamespacePrefix": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"UrlPattern": {
"type": "string"
}
},
"required": [
"IsDeleted",
"DeveloperName",
"MasterLabel",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"UrlPattern"
]
},
"appc.salesforce_CronJobDetail": {
"type": "object",
"properties": {
"Name": {
"type": "string"
},
"JobType": {
"type": "string"
}
},
"required": [
"Name"
]
},
"appc.salesforce_CronTrigger": {
"type": "object",
"properties": {
"CronJobDetailId": {
"type": "string"
},
"NextFireTime": {
"type": "string",
"format": "date"
},
"PreviousFireTime": {
"type": "string",
"format": "date"
},
"State": {
"type": "string"
},
"StartTime": {
"type": "string",
"format": "date"
},
"EndTime": {
"type": "string",
"format": "date"
},
"CronExpression": {
"type": "string"
},
"TimeZoneSidKey": {
"type": "string"
},
"OwnerId": {
"type": "string"
},
"LastModifiedById": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"TimesTriggered": {
"type": "integer",
"format": "int32"
}
},
"required": [
"LastModifiedById",
"CreatedById",
"CreatedDate"
]
},
"appc.salesforce_CustomBrand": {
"type": "object",
"properties": {
"ParentId": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
}
},
"required": [
"ParentId",
"CreatedById",
"CreatedDate",
"LastModifiedDate",
"LastModifiedById"
]
},
"appc.salesforce_CustomBrandAsset": {
"type": "object",
"properties": {
"CustomBrandId": {
"type": "string"
},
"AssetCategory": {
"type": "string"
},
"TextAsset": {
"type": "string"
},
"ForeignKeyAssetId": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
}
},
"required": [
"CustomBrandId",
"AssetCategory",
"CreatedById",
"CreatedDate",
"LastModifiedDate",
"LastModifiedById"
]
},
"appc.salesforce_CustomObjectUserLicenseMetrics": {
"type": "object",
"properties": {
"MetricsDate": {
"type": "string",
"format": "date"
},
"UserLicenseId": {
"type": "string"
},
"CustomObjectId": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"CustomObjectType": {
"type": "string"
},
"CustomObjectName": {
"type": "string"
},
"ObjectCount": {
"type": "integer",
"format": "int32"
}
},
"required": [
"MetricsDate",
"UserLicenseId",
"SystemModstamp"
]
},
"appc.salesforce_CustomPermission": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"DeveloperName": {
"type": "string"
},
"Language": {
"type": "string"
},
"MasterLabel": {
"type": "string"
},
"NamespacePrefix": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"Description": {
"type": "string"
}
},
"required": [
"IsDeleted",
"DeveloperName",
"Language",
"MasterLabel",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp"
]
},
"appc.salesforce_CustomPermissionDependency": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"CustomPermissionId": {
"type": "string"
},
"RequiredCustomPermissionId": {
"type": "string"
}
},
"required": [
"IsDeleted",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"CustomPermissionId",
"RequiredCustomPermissionId"
]
},
"appc.salesforce_Dashboard": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"FolderId": {
"type": "string"
},
"Title": {
"type": "string"
},
"DeveloperName": {
"type": "string"
},
"NamespacePrefix": {
"type": "string"
},
"Description": {
"type": "string"
},
"LeftSize": {
"type": "string"
},
"MiddleSize": {
"type": "string"
},
"RightSize": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"RunningUserId": {
"type": "string"
},
"TitleColor": {
"type": "integer",
"format": "int32"
},
"TitleSize": {
"type": "integer",
"format": "int32"
},
"TextColor": {
"type": "integer",
"format": "int32"
},
"BackgroundStart": {
"type": "integer",
"format": "int32"
},
"BackgroundEnd": {
"type": "integer",
"format": "int32"
},
"BackgroundDirection": {
"type": "string"
},
"Type": {
"type": "string"
},
"LastViewedDate": {
"type": "string",
"format": "date"
},
"LastReferencedDate": {
"type": "string",
"format": "date"
},
"DashboardResultRefreshedDate": {
"type": "string"
},
"DashboardResultRunningUser": {
"type": "string"
}
},
"required": [
"IsDeleted",
"FolderId",
"Title",
"DeveloperName",
"LeftSize",
"RightSize",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"RunningUserId",
"TitleColor",
"TitleSize",
"TextColor",
"BackgroundStart",
"BackgroundEnd",
"BackgroundDirection",
"Type"
]
},
"appc.salesforce_DashboardComponent": {
"type": "object",
"properties": {
"Name": {
"type": "string"
},
"DashboardId": {
"type": "string"
}
},
"required": [
"DashboardId"
]
},
"appc.salesforce_DashboardComponentFeed": {
"type": "object",
"properties": {
"ParentId": {
"type": "string"
},
"Type": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"IsDeleted": {
"type": "boolean"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"CommentCount": {
"type": "integer",
"format": "int32"
},
"LikeCount": {
"type": "integer",
"format": "int32"
},
"Title": {
"type": "string"
},
"Body": {
"type": "string"
},
"LinkUrl": {
"type": "string"
},
"RelatedRecordId": {
"type": "string"
},
"ContentData": {
"type": "integer",
"format": "int32"
},
"ContentFileName": {
"type": "string"
},
"ContentDescription": {
"type": "string"
},
"ContentType": {
"type": "string"
},
"ContentSize": {
"type": "integer",
"format": "int32"
},
"InsertedById": {
"type": "string"
}
},
"required": [
"ParentId",
"CreatedById",
"CreatedDate",
"IsDeleted",
"LastModifiedDate",
"SystemModstamp",
"CommentCount",
"LikeCount"
]
},
"appc.salesforce_DashboardFeed": {
"type": "object",
"properties": {
"ParentId": {
"type": "string"
},
"Type": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"IsDeleted": {
"type": "boolean"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"CommentCount": {
"type": "integer",
"format": "int32"
},
"LikeCount": {
"type": "integer",
"format": "int32"
},
"Title": {
"type": "string"
},
"Body": {
"type": "string"
},
"LinkUrl": {
"type": "string"
},
"RelatedRecordId": {
"type": "string"
},
"ContentData": {
"type": "integer",
"format": "int32"
},
"ContentFileName": {
"type": "string"
},
"ContentDescription": {
"type": "string"
},
"ContentType": {
"type": "string"
},
"ContentSize": {
"type": "integer",
"format": "int32"
},
"InsertedById": {
"type": "string"
}
},
"required": [
"ParentId",
"CreatedById",
"CreatedDate",
"IsDeleted",
"LastModifiedDate",
"SystemModstamp",
"CommentCount",
"LikeCount"
]
},
"appc.salesforce_DataType": {
"type": "object",
"properties": {
"DurableId": {
"type": "string"
},
"DeveloperName": {
"type": "string"
},
"IsComplex": {
"type": "boolean"
},
"ContextServiceDataTypeId": {
"type": "string"
},
"ContextWsdlDataTypeId": {
"type": "string"
},
"Name": {
"type": "string"
},
"ServiceId": {
"type": "string"
},
"Namespace": {
"type": "string"
},
"NamespacePrefix": {
"type": "string"
}
},
"required": [
"IsComplex"
]
},
"appc.salesforce_DeclinedEventRelation": {
"type": "object",
"properties": {
"RelationId": {
"type": "string"
},
"EventId": {
"type": "string"
},
"RespondedDate": {
"type": "string",
"format": "date"
},
"Response": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"IsDeleted": {
"type": "boolean"
},
"Type": {
"type": "string"
}
},
"required": [
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"IsDeleted"
]
},
"appc.salesforce_Document": {
"type": "object",
"properties": {
"FolderId": {
"type": "string"
},
"IsDeleted": {
"type": "boolean"
},
"Name": {
"type": "string"
},
"DeveloperName": {
"type": "string"
},
"NamespacePrefix": {
"type": "string"
},
"ContentType": {
"type": "string"
},
"Type": {
"type": "string"
},
"IsPublic": {
"type": "boolean"
},
"BodyLength": {
"type": "integer",
"format": "int32"
},
"Body": {
"type": "integer",
"format": "int32"
},
"Url": {
"type": "string"
},
"Description": {
"type": "string"
},
"Keywords": {
"type": "string"
},
"IsInternalUseOnly": {
"type": "boolean"
},
"AuthorId": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"IsBodySearchable": {
"type": "boolean"
},
"LastViewedDate": {
"type": "string",
"format": "date"
},
"LastReferencedDate": {
"type": "string",
"format": "date"
}
},
"required": [
"FolderId",
"IsDeleted",
"Name",
"DeveloperName",
"IsPublic",
"BodyLength",
"IsInternalUseOnly",
"AuthorId",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"IsBodySearchable"
]
},
"appc.salesforce_DocumentAttachmentMap": {
"type": "object",
"properties": {
"ParentId": {
"type": "string"
},
"DocumentId": {
"type": "string"
},
"DocumentSequence": {
"type": "integer",
"format": "int32"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
}
},
"required": [
"ParentId",
"DocumentId",
"DocumentSequence",
"CreatedDate",
"CreatedById"
]
},
"appc.salesforce_Domain": {
"type": "object",
"properties": {
"DomainType": {
"type": "string"
},
"Domain": {
"type": "string"
},
"OptionsExternalHttps": {
"type": "boolean"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"DomainType",
"Domain",
"OptionsExternalHttps",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp"
]
},
"appc.salesforce_DomainSite": {
"type": "object",
"properties": {
"DomainId": {
"type": "string"
},
"SiteId": {
"type": "string"
},
"PathPrefix": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"DomainId",
"SiteId",
"PathPrefix",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp"
]
},
"appc.salesforce_DuplicateRecordItem": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"Name": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"DuplicateRecordSetId": {
"type": "string"
},
"RecordId": {
"type": "string"
}
},
"required": [
"IsDeleted",
"Name",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"DuplicateRecordSetId",
"RecordId"
]
},
"appc.salesforce_DuplicateRecordSet": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"Name": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"LastViewedDate": {
"type": "string",
"format": "date"
},
"LastReferencedDate": {
"type": "string",
"format": "date"
},
"DuplicateRuleId": {
"type": "string"
},
"RecordCount": {
"type": "integer",
"format": "int32"
}
},
"required": [
"IsDeleted",
"Name",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"DuplicateRuleId"
]
},
"appc.salesforce_DuplicateRule": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"SobjectType": {
"type": "string"
},
"DeveloperName": {
"type": "string"
},
"Language": {
"type": "string"
},
"MasterLabel": {
"type": "string"
},
"NamespacePrefix": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"IsDeleted",
"SobjectType",
"DeveloperName",
"Language",
"MasterLabel",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp"
]
},
"appc.salesforce_EmailDomainKey": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"Selector": {
"type": "string"
},
"Domain": {
"type": "string"
},
"DomainMatch": {
"type": "string"
},
"IsActive": {
"type": "boolean"
},
"PublicKey": {
"type": "string"
},
"PrivateKey": {
"type": "string"
}
},
"required": [
"IsDeleted",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"Selector",
"Domain",
"DomainMatch",
"IsActive"
]
},
"appc.salesforce_EmailMessage": {
"type": "object",
"properties": {
"ParentId": {
"type": "string"
},
"ActivityId": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"TextBody": {
"type": "string"
},
"HtmlBody": {
"type": "string"
},
"Headers": {
"type": "string"
},
"Subject": {
"type": "string"
},
"FromName": {
"type": "string"
},
"FromAddress": {
"type": "string"
},
"ToAddress": {
"type": "string"
},
"CcAddress": {
"type": "string"
},
"BccAddress": {
"type": "string"
},
"Incoming": {
"type": "boolean"
},
"HasAttachment": {
"type": "boolean"
},
"Status": {
"type": "string"
},
"MessageDate": {
"type": "string",
"format": "date"
},
"IsDeleted": {
"type": "boolean"
},
"ReplyToEmailMessageId": {
"type": "string"
},
"IsExternallyVisible": {
"type": "boolean"
}
},
"required": [
"CreatedById",
"CreatedDate",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"Incoming",
"HasAttachment",
"Status",
"IsDeleted",
"IsExternallyVisible"
]
},
"appc.salesforce_EmailServicesAddress": {
"type": "object",
"properties": {
"IsActive": {
"type": "boolean"
},
"LocalPart": {
"type": "string"
},
"EmailDomainName": {
"type": "string"
},
"AuthorizedSenders": {
"type": "string"
},
"RunAsUserId": {
"type": "string"
},
"FunctionId": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"IsActive",
"LocalPart",
"RunAsUserId",
"FunctionId",
"CreatedById",
"CreatedDate",
"LastModifiedById",
"LastModifiedDate",
"SystemModstamp"
]
},
"appc.salesforce_EmailServicesFunction": {
"type": "object",
"properties": {
"IsActive": {
"type": "boolean"
},
"FunctionName": {
"type": "string"
},
"AuthorizedSenders": {
"type": "string"
},
"IsAuthenticationRequired": {
"type": "boolean"
},
"IsTlsRequired": {
"type": "boolean"
},
"AttachmentOption": {
"type": "string"
},
"ApexClassId": {
"type": "string"
},
"OverLimitAction": {
"type": "string"
},
"FunctionInactiveAction": {
"type": "string"
},
"AddressInactiveAction": {
"type": "string"
},
"AuthenticationFailureAction": {
"type": "string"
},
"AuthorizationFailureAction": {
"type": "string"
},
"IsErrorRoutingEnabled": {
"type": "boolean"
},
"ErrorRoutingAddress": {
"type": "string"
},
"IsTextAttachmentsAsBinary": {
"type": "boolean"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"IsActive",
"FunctionName",
"IsAuthenticationRequired",
"IsTlsRequired",
"AttachmentOption",
"IsErrorRoutingEnabled",
"IsTextAttachmentsAsBinary",
"CreatedById",
"CreatedDate",
"LastModifiedById",
"LastModifiedDate",
"SystemModstamp"
]
},
"appc.salesforce_EmailStatus": {
"type": "object",
"properties": {
"TaskId": {
"type": "string"
},
"WhoId": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"TimesOpened": {
"type": "integer",
"format": "int32"
},
"FirstOpenDate": {
"type": "string",
"format": "date"
},
"LastOpenDate": {
"type": "string",
"format": "date"
},
"EmailTemplateName": {
"type": "string"
}
},
"required": [
"TaskId",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"TimesOpened"
]
},
"appc.salesforce_EmailTemplate": {
"type": "object",
"properties": {
"Name": {
"type": "string"
},
"DeveloperName": {
"type": "string"
},
"NamespacePrefix": {
"type": "string"
},
"OwnerId": {
"type": "string"
},
"FolderId": {
"type": "string"
},
"BrandTemplateId": {
"type": "string"
},
"TemplateStyle": {
"type": "string"
},
"IsActive": {
"type": "boolean"
},
"TemplateType": {
"type": "string"
},
"Encoding": {
"type": "string"
},
"Description": {
"type": "string"
},
"Subject": {
"type": "string"
},
"HtmlValue": {
"type": "string"
},
"Body": {
"type": "string"
},
"TimesUsed": {
"type": "integer",
"format": "int32"
},
"LastUsedDate": {
"type": "string",
"format": "date"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"ApiVersion": {
"type": "integer",
"format": "int32"
},
"Markup": {
"type": "string"
}
},
"required": [
"Name",
"DeveloperName",
"OwnerId",
"FolderId",
"TemplateStyle",
"IsActive",
"TemplateType",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp"
]
},
"appc.salesforce_EntityDefinition": {
"type": "object",
"properties": {
"DurableId": {
"type": "string"
},
"QualifiedApiName": {
"type": "string"
},
"NamespacePrefix": {
"type": "string"
},
"DeveloperName": {
"type": "string"
},
"MasterLabel": {
"type": "string"
},
"Label": {
"type": "string"
},
"PluralLabel": {
"type": "string"
},
"DefaultCompactLayoutId": {
"type": "string"
},
"IsCustomizable": {
"type": "boolean"
},
"IsApexTriggerable": {
"type": "boolean"
},
"IsWorkflowEnabled": {
"type": "boolean"
},
"IsCompactLayoutable": {
"type": "boolean"
},
"KeyPrefix": {
"type": "string"
},
"IsDeletable": {
"type": "boolean"
},
"IsCreatable": {
"type": "boolean"
},
"IsFeedEnabled": {
"type": "boolean"
},
"IsQueryable": {
"type": "boolean"
},
"DetailUrl": {
"type": "string"
},
"EditUrl": {
"type": "string"
},
"NewUrl": {
"type": "string"
},
"EditDefinitionUrl": {
"type": "string"
},
"HelpSettingPageName": {
"type": "string"
},
"HelpSettingPageUrl": {
"type": "string"
},
"RunningUserEntityAccessId": {
"type": "string"
},
"PublisherId": {
"type": "string"
}
},
"required": [
"QualifiedApiName",
"MasterLabel",
"IsCustomizable",
"IsApexTriggerable",
"IsWorkflowEnabled",
"IsCompactLayoutable",
"IsDeletable",
"IsCreatable",
"IsFeedEnabled",
"IsQueryable"
]
},
"appc.salesforce_EntityParticle": {
"type": "object",
"properties": {
"DurableId": {
"type": "string"
},
"QualifiedApiName": {
"type": "string"
},
"EntityDefinitionId": {
"type": "string"
},
"FieldDefinitionId": {
"type": "string"
},
"NamespacePrefix": {
"type": "string"
},
"DeveloperName": {
"type": "string"
},
"MasterLabel": {
"type": "string"
},
"Label": {
"type": "string"
},
"Length": {
"type": "integer",
"format": "int32"
},
"DataType": {
"type": "string"
},
"ServiceDataTypeId": {
"type": "string"
},
"ExtraTypeInfo": {
"type": "string"
},
"IsCalculated": {
"type": "boolean"
},
"IsHighScaleNumber": {
"type": "boolean"
},
"IsHtmlFormatted": {
"type": "boolean"
},
"IsNameField": {
"type": "boolean"
},
"IsNillable": {
"type": "boolean"
},
"IsWorkflowFilterable": {
"type": "boolean"
},
"IsCompactLayoutable": {
"type": "boolean"
},
"Precision": {
"type": "integer",
"format": "int32"
},
"Scale": {
"type": "integer",
"format": "int32"
},
"IsFieldHistoryTracked": {
"type": "boolean"
},
"IsApiFilterable": {
"type": "boolean"
},
"IsApiSortable": {
"type": "boolean"
},
"IsApiGroupable": {
"type": "boolean"
},
"IsListVisible": {
"type": "boolean"
}
},
"required": [
"QualifiedApiName",
"MasterLabel",
"IsCalculated",
"IsHighScaleNumber",
"IsHtmlFormatted",
"IsNameField",
"IsNillable",
"IsWorkflowFilterable",
"IsCompactLayoutable",
"IsFieldHistoryTracked",
"IsApiFilterable",
"IsApiSortable",
"IsApiGroupable",
"IsListVisible"
]
},
"appc.salesforce_EntitySubscription": {
"type": "object",
"properties": {
"ParentId": {
"type": "string"
},
"SubscriberId": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"IsDeleted": {
"type": "boolean"
}
},
"required": [
"ParentId",
"SubscriberId",
"CreatedById",
"CreatedDate",
"IsDeleted"
]
},
"appc.salesforce_Event": {
"type": "object",
"properties": {
"WhoId": {
"type": "string"
},
"WhatId": {
"type": "string"
},
"Subject": {
"type": "string"
},
"Location": {
"type": "string"
},
"IsAllDayEvent": {
"type": "boolean"
},
"ActivityDateTime": {
"type": "string",
"format": "date"
},
"ActivityDate": {
"type": "string",
"format": "date"
},
"DurationInMinutes": {
"type": "integer",
"format": "int32"
},
"StartDateTime": {
"type": "string",
"format": "date"
},
"EndDateTime": {
"type": "string",
"format": "date"
},
"Description": {
"type": "string"
},
"AccountId": {
"type": "string"
},
"OwnerId": {
"type": "string"
},
"IsPrivate": {
"type": "boolean"
},
"ShowAs": {
"type": "string"
},
"IsDeleted": {
"type": "boolean"
},
"IsChild": {
"type": "boolean"
},
"IsGroupEvent": {
"type": "boolean"
},
"GroupEventType": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"IsArchived": {
"type": "boolean"
},
"RecurrenceActivityId": {
"type": "string"
},
"IsRecurrence": {
"type": "boolean"
},
"RecurrenceStartDateTime": {
"type": "string",
"format": "date"
},
"RecurrenceEndDateOnly": {
"type": "string",
"format": "date"
},
"RecurrenceTimeZoneSidKey": {
"type": "string"
},
"RecurrenceType": {
"type": "string"
},
"RecurrenceInterval": {
"type": "integer",
"format": "int32"
},
"RecurrenceDayOfWeekMask": {
"type": "integer",
"format": "int32"
},
"RecurrenceDayOfMonth": {
"type": "integer",
"format": "int32"
},
"RecurrenceInstance": {
"type": "string"
},
"RecurrenceMonthOfYear": {
"type": "string"
},
"ReminderDateTime": {
"type": "string",
"format": "date"
},
"IsReminderSet": {
"type": "boolean"
}
},
"required": [
"IsAllDayEvent",
"OwnerId",
"IsPrivate",
"IsDeleted",
"IsChild",
"IsGroupEvent",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"IsArchived",
"IsRecurrence",
"IsReminderSet"
]
},
"appc.salesforce_EventFeed": {
"type": "object",
"properties": {
"ParentId": {
"type": "string"
},
"Type": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"IsDeleted": {
"type": "boolean"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"CommentCount": {
"type": "integer",
"format": "int32"
},
"LikeCount": {
"type": "integer",
"format": "int32"
},
"Title": {
"type": "string"
},
"Body": {
"type": "string"
},
"LinkUrl": {
"type": "string"
},
"RelatedRecordId": {
"type": "string"
},
"ContentData": {
"type": "integer",
"format": "int32"
},
"ContentFileName": {
"type": "string"
},
"ContentDescription": {
"type": "string"
},
"ContentType": {
"type": "string"
},
"ContentSize": {
"type": "integer",
"format": "int32"
},
"InsertedById": {
"type": "string"
}
},
"required": [
"ParentId",
"CreatedById",
"CreatedDate",
"IsDeleted",
"LastModifiedDate",
"SystemModstamp",
"CommentCount",
"LikeCount"
]
},
"appc.salesforce_EventLogFile": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"EventType": {
"type": "string"
},
"LogDate": {
"type": "string",
"format": "date"
},
"LogFileLength": {
"type": "integer",
"format": "int32"
},
"LogFileContentType": {
"type": "string"
},
"ApiVersion": {
"type": "integer",
"format": "int32"
},
"LogFileFieldNames": {
"type": "string"
},
"LogFileFieldTypes": {
"type": "string"
},
"LogFile": {
"type": "integer",
"format": "int32"
}
},
"required": [
"IsDeleted",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"EventType",
"LogDate",
"LogFileLength",
"LogFileContentType",
"ApiVersion",
"LogFile"
]
},
"appc.salesforce_EventRelation": {
"type": "object",
"properties": {
"RelationId": {
"type": "string"
},
"EventId": {
"type": "string"
},
"Status": {
"type": "string"
},
"RespondedDate": {
"type": "string",
"format": "date"
},
"Response": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"IsDeleted": {
"type": "boolean"
}
},
"required": [
"RelationId",
"EventId",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"IsDeleted"
]
},
"appc.salesforce_ExternalDataSource": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"DeveloperName": {
"type": "string"
},
"Language": {
"type": "string"
},
"MasterLabel": {
"type": "string"
},
"NamespacePrefix": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"Type": {
"type": "string"
},
"Endpoint": {
"type": "string"
},
"Repository": {
"type": "string"
},
"PrincipalType": {
"type": "string"
},
"ApiKey": {
"type": "string"
},
"LargeIconId": {
"type": "string"
},
"SmallIconId": {
"type": "string"
},
"CustomConfiguration": {
"type": "string"
}
},
"required": [
"IsDeleted",
"DeveloperName",
"Language",
"MasterLabel",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"Type",
"PrincipalType"
]
},
"appc.salesforce_ExternalDataUserAuth": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"ExternalDataSourceId": {
"type": "string"
},
"UserId": {
"type": "string"
},
"Protocol": {
"type": "string"
},
"Username": {
"type": "string"
},
"Password": {
"type": "string"
}
},
"required": [
"IsDeleted",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"ExternalDataSourceId"
]
},
"appc.salesforce_FeedComment": {
"type": "object",
"properties": {
"FeedItemId": {
"type": "string"
},
"ParentId": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"Revision": {
"type": "integer",
"format": "int32"
},
"LastEditById": {
"type": "string"
},
"LastEditDate": {
"type": "string",
"format": "date"
},
"CommentBody": {
"type": "string"
},
"IsDeleted": {
"type": "boolean"
},
"InsertedById": {
"type": "string"
},
"CommentType": {
"type": "string"
},
"RelatedRecordId": {
"type": "string"
}
},
"required": [
"FeedItemId",
"CreatedById",
"CreatedDate",
"CommentBody",
"IsDeleted",
"InsertedById"
]
},
"appc.salesforce_FeedItem": {
"type": "object",
"properties": {
"ParentId": {
"type": "string"
},
"Type": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"IsDeleted": {
"type": "boolean"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"Revision": {
"type": "integer",
"format": "int32"
},
"LastEditById": {
"type": "string"
},
"LastEditDate": {
"type": "string",
"format": "date"
},
"CommentCount": {
"type": "integer",
"format": "int32"
},
"LikeCount": {
"type": "integer",
"format": "int32"
},
"Title": {
"type": "string"
},
"Body": {
"type": "string"
},
"LinkUrl": {
"type": "string"
},
"RelatedRecordId": {
"type": "string"
},
"ContentData": {
"type": "integer",
"format": "int32"
},
"ContentFileName": {
"type": "string"
},
"ContentDescription": {
"type": "string"
},
"ContentType": {
"type": "string"
},
"ContentSize": {
"type": "integer",
"format": "int32"
},
"InsertedById": {
"type": "string"
},
"BestCommentId": {
"type": "string"
},
"HasContent": {
"type": "boolean"
},
"HasLink": {
"type": "boolean"
}
},
"required": [
"ParentId",
"CreatedById",
"CreatedDate",
"IsDeleted",
"LastModifiedDate",
"SystemModstamp",
"CommentCount",
"LikeCount",
"InsertedById",
"HasContent",
"HasLink"
]
},
"appc.salesforce_FeedLike": {
"type": "object",
"properties": {
"FeedItemId": {
"type": "string"
},
"FeedEntityId": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"IsDeleted": {
"type": "boolean"
},
"InsertedById": {
"type": "string"
}
},
"required": [
"CreatedById",
"CreatedDate",
"IsDeleted",
"InsertedById"
]
},
"appc.salesforce_FeedPollChoice": {
"type": "object",
"properties": {
"FeedItemId": {
"type": "string"
},
"Position": {
"type": "integer",
"format": "int32"
},
"ChoiceBody": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"IsDeleted": {
"type": "boolean"
}
},
"required": [
"FeedItemId",
"Position",
"ChoiceBody",
"CreatedById",
"CreatedDate",
"IsDeleted"
]
},
"appc.salesforce_FeedPollVote": {
"type": "object",
"properties": {
"FeedItemId": {
"type": "string"
},
"ChoiceId": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"IsDeleted": {
"type": "boolean"
}
},
"required": [
"FeedItemId",
"ChoiceId",
"CreatedById",
"CreatedDate",
"LastModifiedDate",
"IsDeleted"
]
},
"appc.salesforce_FeedRevision": {
"type": "object",
"properties": {
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"IsDeleted": {
"type": "boolean"
},
"FeedEntityId": {
"type": "string"
},
"Revision": {
"type": "integer",
"format": "int32"
},
"Action": {
"type": "string"
},
"EditedAttribute": {
"type": "string"
},
"Value": {
"type": "string"
}
},
"required": [
"CreatedDate",
"CreatedById",
"SystemModstamp",
"IsDeleted",
"FeedEntityId"
]
},
"appc.salesforce_FeedTrackedChange": {
"type": "object",
"properties": {
"FeedItemId": {
"type": "string"
},
"FieldName": {
"type": "string"
},
"OldValue": {
"type": "string"
},
"NewValue": {
"type": "string"
}
},
"required": [
"FeedItemId",
"FieldName"
]
},
"appc.salesforce_FieldDefinition": {
"type": "object",
"properties": {
"DurableId": {
"type": "string"
},
"QualifiedApiName": {
"type": "string"
},
"EntityDefinitionId": {
"type": "string"
},
"NamespacePrefix": {
"type": "string"
},
"DeveloperName": {
"type": "string"
},
"MasterLabel": {
"type": "string"
},
"Label": {
"type": "string"
},
"Length": {
"type": "integer",
"format": "int32"
},
"DataType": {
"type": "string"
},
"ServiceDataTypeId": {
"type": "string"
},
"ExtraTypeInfo": {
"type": "string"
},
"IsCalculated": {
"type": "boolean"
},
"IsHighScaleNumber": {
"type": "boolean"
},
"IsHtmlFormatted": {
"type": "boolean"
},
"IsNameField": {
"type": "boolean"
},
"IsNillable": {
"type": "boolean"
},
"IsWorkflowFilterable": {
"type": "boolean"
},
"IsCompactLayoutable": {
"type": "boolean"
},
"Precision": {
"type": "integer",
"format": "int32"
},
"Scale": {
"type": "integer",
"format": "int32"
},
"IsFieldHistoryTracked": {
"type": "boolean"
},
"IsApiFilterable": {
"type": "boolean"
},
"IsApiSortable": {
"type": "boolean"
},
"IsListFilterable": {
"type": "boolean"
},
"IsListSortable": {
"type": "boolean"
},
"IsApiGroupable": {
"type": "boolean"
},
"IsListVisible": {
"type": "boolean"
},
"ControllingFieldDefinitionId": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"PublisherId": {
"type": "string"
},
"RunningUserFieldAccessId": {
"type": "string"
},
"RelationshipName": {
"type": "string"
},
"ReferenceTo": {
"type": "string",
"format": "json"
},
"ReferenceTargetField": {
"type": "string"
}
},
"required": [
"QualifiedApiName",
"MasterLabel",
"IsCalculated",
"IsHighScaleNumber",
"IsHtmlFormatted",
"IsNameField",
"IsNillable",
"IsWorkflowFilterable",
"IsCompactLayoutable",
"IsFieldHistoryTracked",
"IsApiFilterable",
"IsApiSortable",
"IsListFilterable",
"IsListSortable",
"IsApiGroupable",
"IsListVisible",
"LastModifiedDate",
"LastModifiedById"
]
},
"appc.salesforce_FieldPermissions": {
"type": "object",
"properties": {
"ParentId": {
"type": "string"
},
"SobjectType": {
"type": "string"
},
"Field": {
"type": "string"
},
"PermissionsEdit": {
"type": "boolean"
},
"PermissionsRead": {
"type": "boolean"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"ParentId",
"SobjectType",
"Field",
"PermissionsEdit",
"PermissionsRead",
"SystemModstamp"
]
},
"appc.salesforce_FiscalYearSettings": {
"type": "object",
"properties": {
"PeriodId": {
"type": "string"
},
"StartDate": {
"type": "string",
"format": "date"
},
"EndDate": {
"type": "string",
"format": "date"
},
"Name": {
"type": "string"
},
"IsStandardYear": {
"type": "boolean"
},
"YearType": {
"type": "string"
},
"QuarterLabelScheme": {
"type": "string"
},
"PeriodLabelScheme": {
"type": "string"
},
"WeekLabelScheme": {
"type": "string"
},
"QuarterPrefix": {
"type": "string"
},
"PeriodPrefix": {
"type": "string"
},
"WeekStartDay": {
"type": "integer",
"format": "int32"
},
"Description": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"Name",
"IsStandardYear",
"SystemModstamp"
]
},
"appc.salesforce_FlowInterview": {
"type": "object",
"properties": {
"OwnerId": {
"type": "string"
},
"IsDeleted": {
"type": "boolean"
},
"Name": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"CurrentElement": {
"type": "string"
},
"InterviewLabel": {
"type": "string"
},
"PauseLabel": {
"type": "string"
}
},
"required": [
"OwnerId",
"IsDeleted",
"Name",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp"
]
},
"appc.salesforce_FlowInterviewShare": {
"type": "object",
"properties": {
"ParentId": {
"type": "string"
},
"UserOrGroupId": {
"type": "string"
},
"AccessLevel": {
"type": "string"
},
"RowCause": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"IsDeleted": {
"type": "boolean"
}
},
"required": [
"ParentId",
"UserOrGroupId",
"AccessLevel",
"LastModifiedDate",
"LastModifiedById",
"IsDeleted"
]
},
"appc.salesforce_Folder": {
"type": "object",
"properties": {
"Name": {
"type": "string"
},
"DeveloperName": {
"type": "string"
},
"AccessType": {
"type": "string"
},
"IsReadonly": {
"type": "boolean"
},
"Type": {
"type": "string"
},
"NamespacePrefix": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"Name",
"AccessType",
"IsReadonly",
"Type",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp"
]
},
"appc.salesforce_ForecastShare": {
"type": "object",
"properties": {
"UserRoleId": {
"type": "string"
},
"UserOrGroupId": {
"type": "string"
},
"AccessLevel": {
"type": "string"
},
"CanSubmit": {
"type": "boolean"
},
"RowCause": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
}
},
"required": [
"UserRoleId",
"UserOrGroupId",
"AccessLevel",
"CanSubmit",
"RowCause",
"LastModifiedDate",
"LastModifiedById"
]
},
"appc.salesforce_GrantedByLicense": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"PermissionSetLicenseId": {
"type": "string"
},
"CustomPermissionId": {
"type": "string"
}
},
"required": [
"IsDeleted",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"PermissionSetLicenseId",
"CustomPermissionId"
]
},
"appc.salesforce_Group": {
"type": "object",
"properties": {
"Name": {
"type": "string"
},
"DeveloperName": {
"type": "string"
},
"RelatedId": {
"type": "string"
},
"Type": {
"type": "string"
},
"Email": {
"type": "string"
},
"OwnerId": {
"type": "string"
},
"DoesSendEmailToMembers": {
"type": "boolean"
},
"DoesIncludeBosses": {
"type": "boolean"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"Name",
"Type",
"OwnerId",
"DoesSendEmailToMembers",
"DoesIncludeBosses",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp"
]
},
"appc.salesforce_GroupMember": {
"type": "object",
"properties": {
"GroupId": {
"type": "string"
},
"UserOrGroupId": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"GroupId",
"UserOrGroupId",
"SystemModstamp"
]
},
"appc.salesforce_Holiday": {
"type": "object",
"properties": {
"Name": {
"type": "string"
},
"Description": {
"type": "string"
},
"IsAllDay": {
"type": "boolean"
},
"ActivityDate": {
"type": "string",
"format": "date"
},
"StartTimeInMinutes": {
"type": "integer",
"format": "int32"
},
"EndTimeInMinutes": {
"type": "integer",
"format": "int32"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"IsRecurrence": {
"type": "boolean"
},
"RecurrenceStartDate": {
"type": "string",
"format": "date"
},
"RecurrenceEndDateOnly": {
"type": "string",
"format": "date"
},
"RecurrenceType": {
"type": "string"
},
"RecurrenceInterval": {
"type": "integer",
"format": "int32"
},
"RecurrenceDayOfWeekMask": {
"type": "integer",
"format": "int32"
},
"RecurrenceDayOfMonth": {
"type": "integer",
"format": "int32"
},
"RecurrenceInstance": {
"type": "string"
},
"RecurrenceMonthOfYear": {
"type": "string"
}
},
"required": [
"Name",
"IsAllDay",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"IsRecurrence"
]
},
"appc.salesforce_Idea": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"Title": {
"type": "string"
},
"RecordTypeId": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"LastViewedDate": {
"type": "string",
"format": "date"
},
"LastReferencedDate": {
"type": "string",
"format": "date"
},
"CommunityId": {
"type": "string"
},
"Body": {
"type": "string"
},
"NumComments": {
"type": "integer",
"format": "int32"
},
"VoteScore": {
"type": "integer",
"format": "int32"
},
"VoteTotal": {
"type": "integer",
"format": "int32"
},
"Categories": {
"type": "string",
"format": "json"
},
"Status": {
"type": "string"
},
"LastCommentDate": {
"type": "string",
"format": "date"
},
"LastCommentId": {
"type": "string"
},
"ParentIdeaId": {
"type": "string"
},
"IsHtml": {
"type": "boolean"
},
"IsMerged": {
"type": "boolean"
},
"CreatorFullPhotoUrl": {
"type": "string"
},
"CreatorSmallPhotoUrl": {
"type": "string"
},
"CreatorName": {
"type": "string"
}
},
"required": [
"IsDeleted",
"Title",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"CommunityId",
"IsHtml",
"IsMerged"
]
},
"appc.salesforce_IdeaComment": {
"type": "object",
"properties": {
"IdeaId": {
"type": "string"
},
"CommunityId": {
"type": "string"
},
"CommentBody": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"IsDeleted": {
"type": "boolean"
},
"IsHtml": {
"type": "boolean"
},
"CreatorFullPhotoUrl": {
"type": "string"
},
"CreatorSmallPhotoUrl": {
"type": "string"
},
"CreatorName": {
"type": "string"
},
"UpVotes": {
"type": "integer",
"format": "int32"
}
},
"required": [
"IdeaId",
"CreatedById",
"CreatedDate",
"SystemModstamp",
"IsDeleted",
"IsHtml"
]
},
"appc.salesforce_InstalledMobileApp": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"Name": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"Status": {
"type": "string"
},
"UserId": {
"type": "string"
},
"ConnectedApplicationId": {
"type": "string"
},
"Version": {
"type": "string"
}
},
"required": [
"IsDeleted",
"Name",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"Status",
"UserId",
"ConnectedApplicationId"
]
},
"appc.salesforce_KnowledgeableUser": {
"type": "object",
"properties": {
"UserId": {
"type": "string"
},
"TopicId": {
"type": "string"
},
"RawRank": {
"type": "integer",
"format": "int32"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"UserId",
"TopicId",
"SystemModstamp"
]
},
"appc.salesforce_Lead": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"MasterRecordId": {
"type": "string"
},
"LastName": {
"type": "string"
},
"FirstName": {
"type": "string"
},
"Salutation": {
"type": "string"
},
"Name": {
"type": "string"
},
"Title": {
"type": "string"
},
"Company": {
"type": "string"
},
"Street": {
"type": "string"
},
"City": {
"type": "string"
},
"State": {
"type": "string"
},
"PostalCode": {
"type": "string"
},
"Country": {
"type": "string"
},
"Latitude": {
"type": "integer",
"format": "int32"
},
"Longitude": {
"type": "integer",
"format": "int32"
},
"Address": {
"type": "string"
},
"Phone": {
"type": "string"
},
"MobilePhone": {
"type": "string"
},
"Fax": {
"type": "string"
},
"Email": {
"type": "string"
},
"Website": {
"type": "string"
},
"PhotoUrl": {
"type": "string"
},
"Description": {
"type": "string"
},
"LeadSource": {
"type": "string"
},
"Status": {
"type": "string"
},
"Industry": {
"type": "string"
},
"Rating": {
"type": "string"
},
"AnnualRevenue": {
"type": "integer",
"format": "int32"
},
"NumberOfEmployees": {
"type": "integer",
"format": "int32"
},
"OwnerId": {
"type": "string"
},
"IsConverted": {
"type": "boolean"
},
"ConvertedDate": {
"type": "string",
"format": "date"
},
"ConvertedAccountId": {
"type": "string"
},
"ConvertedContactId": {
"type": "string"
},
"ConvertedOpportunityId": {
"type": "string"
},
"IsUnreadByOwner": {
"type": "boolean"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"LastActivityDate": {
"type": "string",
"format": "date"
},
"LastViewedDate": {
"type": "string",
"format": "date"
},
"LastReferencedDate": {
"type": "string",
"format": "date"
},
"Jigsaw": {
"type": "string"
},
"JigsawContactId": {
"type": "string"
},
"EmailBouncedReason": {
"type": "string"
},
"EmailBouncedDate": {
"type": "string",
"format": "date"
},
"lb_sftest__SICCode__c": {
"type": "string"
},
"lb_sftest__ProductInterest__c": {
"type": "string"
},
"lb_sftest__Primary__c": {
"type": "string"
},
"lb_sftest__CurrentGenerators__c": {
"type": "string"
},
"lb_sftest__NumberofLocations__c": {
"type": "integer",
"format": "int32"
}
},
"required": [
"IsDeleted",
"LastName",
"Name",
"Company",
"Status",
"OwnerId",
"IsConverted",
"IsUnreadByOwner",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp"
]
},
"appc.salesforce_LeadFeed": {
"type": "object",
"properties": {
"ParentId": {
"type": "string"
},
"Type": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"IsDeleted": {
"type": "boolean"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"CommentCount": {
"type": "integer",
"format": "int32"
},
"LikeCount": {
"type": "integer",
"format": "int32"
},
"Title": {
"type": "string"
},
"Body": {
"type": "string"
},
"LinkUrl": {
"type": "string"
},
"RelatedRecordId": {
"type": "string"
},
"ContentData": {
"type": "integer",
"format": "int32"
},
"ContentFileName": {
"type": "string"
},
"ContentDescription": {
"type": "string"
},
"ContentType": {
"type": "string"
},
"ContentSize": {
"type": "integer",
"format": "int32"
},
"InsertedById": {
"type": "string"
}
},
"required": [
"ParentId",
"CreatedById",
"CreatedDate",
"IsDeleted",
"LastModifiedDate",
"SystemModstamp",
"CommentCount",
"LikeCount"
]
},
"appc.salesforce_LeadHistory": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"LeadId": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"Field": {
"type": "string"
},
"OldValue": {
"type": "string"
},
"NewValue": {
"type": "string"
}
},
"required": [
"IsDeleted",
"LeadId",
"CreatedById",
"CreatedDate",
"Field"
]
},
"appc.salesforce_LeadShare": {
"type": "object",
"properties": {
"LeadId": {
"type": "string"
},
"UserOrGroupId": {
"type": "string"
},
"LeadAccessLevel": {
"type": "string"
},
"RowCause": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"IsDeleted": {
"type": "boolean"
}
},
"required": [
"LeadId",
"UserOrGroupId",
"LeadAccessLevel",
"LastModifiedDate",
"LastModifiedById",
"IsDeleted"
]
},
"appc.salesforce_LeadStatus": {
"type": "object",
"properties": {
"MasterLabel": {
"type": "string"
},
"SortOrder": {
"type": "integer",
"format": "int32"
},
"IsDefault": {
"type": "boolean"
},
"IsConverted": {
"type": "boolean"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"IsDefault",
"IsConverted",
"CreatedById",
"CreatedDate",
"LastModifiedById",
"LastModifiedDate",
"SystemModstamp"
]
},
"appc.salesforce_ListView": {
"type": "object",
"properties": {
"Name": {
"type": "string"
},
"DeveloperName": {
"type": "string"
},
"NamespacePrefix": {
"type": "string"
},
"SobjectType": {
"type": "string"
},
"IsSoqlCompatible": {
"type": "boolean"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"LastViewedDate": {
"type": "string",
"format": "date"
},
"LastReferencedDate": {
"type": "string",
"format": "date"
}
},
"required": [
"Name",
"DeveloperName",
"IsSoqlCompatible",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp"
]
},
"appc.salesforce_ListViewChart": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"SobjectType": {
"type": "string"
},
"DeveloperName": {
"type": "string"
},
"Language": {
"type": "string"
},
"MasterLabel": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"OwnerId": {
"type": "string"
},
"ChartType": {
"type": "string"
},
"GroupingField": {
"type": "string"
},
"AggregateField": {
"type": "string"
},
"AggregateType": {
"type": "string"
}
},
"required": [
"IsDeleted",
"SobjectType",
"DeveloperName",
"MasterLabel",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"OwnerId",
"ChartType",
"AggregateType"
]
},
"appc.salesforce_ListViewChartInstance": {
"type": "object",
"properties": {
"ExternalId": {
"type": "string"
},
"ListViewChartId": {
"type": "string"
},
"Label": {
"type": "string"
},
"DeveloperName": {
"type": "string"
},
"SourceEntity": {
"type": "string"
},
"ListViewContextId": {
"type": "string"
},
"ChartType": {
"type": "string"
},
"IsLastViewed": {
"type": "boolean"
},
"DataQuery": {
"type": "string"
},
"IsEditable": {
"type": "boolean"
},
"IsDeletable": {
"type": "boolean"
},
"GroupingField": {
"type": "string"
},
"AggregateField": {
"type": "string"
},
"AggregateType": {
"type": "string"
}
},
"required": [
"ListViewChartId",
"Label",
"DeveloperName",
"SourceEntity",
"ListViewContextId",
"ChartType",
"IsLastViewed",
"IsEditable",
"IsDeletable",
"GroupingField",
"AggregateField",
"AggregateType"
]
},
"appc.salesforce_LoginGeo": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"LoginTime": {
"type": "string",
"format": "date"
},
"CountryIso": {
"type": "string"
},
"Country": {
"type": "string"
},
"Latitude": {
"type": "integer",
"format": "int32"
},
"Longitude": {
"type": "integer",
"format": "int32"
},
"City": {
"type": "string"
},
"PostalCode": {
"type": "string"
},
"Subdivision": {
"type": "string"
}
},
"required": [
"IsDeleted",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"LoginTime"
]
},
"appc.salesforce_LoginHistory": {
"type": "object",
"properties": {
"UserId": {
"type": "string"
},
"LoginTime": {
"type": "string",
"format": "date"
},
"LoginType": {
"type": "string"
},
"SourceIp": {
"type": "string"
},
"LoginUrl": {
"type": "string"
},
"AuthenticationServiceId": {
"type": "string"
},
"LoginGeoId": {
"type": "string"
},
"Browser": {
"type": "string"
},
"Platform": {
"type": "string"
},
"Status": {
"type": "string"
},
"Application": {
"type": "string"
},
"ClientVersion": {
"type": "string"
},
"ApiType": {
"type": "string"
},
"ApiVersion": {
"type": "string"
}
},
"required": [
"LoginTime",
"LoginType"
]
},
"appc.salesforce_LoginIp": {
"type": "object",
"properties": {
"UsersId": {
"type": "string"
},
"SourceIp": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"IsAuthenticated": {
"type": "boolean"
},
"ChallengeSentDate": {
"type": "string",
"format": "date"
},
"ChallengeMethod": {
"type": "string"
}
},
"required": [
"UsersId",
"CreatedDate",
"IsAuthenticated"
]
},
"appc.salesforce_LookedUpFromActivity": {
"type": "object",
"properties": {
"AccountId": {
"type": "string"
},
"WhoId": {
"type": "string"
},
"WhatId": {
"type": "string"
},
"Subject": {
"type": "string"
},
"IsTask": {
"type": "boolean"
},
"ActivityDate": {
"type": "string",
"format": "date"
},
"OwnerId": {
"type": "string"
},
"Status": {
"type": "string"
},
"Priority": {
"type": "string"
},
"IsHighPriority": {
"type": "boolean"
},
"ActivityType": {
"type": "string"
},
"IsClosed": {
"type": "boolean"
},
"IsAllDayEvent": {
"type": "boolean"
},
"IsVisibleInSelfService": {
"type": "boolean"
},
"DurationInMinutes": {
"type": "integer",
"format": "int32"
},
"Location": {
"type": "string"
},
"Description": {
"type": "string"
},
"IsDeleted": {
"type": "boolean"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"CallDurationInSeconds": {
"type": "integer",
"format": "int32"
},
"CallType": {
"type": "string"
},
"CallDisposition": {
"type": "string"
},
"CallObject": {
"type": "string"
},
"ReminderDateTime": {
"type": "string",
"format": "date"
},
"IsReminderSet": {
"type": "boolean"
},
"EndDateTime": {
"type": "string",
"format": "date"
},
"StartDateTime": {
"type": "string",
"format": "date"
}
},
"required": [
"IsTask",
"IsHighPriority",
"IsClosed",
"IsAllDayEvent",
"IsVisibleInSelfService",
"IsDeleted",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"IsReminderSet"
]
},
"appc.salesforce_Macro": {
"type": "object",
"properties": {
"OwnerId": {
"type": "string"
},
"IsDeleted": {
"type": "boolean"
},
"Name": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"LastViewedDate": {
"type": "string",
"format": "date"
},
"LastReferencedDate": {
"type": "string",
"format": "date"
},
"Description": {
"type": "string"
}
},
"required": [
"OwnerId",
"IsDeleted",
"Name",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp"
]
},
"appc.salesforce_MacroHistory": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"MacroId": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"Field": {
"type": "string"
},
"OldValue": {
"type": "string"
},
"NewValue": {
"type": "string"
}
},
"required": [
"IsDeleted",
"MacroId",
"CreatedById",
"CreatedDate",
"Field"
]
},
"appc.salesforce_MacroShare": {
"type": "object",
"properties": {
"ParentId": {
"type": "string"
},
"UserOrGroupId": {
"type": "string"
},
"AccessLevel": {
"type": "string"
},
"RowCause": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"IsDeleted": {
"type": "boolean"
}
},
"required": [
"ParentId",
"UserOrGroupId",
"AccessLevel",
"LastModifiedDate",
"LastModifiedById",
"IsDeleted"
]
},
"appc.salesforce_MailmergeTemplate": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"Name": {
"type": "string"
},
"Description": {
"type": "string"
},
"Filename": {
"type": "string"
},
"BodyLength": {
"type": "integer",
"format": "int32"
},
"Body": {
"type": "integer",
"format": "int32"
},
"LastUsedDate": {
"type": "string",
"format": "date"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"SecurityOptionsAttachmentScannedForXSS": {
"type": "boolean"
},
"SecurityOptionsAttachmentHasXSSThreat": {
"type": "boolean"
},
"SecurityOptionsAttachmentScannedforFlash": {
"type": "boolean"
},
"SecurityOptionsAttachmentHasFlash": {
"type": "boolean"
}
},
"required": [
"IsDeleted",
"Name",
"Filename",
"Body",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"SecurityOptionsAttachmentScannedForXSS",
"SecurityOptionsAttachmentHasXSSThreat",
"SecurityOptionsAttachmentScannedforFlash",
"SecurityOptionsAttachmentHasFlash"
]
},
"appc.salesforce_MatchingRule": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"SobjectType": {
"type": "string"
},
"DeveloperName": {
"type": "string"
},
"Language": {
"type": "string"
},
"MasterLabel": {
"type": "string"
},
"NamespacePrefix": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"MatchEngine": {
"type": "string"
},
"BooleanFilter": {
"type": "string"
},
"Description": {
"type": "string"
},
"RuleStatus": {
"type": "string"
}
},
"required": [
"IsDeleted",
"SobjectType",
"DeveloperName",
"Language",
"MasterLabel",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"RuleStatus"
]
},
"appc.salesforce_MatchingRuleItem": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"MatchingRuleId": {
"type": "string"
},
"SortOrder": {
"type": "integer",
"format": "int32"
},
"Field": {
"type": "string"
},
"MatchingMethod": {
"type": "string"
},
"BlankValueBehavior": {
"type": "string"
}
},
"required": [
"IsDeleted",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"MatchingRuleId",
"SortOrder",
"BlankValueBehavior"
]
},
"appc.salesforce_Name": {
"type": "object",
"properties": {
"Name": {
"type": "string"
},
"LastName": {
"type": "string"
},
"FirstName": {
"type": "string"
},
"Type": {
"type": "string"
},
"Alias": {
"type": "string"
},
"UserRoleId": {
"type": "string"
},
"RecordTypeId": {
"type": "string"
},
"IsActive": {
"type": "boolean"
},
"ProfileId": {
"type": "string"
},
"Title": {
"type": "string"
},
"Email": {
"type": "string"
},
"Phone": {
"type": "string"
},
"Username": {
"type": "string"
},
"LastViewedDate": {
"type": "string",
"format": "date"
},
"LastReferencedDate": {
"type": "string",
"format": "date"
}
},
"required": [
"IsActive"
]
},
"appc.salesforce_NamedCredential": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"DeveloperName": {
"type": "string"
},
"Language": {
"type": "string"
},
"MasterLabel": {
"type": "string"
},
"NamespacePrefix": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"Endpoint": {
"type": "string"
},
"PrincipalType": {
"type": "string"
}
},
"required": [
"IsDeleted",
"DeveloperName",
"Language",
"MasterLabel",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"PrincipalType"
]
},
"appc.salesforce_Note": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"ParentId": {
"type": "string"
},
"Title": {
"type": "string"
},
"IsPrivate": {
"type": "boolean"
},
"Body": {
"type": "string"
},
"OwnerId": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"IsDeleted",
"ParentId",
"Title",
"IsPrivate",
"OwnerId",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp"
]
},
"appc.salesforce_NoteAndAttachment": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"IsNote": {
"type": "boolean"
},
"ParentId": {
"type": "string"
},
"Title": {
"type": "string"
},
"IsPrivate": {
"type": "boolean"
},
"OwnerId": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"IsDeleted",
"IsNote",
"ParentId",
"IsPrivate",
"OwnerId",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp"
]
},
"appc.salesforce_OauthToken": {
"type": "object",
"properties": {
"AccessToken": {
"type": "string"
},
"UserId": {
"type": "string"
},
"RequestToken": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"AppName": {
"type": "string"
},
"LastUsedDate": {
"type": "string",
"format": "date"
},
"UseCount": {
"type": "integer",
"format": "int32"
},
"DeleteToken": {
"type": "string"
},
"AppMenuItemId": {
"type": "string"
}
}
},
"appc.salesforce_ObjectPermissions": {
"type": "object",
"properties": {
"ParentId": {
"type": "string"
},
"SobjectType": {
"type": "string"
},
"PermissionsCreate": {
"type": "boolean"
},
"PermissionsRead": {
"type": "boolean"
},
"PermissionsEdit": {
"type": "boolean"
},
"PermissionsDelete": {
"type": "boolean"
},
"PermissionsViewAllRecords": {
"type": "boolean"
},
"PermissionsModifyAllRecords": {
"type": "boolean"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"ParentId",
"SobjectType",
"PermissionsCreate",
"PermissionsRead",
"PermissionsEdit",
"PermissionsDelete",
"PermissionsViewAllRecords",
"PermissionsModifyAllRecords",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp"
]
},
"appc.salesforce_OpenActivity": {
"type": "object",
"properties": {
"AccountId": {
"type": "string"
},
"WhoId": {
"type": "string"
},
"WhatId": {
"type": "string"
},
"Subject": {
"type": "string"
},
"IsTask": {
"type": "boolean"
},
"ActivityDate": {
"type": "string",
"format": "date"
},
"OwnerId": {
"type": "string"
},
"Status": {
"type": "string"
},
"Priority": {
"type": "string"
},
"IsHighPriority": {
"type": "boolean"
},
"ActivityType": {
"type": "string"
},
"IsClosed": {
"type": "boolean"
},
"IsAllDayEvent": {
"type": "boolean"
},
"IsVisibleInSelfService": {
"type": "boolean"
},
"DurationInMinutes": {
"type": "integer",
"format": "int32"
},
"Location": {
"type": "string"
},
"Description": {
"type": "string"
},
"IsDeleted": {
"type": "boolean"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"CallDurationInSeconds": {
"type": "integer",
"format": "int32"
},
"CallType": {
"type": "string"
},
"CallDisposition": {
"type": "string"
},
"CallObject": {
"type": "string"
},
"ReminderDateTime": {
"type": "string",
"format": "date"
},
"IsReminderSet": {
"type": "boolean"
},
"EndDateTime": {
"type": "string",
"format": "date"
},
"StartDateTime": {
"type": "string",
"format": "date"
}
},
"required": [
"IsTask",
"IsHighPriority",
"IsClosed",
"IsAllDayEvent",
"IsVisibleInSelfService",
"IsDeleted",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"IsReminderSet"
]
},
"appc.salesforce_Opportunity": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"AccountId": {
"type": "string"
},
"IsPrivate": {
"type": "boolean"
},
"Name": {
"type": "string"
},
"Description": {
"type": "string"
},
"StageName": {
"type": "string"
},
"Amount": {
"type": "integer",
"format": "int32"
},
"Probability": {
"type": "integer",
"format": "int32"
},
"ExpectedRevenue": {
"type": "integer",
"format": "int32"
},
"TotalOpportunityQuantity": {
"type": "integer",
"format": "int32"
},
"CloseDate": {
"type": "string",
"format": "date"
},
"Type": {
"type": "string"
},
"NextStep": {
"type": "string"
},
"LeadSource": {
"type": "string"
},
"IsClosed": {
"type": "boolean"
},
"IsWon": {
"type": "boolean"
},
"ForecastCategory": {
"type": "string"
},
"ForecastCategoryName": {
"type": "string"
},
"CampaignId": {
"type": "string"
},
"HasOpportunityLineItem": {
"type": "boolean"
},
"Pricebook2Id": {
"type": "string"
},
"OwnerId": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"LastActivityDate": {
"type": "string",
"format": "date"
},
"FiscalQuarter": {
"type": "integer",
"format": "int32"
},
"FiscalYear": {
"type": "integer",
"format": "int32"
},
"Fiscal": {
"type": "string"
},
"LastViewedDate": {
"type": "string",
"format": "date"
},
"LastReferencedDate": {
"type": "string",
"format": "date"
},
"lb_sftest__DeliveryInstallationStatus__c": {
"type": "string"
},
"lb_sftest__TrackingNumber__c": {
"type": "string"
},
"lb_sftest__OrderNumber__c": {
"type": "string"
},
"lb_sftest__CurrentGenerators__c": {
"type": "string"
},
"lb_sftest__MainCompetitors__c": {
"type": "string"
}
},
"required": [
"IsDeleted",
"IsPrivate",
"Name",
"StageName",
"CloseDate",
"IsClosed",
"IsWon",
"ForecastCategory",
"HasOpportunityLineItem",
"OwnerId",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp"
]
},
"appc.salesforce_OpportunityCompetitor": {
"type": "object",
"properties": {
"OpportunityId": {
"type": "string"
},
"CompetitorName": {
"type": "string"
},
"Strengths": {
"type": "string"
},
"Weaknesses": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"IsDeleted": {
"type": "boolean"
}
},
"required": [
"OpportunityId",
"CreatedById",
"CreatedDate",
"LastModifiedById",
"LastModifiedDate",
"SystemModstamp",
"IsDeleted"
]
},
"appc.salesforce_OpportunityContactRole": {
"type": "object",
"properties": {
"OpportunityId": {
"type": "string"
},
"ContactId": {
"type": "string"
},
"Role": {
"type": "string"
},
"IsPrimary": {
"type": "boolean"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"IsDeleted": {
"type": "boolean"
}
},
"required": [
"OpportunityId",
"ContactId",
"IsPrimary",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"IsDeleted"
]
},
"appc.salesforce_OpportunityFeed": {
"type": "object",
"properties": {
"ParentId": {
"type": "string"
},
"Type": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"IsDeleted": {
"type": "boolean"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"CommentCount": {
"type": "integer",
"format": "int32"
},
"LikeCount": {
"type": "integer",
"format": "int32"
},
"Title": {
"type": "string"
},
"Body": {
"type": "string"
},
"LinkUrl": {
"type": "string"
},
"RelatedRecordId": {
"type": "string"
},
"ContentData": {
"type": "integer",
"format": "int32"
},
"ContentFileName": {
"type": "string"
},
"ContentDescription": {
"type": "string"
},
"ContentType": {
"type": "string"
},
"ContentSize": {
"type": "integer",
"format": "int32"
},
"InsertedById": {
"type": "string"
}
},
"required": [
"ParentId",
"CreatedById",
"CreatedDate",
"IsDeleted",
"LastModifiedDate",
"SystemModstamp",
"CommentCount",
"LikeCount"
]
},
"appc.salesforce_OpportunityFieldHistory": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"OpportunityId": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"Field": {
"type": "string"
},
"OldValue": {
"type": "string"
},
"NewValue": {
"type": "string"
}
},
"required": [
"IsDeleted",
"OpportunityId",
"CreatedById",
"CreatedDate",
"Field"
]
},
"appc.salesforce_OpportunityHistory": {
"type": "object",
"properties": {
"OpportunityId": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"StageName": {
"type": "string"
},
"Amount": {
"type": "integer",
"format": "int32"
},
"ExpectedRevenue": {
"type": "integer",
"format": "int32"
},
"CloseDate": {
"type": "string",
"format": "date"
},
"Probability": {
"type": "integer",
"format": "int32"
},
"ForecastCategory": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"IsDeleted": {
"type": "boolean"
}
},
"required": [
"OpportunityId",
"CreatedById",
"CreatedDate",
"StageName",
"SystemModstamp",
"IsDeleted"
]
},
"appc.salesforce_OpportunityLineItem": {
"type": "object",
"properties": {
"OpportunityId": {
"type": "string"
},
"SortOrder": {
"type": "integer",
"format": "int32"
},
"PricebookEntryId": {
"type": "string"
},
"Product2Id": {
"type": "string"
},
"ProductCode": {
"type": "string"
},
"Name": {
"type": "string"
},
"Quantity": {
"type": "integer",
"format": "int32"
},
"TotalPrice": {
"type": "integer",
"format": "int32"
},
"UnitPrice": {
"type": "integer",
"format": "int32"
},
"ListPrice": {
"type": "integer",
"format": "int32"
},
"ServiceDate": {
"type": "string",
"format": "date"
},
"Description": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"IsDeleted": {
"type": "boolean"
}
},
"required": [
"OpportunityId",
"Quantity",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"IsDeleted"
]
},
"appc.salesforce_OpportunityPartner": {
"type": "object",
"properties": {
"OpportunityId": {
"type": "string"
},
"AccountToId": {
"type": "string"
},
"Role": {
"type": "string"
},
"IsPrimary": {
"type": "boolean"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"IsDeleted": {
"type": "boolean"
},
"ReversePartnerId": {
"type": "string"
}
},
"required": [
"OpportunityId",
"AccountToId",
"IsPrimary",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"IsDeleted"
]
},
"appc.salesforce_OpportunityShare": {
"type": "object",
"properties": {
"OpportunityId": {
"type": "string"
},
"UserOrGroupId": {
"type": "string"
},
"OpportunityAccessLevel": {
"type": "string"
},
"RowCause": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"IsDeleted": {
"type": "boolean"
}
},
"required": [
"OpportunityId",
"UserOrGroupId",
"OpportunityAccessLevel",
"LastModifiedDate",
"LastModifiedById",
"IsDeleted"
]
},
"appc.salesforce_OpportunityStage": {
"type": "object",
"properties": {
"MasterLabel": {
"type": "string"
},
"IsActive": {
"type": "boolean"
},
"SortOrder": {
"type": "integer",
"format": "int32"
},
"IsClosed": {
"type": "boolean"
},
"IsWon": {
"type": "boolean"
},
"ForecastCategory": {
"type": "string"
},
"ForecastCategoryName": {
"type": "string"
},
"DefaultProbability": {
"type": "integer",
"format": "int32"
},
"Description": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"IsActive",
"IsClosed",
"IsWon",
"ForecastCategory",
"ForecastCategoryName",
"CreatedById",
"CreatedDate",
"LastModifiedById",
"LastModifiedDate",
"SystemModstamp"
]
},
"appc.salesforce_Organization": {
"type": "object",
"properties": {
"Name": {
"type": "string"
},
"Division": {
"type": "string"
},
"Street": {
"type": "string"
},
"City": {
"type": "string"
},
"State": {
"type": "string"
},
"PostalCode": {
"type": "string"
},
"Country": {
"type": "string"
},
"Latitude": {
"type": "integer",
"format": "int32"
},
"Longitude": {
"type": "integer",
"format": "int32"
},
"Address": {
"type": "string"
},
"Phone": {
"type": "string"
},
"Fax": {
"type": "string"
},
"PrimaryContact": {
"type": "string"
},
"DefaultLocaleSidKey": {
"type": "string"
},
"LanguageLocaleKey": {
"type": "string"
},
"ReceivesInfoEmails": {
"type": "boolean"
},
"ReceivesAdminInfoEmails": {
"type": "boolean"
},
"PreferencesRequireOpportunityProducts": {
"type": "boolean"
},
"PreferencesTransactionSecurityPolicy": {
"type": "boolean"
},
"PreferencesTerminateOldestSession": {
"type": "boolean"
},
"FiscalYearStartMonth": {
"type": "integer",
"format": "int32"
},
"UsesStartDateAsFiscalYearName": {
"type": "boolean"
},
"DefaultAccountAccess": {
"type": "string"
},
"DefaultContactAccess": {
"type": "string"
},
"DefaultOpportunityAccess": {
"type": "string"
},
"DefaultLeadAccess": {
"type": "string"
},
"DefaultCaseAccess": {
"type": "string"
},
"DefaultCalendarAccess": {
"type": "string"
},
"DefaultPricebookAccess": {
"type": "string"
},
"DefaultCampaignAccess": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"ComplianceBccEmail": {
"type": "string"
},
"UiSkin": {
"type": "string"
},
"SignupCountryIsoCode": {
"type": "string"
},
"TrialExpirationDate": {
"type": "string",
"format": "date"
},
"OrganizationType": {
"type": "string"
},
"InstanceName": {
"type": "string"
},
"IsSandbox": {
"type": "boolean"
},
"WebToCaseDefaultOrigin": {
"type": "string"
},
"MonthlyPageViewsUsed": {
"type": "integer",
"format": "int32"
},
"MonthlyPageViewsEntitlement": {
"type": "integer",
"format": "int32"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
}
},
"required": [
"Name",
"DefaultLocaleSidKey",
"LanguageLocaleKey",
"ReceivesInfoEmails",
"ReceivesAdminInfoEmails",
"PreferencesRequireOpportunityProducts",
"PreferencesTransactionSecurityPolicy",
"PreferencesTerminateOldestSession",
"UsesStartDateAsFiscalYearName",
"SystemModstamp",
"IsSandbox",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById"
]
},
"appc.salesforce_OrgWideEmailAddress": {
"type": "object",
"properties": {
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"Address": {
"type": "string"
},
"DisplayName": {
"type": "string"
},
"IsAllowAllProfiles": {
"type": "boolean"
}
},
"required": [
"CreatedById",
"CreatedDate",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"Address",
"DisplayName",
"IsAllowAllProfiles"
]
},
"appc.salesforce_OwnedContentDocument": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"OwnerId": {
"type": "string"
},
"ContentDocumentId": {
"type": "string"
},
"Title": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"FileType": {
"type": "string"
},
"ContentSize": {
"type": "integer",
"format": "int32"
},
"FileExtension": {
"type": "string"
},
"ContentUrl": {
"type": "string"
},
"ExternalDataSourceName": {
"type": "string"
}
},
"required": [
"IsDeleted",
"OwnerId",
"Title",
"CreatedById",
"CreatedDate",
"LastModifiedById",
"LastModifiedDate"
]
},
"appc.salesforce_PackageLicense": {
"type": "object",
"properties": {
"Status": {
"type": "string"
},
"IsProvisioned": {
"type": "boolean"
},
"AllowedLicenses": {
"type": "integer",
"format": "int32"
},
"UsedLicenses": {
"type": "integer",
"format": "int32"
},
"ExpirationDate": {
"type": "string",
"format": "date"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"NamespacePrefix": {
"type": "string"
}
},
"required": [
"Status",
"IsProvisioned",
"AllowedLicenses",
"UsedLicenses",
"CreatedDate",
"LastModifiedDate",
"SystemModstamp",
"NamespacePrefix"
]
},
"appc.salesforce_Partner": {
"type": "object",
"properties": {
"OpportunityId": {
"type": "string"
},
"AccountFromId": {
"type": "string"
},
"AccountToId": {
"type": "string"
},
"Role": {
"type": "string"
},
"IsPrimary": {
"type": "boolean"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"IsDeleted": {
"type": "boolean"
},
"ReversePartnerId": {
"type": "string"
}
},
"required": [
"AccountToId",
"IsPrimary",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"IsDeleted"
]
},
"appc.salesforce_PartnerRole": {
"type": "object",
"properties": {
"MasterLabel": {
"type": "string"
},
"SortOrder": {
"type": "integer",
"format": "int32"
},
"ReverseRole": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"CreatedById",
"CreatedDate",
"LastModifiedById",
"LastModifiedDate",
"SystemModstamp"
]
},
"appc.salesforce_Period": {
"type": "object",
"properties": {
"FiscalYearSettingsId": {
"type": "string"
},
"Type": {
"type": "string"
},
"StartDate": {
"type": "string",
"format": "date"
},
"EndDate": {
"type": "string",
"format": "date"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"IsForecastPeriod": {
"type": "boolean"
},
"QuarterLabel": {
"type": "string"
},
"PeriodLabel": {
"type": "string"
},
"Number": {
"type": "integer",
"format": "int32"
}
},
"required": [
"StartDate",
"EndDate",
"SystemModstamp",
"IsForecastPeriod"
]
},
"appc.salesforce_PermissionSet": {
"type": "object",
"properties": {
"Name": {
"type": "string"
},
"Label": {
"type": "string"
},
"UserLicenseId": {
"type": "string"
},
"ProfileId": {
"type": "string"
},
"IsOwnedByProfile": {
"type": "boolean"
},
"PermissionsEmailSingle": {
"type": "boolean"
},
"PermissionsEmailMass": {
"type": "boolean"
},
"PermissionsEditTask": {
"type": "boolean"
},
"PermissionsEditEvent": {
"type": "boolean"
},
"PermissionsExportReport": {
"type": "boolean"
},
"PermissionsImportPersonal": {
"type": "boolean"
},
"PermissionsManageUsers": {
"type": "boolean"
},
"PermissionsEditPublicTemplates": {
"type": "boolean"
},
"PermissionsModifyAllData": {
"type": "boolean"
},
"PermissionsManageCases": {
"type": "boolean"
},
"PermissionsMassInlineEdit": {
"type": "boolean"
},
"PermissionsEditKnowledge": {
"type": "boolean"
},
"PermissionsManageKnowledge": {
"type": "boolean"
},
"PermissionsManageSolutions": {
"type": "boolean"
},
"PermissionsCustomizeApplication": {
"type": "boolean"
},
"PermissionsEditReadonlyFields": {
"type": "boolean"
},
"PermissionsRunReports": {
"type": "boolean"
},
"PermissionsViewSetup": {
"type": "boolean"
},
"PermissionsTransferAnyEntity": {
"type": "boolean"
},
"PermissionsNewReportBuilder": {
"type": "boolean"
},
"PermissionsActivateContract": {
"type": "boolean"
},
"PermissionsImportLeads": {
"type": "boolean"
},
"PermissionsManageLeads": {
"type": "boolean"
},
"PermissionsTransferAnyLead": {
"type": "boolean"
},
"PermissionsViewAllData": {
"type": "boolean"
},
"PermissionsEditPublicDocuments": {
"type": "boolean"
},
"PermissionsViewEncryptedData": {
"type": "boolean"
},
"PermissionsEditBrandTemplates": {
"type": "boolean"
},
"PermissionsEditHtmlTemplates": {
"type": "boolean"
},
"PermissionsChatterInternalUser": {
"type": "boolean"
},
"PermissionsManageDashboards": {
"type": "boolean"
},
"PermissionsDeleteActivatedContract": {
"type": "boolean"
},
"PermissionsChatterInviteExternalUsers": {
"type": "boolean"
},
"PermissionsSendSitRequests": {
"type": "boolean"
},
"PermissionsManageRemoteAccess": {
"type": "boolean"
},
"PermissionsCanUseNewDashboardBuilder": {
"type": "boolean"
},
"PermissionsManageCategories": {
"type": "boolean"
},
"PermissionsConvertLeads": {
"type": "boolean"
},
"PermissionsPasswordNeverExpires": {
"type": "boolean"
},
"PermissionsUseTeamReassignWizards": {
"type": "boolean"
},
"PermissionsInstallPackaging": {
"type": "boolean"
},
"PermissionsPublishPackaging": {
"type": "boolean"
},
"PermissionsChatterOwnGroups": {
"type": "boolean"
},
"PermissionsEditOppLineItemUnitPrice": {
"type": "boolean"
},
"PermissionsCreatePackaging": {
"type": "boolean"
},
"PermissionsBulkApiHardDelete": {
"type": "boolean"
},
"PermissionsSolutionImport": {
"type": "boolean"
},
"PermissionsManageCallCenters": {
"type": "boolean"
},
"PermissionsEditReports": {
"type": "boolean"
},
"PermissionsManageSynonyms": {
"type": "boolean"
},
"PermissionsViewContent": {
"type": "boolean"
},
"PermissionsManageEmailClientConfig": {
"type": "boolean"
},
"PermissionsEnableNotifications": {
"type": "boolean"
},
"PermissionsManageDataIntegrations": {
"type": "boolean"
},
"PermissionsDistributeFromPersWksp": {
"type": "boolean"
},
"PermissionsViewDataCategories": {
"type": "boolean"
},
"PermissionsManageDataCategories": {
"type": "boolean"
},
"PermissionsAuthorApex": {
"type": "boolean"
},
"PermissionsManageMobile": {
"type": "boolean"
},
"PermissionsApiEnabled": {
"type": "boolean"
},
"PermissionsManageCustomReportTypes": {
"type": "boolean"
},
"PermissionsEditCaseComments": {
"type": "boolean"
},
"PermissionsTransferAnyCase": {
"type": "boolean"
},
"PermissionsContentAdministrator": {
"type": "boolean"
},
"PermissionsCreateWorkspaces": {
"type": "boolean"
},
"PermissionsManageContentPermissions": {
"type": "boolean"
},
"PermissionsManageContentProperties": {
"type": "boolean"
},
"PermissionsManageContentTypes": {
"type": "boolean"
},
"PermissionsManageExchangeConfig": {
"type": "boolean"
},
"PermissionsManageAnalyticSnapshots": {
"type": "boolean"
},
"PermissionsScheduleReports": {
"type": "boolean"
},
"PermissionsManageBusinessHourHolidays": {
"type": "boolean"
},
"PermissionsManageDynamicDashboards": {
"type": "boolean"
},
"PermissionsCustomSidebarOnAllPages": {
"type": "boolean"
},
"PermissionsManageInteraction": {
"type": "boolean"
},
"PermissionsViewMyTeamsDashboards": {
"type": "boolean"
},
"PermissionsModerateChatter": {
"type": "boolean"
},
"PermissionsResetPasswords": {
"type": "boolean"
},
"PermissionsFlowUFLRequired": {
"type": "boolean"
},
"PermissionsCanInsertFeedSystemFields": {
"type": "boolean"
},
"PermissionsManageKnowledgeImportExport": {
"type": "boolean"
},
"PermissionsEmailTemplateManagement": {
"type": "boolean"
},
"PermissionsEmailAdministration": {
"type": "boolean"
},
"PermissionsManageChatterMessages": {
"type": "boolean"
},
"PermissionsAllowEmailIC": {
"type": "boolean"
},
"PermissionsChatterFileLink": {
"type": "boolean"
},
"PermissionsForceTwoFactor": {
"type": "boolean"
},
"PermissionsViewEventLogFiles": {
"type": "boolean"
},
"PermissionsManageNetworks": {
"type": "boolean"
},
"PermissionsManageAuthProviders": {
"type": "boolean"
},
"PermissionsRunFlow": {
"type": "boolean"
},
"PermissionsViewAllUsers": {
"type": "boolean"
},
"PermissionsAllowUniversalSearch": {
"type": "boolean"
},
"PermissionsConnectOrgToEnvironmentHub": {
"type": "boolean"
},
"PermissionsCreateCustomizeFilters": {
"type": "boolean"
},
"PermissionsGovernNetworks": {
"type": "boolean"
},
"PermissionsSalesConsole": {
"type": "boolean"
},
"PermissionsTwoFactorApi": {
"type": "boolean"
},
"PermissionsDeleteTopics": {
"type": "boolean"
},
"PermissionsEditTopics": {
"type": "boolean"
},
"PermissionsCreateTopics": {
"type": "boolean"
},
"PermissionsAssignTopics": {
"type": "boolean"
},
"PermissionsIdentityEnabled": {
"type": "boolean"
},
"PermissionsIdentityConnect": {
"type": "boolean"
},
"PermissionsAllowViewKnowledge": {
"type": "boolean"
},
"PermissionsManageSearchPromotionRules": {
"type": "boolean"
},
"PermissionsCustomMobileAppsAccess": {
"type": "boolean"
},
"PermissionsViewHelpLink": {
"type": "boolean"
},
"PermissionsManageProfilesPermissionsets": {
"type": "boolean"
},
"PermissionsAssignPermissionSets": {
"type": "boolean"
},
"PermissionsManageRoles": {
"type": "boolean"
},
"PermissionsManageIpAddresses": {
"type": "boolean"
},
"PermissionsManageSharing": {
"type": "boolean"
},
"PermissionsManageInternalUsers": {
"type": "boolean"
},
"PermissionsManagePasswordPolicies": {
"type": "boolean"
},
"PermissionsManageLoginAccessPolicies": {
"type": "boolean"
},
"PermissionsManageCustomPermissions": {
"type": "boolean"
},
"PermissionsManageUnlistedGroups": {
"type": "boolean"
},
"PermissionsModifySecureAgents": {
"type": "boolean"
},
"PermissionsManageTwoFactor": {
"type": "boolean"
},
"PermissionsChatterForSharePoint": {
"type": "boolean"
},
"PermissionsLightningExperienceUser": {
"type": "boolean"
},
"PermissionsConfigCustomRecs": {
"type": "boolean"
},
"PermissionsSubmitMacrosAllowed": {
"type": "boolean"
},
"PermissionsBulkMacrosAllowed": {
"type": "boolean"
},
"PermissionsShareInternalArticles": {
"type": "boolean"
},
"PermissionsChatterEditOwnPost": {
"type": "boolean"
},
"PermissionsChatterEditOwnRecordPost": {
"type": "boolean"
},
"PermissionsMergeTopics": {
"type": "boolean"
},
"Description": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"NamespacePrefix": {
"type": "string"
}
},
"required": [
"Name",
"Label",
"IsOwnedByProfile",
"PermissionsEmailSingle",
"PermissionsEmailMass",
"PermissionsEditTask",
"PermissionsEditEvent",
"PermissionsExportReport",
"PermissionsImportPersonal",
"PermissionsManageUsers",
"PermissionsEditPublicTemplates",
"PermissionsModifyAllData",
"PermissionsManageCases",
"PermissionsMassInlineEdit",
"PermissionsEditKnowledge",
"PermissionsManageKnowledge",
"PermissionsManageSolutions",
"PermissionsCustomizeApplication",
"PermissionsEditReadonlyFields",
"PermissionsRunReports",
"PermissionsViewSetup",
"PermissionsTransferAnyEntity",
"PermissionsNewReportBuilder",
"PermissionsActivateContract",
"PermissionsImportLeads",
"PermissionsManageLeads",
"PermissionsTransferAnyLead",
"PermissionsViewAllData",
"PermissionsEditPublicDocuments",
"PermissionsViewEncryptedData",
"PermissionsEditBrandTemplates",
"PermissionsEditHtmlTemplates",
"PermissionsChatterInternalUser",
"PermissionsManageDashboards",
"PermissionsDeleteActivatedContract",
"PermissionsChatterInviteExternalUsers",
"PermissionsSendSitRequests",
"PermissionsManageRemoteAccess",
"PermissionsCanUseNewDashboardBuilder",
"PermissionsManageCategories",
"PermissionsConvertLeads",
"PermissionsPasswordNeverExpires",
"PermissionsUseTeamReassignWizards",
"PermissionsInstallPackaging",
"PermissionsPublishPackaging",
"PermissionsChatterOwnGroups",
"PermissionsEditOppLineItemUnitPrice",
"PermissionsCreatePackaging",
"PermissionsBulkApiHardDelete",
"PermissionsSolutionImport",
"PermissionsManageCallCenters",
"PermissionsEditReports",
"PermissionsManageSynonyms",
"PermissionsViewContent",
"PermissionsManageEmailClientConfig",
"PermissionsEnableNotifications",
"PermissionsManageDataIntegrations",
"PermissionsDistributeFromPersWksp",
"PermissionsViewDataCategories",
"PermissionsManageDataCategories",
"PermissionsAuthorApex",
"PermissionsManageMobile",
"PermissionsApiEnabled",
"PermissionsManageCustomReportTypes",
"PermissionsEditCaseComments",
"PermissionsTransferAnyCase",
"PermissionsContentAdministrator",
"PermissionsCreateWorkspaces",
"PermissionsManageContentPermissions",
"PermissionsManageContentProperties",
"PermissionsManageContentTypes",
"PermissionsManageExchangeConfig",
"PermissionsManageAnalyticSnapshots",
"PermissionsScheduleReports",
"PermissionsManageBusinessHourHolidays",
"PermissionsManageDynamicDashboards",
"PermissionsCustomSidebarOnAllPages",
"PermissionsManageInteraction",
"PermissionsViewMyTeamsDashboards",
"PermissionsModerateChatter",
"PermissionsResetPasswords",
"PermissionsFlowUFLRequired",
"PermissionsCanInsertFeedSystemFields",
"PermissionsManageKnowledgeImportExport",
"PermissionsEmailTemplateManagement",
"PermissionsEmailAdministration",
"PermissionsManageChatterMessages",
"PermissionsAllowEmailIC",
"PermissionsChatterFileLink",
"PermissionsForceTwoFactor",
"PermissionsViewEventLogFiles",
"PermissionsManageNetworks",
"PermissionsManageAuthProviders",
"PermissionsRunFlow",
"PermissionsViewAllUsers",
"PermissionsAllowUniversalSearch",
"PermissionsConnectOrgToEnvironmentHub",
"PermissionsCreateCustomizeFilters",
"PermissionsGovernNetworks",
"PermissionsSalesConsole",
"PermissionsTwoFactorApi",
"PermissionsDeleteTopics",
"PermissionsEditTopics",
"PermissionsCreateTopics",
"PermissionsAssignTopics",
"PermissionsIdentityEnabled",
"PermissionsIdentityConnect",
"PermissionsAllowViewKnowledge",
"PermissionsManageSearchPromotionRules",
"PermissionsCustomMobileAppsAccess",
"PermissionsViewHelpLink",
"PermissionsManageProfilesPermissionsets",
"PermissionsAssignPermissionSets",
"PermissionsManageRoles",
"PermissionsManageIpAddresses",
"PermissionsManageSharing",
"PermissionsManageInternalUsers",
"PermissionsManagePasswordPolicies",
"PermissionsManageLoginAccessPolicies",
"PermissionsManageCustomPermissions",
"PermissionsManageUnlistedGroups",
"PermissionsModifySecureAgents",
"PermissionsManageTwoFactor",
"PermissionsChatterForSharePoint",
"PermissionsLightningExperienceUser",
"PermissionsConfigCustomRecs",
"PermissionsSubmitMacrosAllowed",
"PermissionsBulkMacrosAllowed",
"PermissionsShareInternalArticles",
"PermissionsChatterEditOwnPost",
"PermissionsChatterEditOwnRecordPost",
"PermissionsMergeTopics",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp"
]
},
"appc.salesforce_PermissionSetAssignment": {
"type": "object",
"properties": {
"PermissionSetId": {
"type": "string"
},
"AssigneeId": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"PermissionSetId",
"AssigneeId",
"SystemModstamp"
]
},
"appc.salesforce_PermissionSetLicense": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"DeveloperName": {
"type": "string"
},
"Language": {
"type": "string"
},
"MasterLabel": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"PermissionSetLicenseKey": {
"type": "string"
},
"TotalLicenses": {
"type": "integer",
"format": "int32"
},
"Status": {
"type": "string"
},
"ExpirationDate": {
"type": "string",
"format": "date"
},
"MaximumPermissionsEmailSingle": {
"type": "boolean"
},
"MaximumPermissionsEmailMass": {
"type": "boolean"
},
"MaximumPermissionsEditTask": {
"type": "boolean"
},
"MaximumPermissionsEditEvent": {
"type": "boolean"
},
"MaximumPermissionsExportReport": {
"type": "boolean"
},
"MaximumPermissionsImportPersonal": {
"type": "boolean"
},
"MaximumPermissionsManageUsers": {
"type": "boolean"
},
"MaximumPermissionsEditPublicTemplates": {
"type": "boolean"
},
"MaximumPermissionsModifyAllData": {
"type": "boolean"
},
"MaximumPermissionsManageCases": {
"type": "boolean"
},
"MaximumPermissionsMassInlineEdit": {
"type": "boolean"
},
"MaximumPermissionsEditKnowledge": {
"type": "boolean"
},
"MaximumPermissionsManageKnowledge": {
"type": "boolean"
},
"MaximumPermissionsManageSolutions": {
"type": "boolean"
},
"MaximumPermissionsCustomizeApplication": {
"type": "boolean"
},
"MaximumPermissionsEditReadonlyFields": {
"type": "boolean"
},
"MaximumPermissionsRunReports": {
"type": "boolean"
},
"MaximumPermissionsViewSetup": {
"type": "boolean"
},
"MaximumPermissionsTransferAnyEntity": {
"type": "boolean"
},
"MaximumPermissionsNewReportBuilder": {
"type": "boolean"
},
"MaximumPermissionsActivateContract": {
"type": "boolean"
},
"MaximumPermissionsImportLeads": {
"type": "boolean"
},
"MaximumPermissionsManageLeads": {
"type": "boolean"
},
"MaximumPermissionsTransferAnyLead": {
"type": "boolean"
},
"MaximumPermissionsViewAllData": {
"type": "boolean"
},
"MaximumPermissionsEditPublicDocuments": {
"type": "boolean"
},
"MaximumPermissionsViewEncryptedData": {
"type": "boolean"
},
"MaximumPermissionsEditBrandTemplates": {
"type": "boolean"
},
"MaximumPermissionsEditHtmlTemplates": {
"type": "boolean"
},
"MaximumPermissionsChatterInternalUser": {
"type": "boolean"
},
"MaximumPermissionsManageDashboards": {
"type": "boolean"
},
"MaximumPermissionsDeleteActivatedContract": {
"type": "boolean"
},
"MaximumPermissionsChatterInviteExternalUsers": {
"type": "boolean"
},
"MaximumPermissionsSendSitRequests": {
"type": "boolean"
},
"MaximumPermissionsManageRemoteAccess": {
"type": "boolean"
},
"MaximumPermissionsCanUseNewDashboardBuilder": {
"type": "boolean"
},
"MaximumPermissionsManageCategories": {
"type": "boolean"
},
"MaximumPermissionsConvertLeads": {
"type": "boolean"
},
"MaximumPermissionsPasswordNeverExpires": {
"type": "boolean"
},
"MaximumPermissionsUseTeamReassignWizards": {
"type": "boolean"
},
"MaximumPermissionsInstallPackaging": {
"type": "boolean"
},
"MaximumPermissionsPublishPackaging": {
"type": "boolean"
},
"MaximumPermissionsChatterOwnGroups": {
"type": "boolean"
},
"MaximumPermissionsEditOppLineItemUnitPrice": {
"type": "boolean"
},
"MaximumPermissionsCreatePackaging": {
"type": "boolean"
},
"MaximumPermissionsBulkApiHardDelete": {
"type": "boolean"
},
"MaximumPermissionsSolutionImport": {
"type": "boolean"
},
"MaximumPermissionsManageCallCenters": {
"type": "boolean"
},
"MaximumPermissionsEditReports": {
"type": "boolean"
},
"MaximumPermissionsManageSynonyms": {
"type": "boolean"
},
"MaximumPermissionsViewContent": {
"type": "boolean"
},
"MaximumPermissionsManageEmailClientConfig": {
"type": "boolean"
},
"MaximumPermissionsEnableNotifications": {
"type": "boolean"
},
"MaximumPermissionsManageDataIntegrations": {
"type": "boolean"
},
"MaximumPermissionsDistributeFromPersWksp": {
"type": "boolean"
},
"MaximumPermissionsViewDataCategories": {
"type": "boolean"
},
"MaximumPermissionsManageDataCategories": {
"type": "boolean"
},
"MaximumPermissionsAuthorApex": {
"type": "boolean"
},
"MaximumPermissionsManageMobile": {
"type": "boolean"
},
"MaximumPermissionsApiEnabled": {
"type": "boolean"
},
"MaximumPermissionsManageCustomReportTypes": {
"type": "boolean"
},
"MaximumPermissionsEditCaseComments": {
"type": "boolean"
},
"MaximumPermissionsTransferAnyCase": {
"type": "boolean"
},
"MaximumPermissionsContentAdministrator": {
"type": "boolean"
},
"MaximumPermissionsCreateWorkspaces": {
"type": "boolean"
},
"MaximumPermissionsManageContentPermissions": {
"type": "boolean"
},
"MaximumPermissionsManageContentProperties": {
"type": "boolean"
},
"MaximumPermissionsManageContentTypes": {
"type": "boolean"
},
"MaximumPermissionsManageExchangeConfig": {
"type": "boolean"
},
"MaximumPermissionsManageAnalyticSnapshots": {
"type": "boolean"
},
"MaximumPermissionsScheduleReports": {
"type": "boolean"
},
"MaximumPermissionsManageBusinessHourHolidays": {
"type": "boolean"
},
"MaximumPermissionsManageDynamicDashboards": {
"type": "boolean"
},
"MaximumPermissionsCustomSidebarOnAllPages": {
"type": "boolean"
},
"MaximumPermissionsManageInteraction": {
"type": "boolean"
},
"MaximumPermissionsViewMyTeamsDashboards": {
"type": "boolean"
},
"MaximumPermissionsModerateChatter": {
"type": "boolean"
},
"MaximumPermissionsResetPasswords": {
"type": "boolean"
},
"MaximumPermissionsFlowUFLRequired": {
"type": "boolean"
},
"MaximumPermissionsCanInsertFeedSystemFields": {
"type": "boolean"
},
"MaximumPermissionsManageKnowledgeImportExport": {
"type": "boolean"
},
"MaximumPermissionsEmailTemplateManagement": {
"type": "boolean"
},
"MaximumPermissionsEmailAdministration": {
"type": "boolean"
},
"MaximumPermissionsManageChatterMessages": {
"type": "boolean"
},
"MaximumPermissionsAllowEmailIC": {
"type": "boolean"
},
"MaximumPermissionsChatterFileLink": {
"type": "boolean"
},
"MaximumPermissionsForceTwoFactor": {
"type": "boolean"
},
"MaximumPermissionsViewEventLogFiles": {
"type": "boolean"
},
"MaximumPermissionsManageNetworks": {
"type": "boolean"
},
"MaximumPermissionsManageAuthProviders": {
"type": "boolean"
},
"MaximumPermissionsRunFlow": {
"type": "boolean"
},
"MaximumPermissionsViewAllUsers": {
"type": "boolean"
},
"MaximumPermissionsAllowUniversalSearch": {
"type": "boolean"
},
"MaximumPermissionsConnectOrgToEnvironmentHub": {
"type": "boolean"
},
"MaximumPermissionsCreateCustomizeFilters": {
"type": "boolean"
},
"MaximumPermissionsGovernNetworks": {
"type": "boolean"
},
"MaximumPermissionsSalesConsole": {
"type": "boolean"
},
"MaximumPermissionsTwoFactorApi": {
"type": "boolean"
},
"MaximumPermissionsDeleteTopics": {
"type": "boolean"
},
"MaximumPermissionsEditTopics": {
"type": "boolean"
},
"MaximumPermissionsCreateTopics": {
"type": "boolean"
},
"MaximumPermissionsAssignTopics": {
"type": "boolean"
},
"MaximumPermissionsIdentityEnabled": {
"type": "boolean"
},
"MaximumPermissionsIdentityConnect": {
"type": "boolean"
},
"MaximumPermissionsAllowViewKnowledge": {
"type": "boolean"
},
"MaximumPermissionsManageSearchPromotionRules": {
"type": "boolean"
},
"MaximumPermissionsCustomMobileAppsAccess": {
"type": "boolean"
},
"MaximumPermissionsViewHelpLink": {
"type": "boolean"
},
"MaximumPermissionsManageProfilesPermissionsets": {
"type": "boolean"
},
"MaximumPermissionsAssignPermissionSets": {
"type": "boolean"
},
"MaximumPermissionsManageRoles": {
"type": "boolean"
},
"MaximumPermissionsManageIpAddresses": {
"type": "boolean"
},
"MaximumPermissionsManageSharing": {
"type": "boolean"
},
"MaximumPermissionsManageInternalUsers": {
"type": "boolean"
},
"MaximumPermissionsManagePasswordPolicies": {
"type": "boolean"
},
"MaximumPermissionsManageLoginAccessPolicies": {
"type": "boolean"
},
"MaximumPermissionsManageCustomPermissions": {
"type": "boolean"
},
"MaximumPermissionsManageUnlistedGroups": {
"type": "boolean"
},
"MaximumPermissionsModifySecureAgents": {
"type": "boolean"
},
"MaximumPermissionsManageTwoFactor": {
"type": "boolean"
},
"MaximumPermissionsChatterForSharePoint": {
"type": "boolean"
},
"MaximumPermissionsLightningExperienceUser": {
"type": "boolean"
},
"MaximumPermissionsConfigCustomRecs": {
"type": "boolean"
},
"MaximumPermissionsSubmitMacrosAllowed": {
"type": "boolean"
},
"MaximumPermissionsBulkMacrosAllowed": {
"type": "boolean"
},
"MaximumPermissionsShareInternalArticles": {
"type": "boolean"
},
"MaximumPermissionsChatterEditOwnPost": {
"type": "boolean"
},
"MaximumPermissionsChatterEditOwnRecordPost": {
"type": "boolean"
},
"MaximumPermissionsMergeTopics": {
"type": "boolean"
},
"UsedLicenses": {
"type": "integer",
"format": "int32"
}
},
"required": [
"IsDeleted",
"DeveloperName",
"Language",
"MasterLabel",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"PermissionSetLicenseKey",
"TotalLicenses",
"Status",
"MaximumPermissionsEmailSingle",
"MaximumPermissionsEmailMass",
"MaximumPermissionsEditTask",
"MaximumPermissionsEditEvent",
"MaximumPermissionsExportReport",
"MaximumPermissionsImportPersonal",
"MaximumPermissionsManageUsers",
"MaximumPermissionsEditPublicTemplates",
"MaximumPermissionsModifyAllData",
"MaximumPermissionsManageCases",
"MaximumPermissionsMassInlineEdit",
"MaximumPermissionsEditKnowledge",
"MaximumPermissionsManageKnowledge",
"MaximumPermissionsManageSolutions",
"MaximumPermissionsCustomizeApplication",
"MaximumPermissionsEditReadonlyFields",
"MaximumPermissionsRunReports",
"MaximumPermissionsViewSetup",
"MaximumPermissionsTransferAnyEntity",
"MaximumPermissionsNewReportBuilder",
"MaximumPermissionsActivateContract",
"MaximumPermissionsImportLeads",
"MaximumPermissionsManageLeads",
"MaximumPermissionsTransferAnyLead",
"MaximumPermissionsViewAllData",
"MaximumPermissionsEditPublicDocuments",
"MaximumPermissionsViewEncryptedData",
"MaximumPermissionsEditBrandTemplates",
"MaximumPermissionsEditHtmlTemplates",
"MaximumPermissionsChatterInternalUser",
"MaximumPermissionsManageDashboards",
"MaximumPermissionsDeleteActivatedContract",
"MaximumPermissionsChatterInviteExternalUsers",
"MaximumPermissionsSendSitRequests",
"MaximumPermissionsManageRemoteAccess",
"MaximumPermissionsCanUseNewDashboardBuilder",
"MaximumPermissionsManageCategories",
"MaximumPermissionsConvertLeads",
"MaximumPermissionsPasswordNeverExpires",
"MaximumPermissionsUseTeamReassignWizards",
"MaximumPermissionsInstallPackaging",
"MaximumPermissionsPublishPackaging",
"MaximumPermissionsChatterOwnGroups",
"MaximumPermissionsEditOppLineItemUnitPrice",
"MaximumPermissionsCreatePackaging",
"MaximumPermissionsBulkApiHardDelete",
"MaximumPermissionsSolutionImport",
"MaximumPermissionsManageCallCenters",
"MaximumPermissionsEditReports",
"MaximumPermissionsManageSynonyms",
"MaximumPermissionsViewContent",
"MaximumPermissionsManageEmailClientConfig",
"MaximumPermissionsEnableNotifications",
"MaximumPermissionsManageDataIntegrations",
"MaximumPermissionsDistributeFromPersWksp",
"MaximumPermissionsViewDataCategories",
"MaximumPermissionsManageDataCategories",
"MaximumPermissionsAuthorApex",
"MaximumPermissionsManageMobile",
"MaximumPermissionsApiEnabled",
"MaximumPermissionsManageCustomReportTypes",
"MaximumPermissionsEditCaseComments",
"MaximumPermissionsTransferAnyCase",
"MaximumPermissionsContentAdministrator",
"MaximumPermissionsCreateWorkspaces",
"MaximumPermissionsManageContentPermissions",
"MaximumPermissionsManageContentProperties",
"MaximumPermissionsManageContentTypes",
"MaximumPermissionsManageExchangeConfig",
"MaximumPermissionsManageAnalyticSnapshots",
"MaximumPermissionsScheduleReports",
"MaximumPermissionsManageBusinessHourHolidays",
"MaximumPermissionsManageDynamicDashboards",
"MaximumPermissionsCustomSidebarOnAllPages",
"MaximumPermissionsManageInteraction",
"MaximumPermissionsViewMyTeamsDashboards",
"MaximumPermissionsModerateChatter",
"MaximumPermissionsResetPasswords",
"MaximumPermissionsFlowUFLRequired",
"MaximumPermissionsCanInsertFeedSystemFields",
"MaximumPermissionsManageKnowledgeImportExport",
"MaximumPermissionsEmailTemplateManagement",
"MaximumPermissionsEmailAdministration",
"MaximumPermissionsManageChatterMessages",
"MaximumPermissionsAllowEmailIC",
"MaximumPermissionsChatterFileLink",
"MaximumPermissionsForceTwoFactor",
"MaximumPermissionsViewEventLogFiles",
"MaximumPermissionsManageNetworks",
"MaximumPermissionsManageAuthProviders",
"MaximumPermissionsRunFlow",
"MaximumPermissionsViewAllUsers",
"MaximumPermissionsAllowUniversalSearch",
"MaximumPermissionsConnectOrgToEnvironmentHub",
"MaximumPermissionsCreateCustomizeFilters",
"MaximumPermissionsGovernNetworks",
"MaximumPermissionsSalesConsole",
"MaximumPermissionsTwoFactorApi",
"MaximumPermissionsDeleteTopics",
"MaximumPermissionsEditTopics",
"MaximumPermissionsCreateTopics",
"MaximumPermissionsAssignTopics",
"MaximumPermissionsIdentityEnabled",
"MaximumPermissionsIdentityConnect",
"MaximumPermissionsAllowViewKnowledge",
"MaximumPermissionsManageSearchPromotionRules",
"MaximumPermissionsCustomMobileAppsAccess",
"MaximumPermissionsViewHelpLink",
"MaximumPermissionsManageProfilesPermissionsets",
"MaximumPermissionsAssignPermissionSets",
"MaximumPermissionsManageRoles",
"MaximumPermissionsManageIpAddresses",
"MaximumPermissionsManageSharing",
"MaximumPermissionsManageInternalUsers",
"MaximumPermissionsManagePasswordPolicies",
"MaximumPermissionsManageLoginAccessPolicies",
"MaximumPermissionsManageCustomPermissions",
"MaximumPermissionsManageUnlistedGroups",
"MaximumPermissionsModifySecureAgents",
"MaximumPermissionsManageTwoFactor",
"MaximumPermissionsChatterForSharePoint",
"MaximumPermissionsLightningExperienceUser",
"MaximumPermissionsConfigCustomRecs",
"MaximumPermissionsSubmitMacrosAllowed",
"MaximumPermissionsBulkMacrosAllowed",
"MaximumPermissionsShareInternalArticles",
"MaximumPermissionsChatterEditOwnPost",
"MaximumPermissionsChatterEditOwnRecordPost",
"MaximumPermissionsMergeTopics",
"UsedLicenses"
]
},
"appc.salesforce_PermissionSetLicenseAssign": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"PermissionSetLicenseId": {
"type": "string"
},
"AssigneeId": {
"type": "string"
}
},
"required": [
"IsDeleted",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"PermissionSetLicenseId",
"AssigneeId"
]
},
"appc.salesforce_PicklistValueInfo": {
"type": "object",
"properties": {
"DurableId": {
"type": "string"
},
"Value": {
"type": "string"
},
"Label": {
"type": "string"
},
"IsDefaultValue": {
"type": "boolean"
},
"IsActive": {
"type": "boolean"
},
"ValidFor": {
"type": "string"
},
"EntityParticleId": {
"type": "string"
}
},
"required": [
"IsDefaultValue",
"IsActive"
]
},
"appc.salesforce_PlatformAction": {
"type": "object",
"properties": {
"ExternalId": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"Label": {
"type": "string"
},
"Type": {
"type": "string"
},
"Subtype": {
"type": "string"
},
"ApiName": {
"type": "string"
},
"ActionTargetUrl": {
"type": "string"
},
"ActionTargetType": {
"type": "string"
},
"ConfirmationMessage": {
"type": "string"
},
"GroupId": {
"type": "string"
},
"IsGroupDefault": {
"type": "boolean"
},
"Category": {
"type": "string"
},
"InvocationStatus": {
"type": "string"
},
"InvokedByUserId": {
"type": "string"
},
"SourceEntity": {
"type": "string"
},
"ActionListContext": {
"type": "string"
},
"DeviceFormat": {
"type": "string"
},
"IconContentType": {
"type": "string"
},
"IconHeight": {
"type": "integer",
"format": "int32"
},
"IconWidth": {
"type": "integer",
"format": "int32"
},
"IconUrl": {
"type": "string"
},
"PrimaryColor": {
"type": "string"
},
"RelatedSourceEntity": {
"type": "string"
}
},
"required": [
"Label",
"Type",
"IsGroupDefault",
"SourceEntity"
]
},
"appc.salesforce_Pricebook2": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"Name": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"LastViewedDate": {
"type": "string",
"format": "date"
},
"LastReferencedDate": {
"type": "string",
"format": "date"
},
"IsActive": {
"type": "boolean"
},
"Description": {
"type": "string"
},
"IsStandard": {
"type": "boolean"
}
},
"required": [
"IsDeleted",
"Name",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"IsActive",
"IsStandard"
]
},
"appc.salesforce_Pricebook2History": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"Pricebook2Id": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"Field": {
"type": "string"
},
"OldValue": {
"type": "string"
},
"NewValue": {
"type": "string"
}
},
"required": [
"IsDeleted",
"Pricebook2Id",
"CreatedById",
"CreatedDate",
"Field"
]
},
"appc.salesforce_PricebookEntry": {
"type": "object",
"properties": {
"Name": {
"type": "string"
},
"Pricebook2Id": {
"type": "string"
},
"Product2Id": {
"type": "string"
},
"UnitPrice": {
"type": "integer",
"format": "int32"
},
"IsActive": {
"type": "boolean"
},
"UseStandardPrice": {
"type": "boolean"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"ProductCode": {
"type": "string"
},
"IsDeleted": {
"type": "boolean"
}
},
"required": [
"Pricebook2Id",
"Product2Id",
"UnitPrice",
"IsActive",
"UseStandardPrice",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"IsDeleted"
]
},
"appc.salesforce_ProcessDefinition": {
"type": "object",
"properties": {
"Name": {
"type": "string"
},
"DeveloperName": {
"type": "string"
},
"Type": {
"type": "string"
},
"Description": {
"type": "string"
},
"TableEnumOrId": {
"type": "string"
},
"LockType": {
"type": "string"
},
"State": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"Name",
"DeveloperName",
"Type",
"TableEnumOrId",
"LockType",
"State",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp"
]
},
"appc.salesforce_ProcessInstance": {
"type": "object",
"properties": {
"ProcessDefinitionId": {
"type": "string"
},
"TargetObjectId": {
"type": "string"
},
"Status": {
"type": "string"
},
"CompletedDate": {
"type": "string",
"format": "date"
},
"LastActorId": {
"type": "string"
},
"ElapsedTimeInDays": {
"type": "integer",
"format": "int32"
},
"ElapsedTimeInHours": {
"type": "integer",
"format": "int32"
},
"ElapsedTimeInMinutes": {
"type": "integer",
"format": "int32"
},
"SubmittedById": {
"type": "string"
},
"IsDeleted": {
"type": "boolean"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"ProcessDefinitionId",
"TargetObjectId",
"Status",
"IsDeleted",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp"
]
},
"appc.salesforce_ProcessInstanceHistory": {
"type": "object",
"properties": {
"IsPending": {
"type": "boolean"
},
"ProcessInstanceId": {
"type": "string"
},
"TargetObjectId": {
"type": "string"
},
"StepStatus": {
"type": "string"
},
"OriginalActorId": {
"type": "string"
},
"ActorId": {
"type": "string"
},
"RemindersSent": {
"type": "integer",
"format": "int32"
},
"ElapsedTimeInDays": {
"type": "integer",
"format": "int32"
},
"ElapsedTimeInHours": {
"type": "integer",
"format": "int32"
},
"ElapsedTimeInMinutes": {
"type": "integer",
"format": "int32"
},
"Comments": {
"type": "string"
},
"IsDeleted": {
"type": "boolean"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"IsPending",
"ProcessInstanceId",
"OriginalActorId",
"ActorId",
"IsDeleted",
"CreatedDate",
"CreatedById",
"SystemModstamp"
]
},
"appc.salesforce_ProcessInstanceNode": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"ProcessInstanceId": {
"type": "string"
},
"ProcessNodeId": {
"type": "string"
},
"NodeStatus": {
"type": "string"
},
"CompletedDate": {
"type": "string",
"format": "date"
},
"LastActorId": {
"type": "string"
},
"ProcessNodeName": {
"type": "string"
},
"ElapsedTimeInDays": {
"type": "integer",
"format": "int32"
},
"ElapsedTimeInHours": {
"type": "integer",
"format": "int32"
},
"ElapsedTimeInMinutes": {
"type": "integer",
"format": "int32"
}
},
"required": [
"IsDeleted",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"ProcessInstanceId",
"ProcessNodeId"
]
},
"appc.salesforce_ProcessInstanceStep": {
"type": "object",
"properties": {
"ProcessInstanceId": {
"type": "string"
},
"StepStatus": {
"type": "string"
},
"OriginalActorId": {
"type": "string"
},
"ActorId": {
"type": "string"
},
"Comments": {
"type": "string"
},
"StepNodeId": {
"type": "string"
},
"ElapsedTimeInDays": {
"type": "integer",
"format": "int32"
},
"ElapsedTimeInHours": {
"type": "integer",
"format": "int32"
},
"ElapsedTimeInMinutes": {
"type": "integer",
"format": "int32"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"ProcessInstanceId",
"OriginalActorId",
"ActorId",
"CreatedDate",
"CreatedById",
"SystemModstamp"
]
},
"appc.salesforce_ProcessInstanceWorkitem": {
"type": "object",
"properties": {
"ProcessInstanceId": {
"type": "string"
},
"OriginalActorId": {
"type": "string"
},
"ActorId": {
"type": "string"
},
"ElapsedTimeInDays": {
"type": "integer",
"format": "int32"
},
"ElapsedTimeInHours": {
"type": "integer",
"format": "int32"
},
"ElapsedTimeInMinutes": {
"type": "integer",
"format": "int32"
},
"IsDeleted": {
"type": "boolean"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"ProcessInstanceId",
"OriginalActorId",
"ActorId",
"IsDeleted",
"CreatedDate",
"CreatedById",
"SystemModstamp"
]
},
"appc.salesforce_ProcessNode": {
"type": "object",
"properties": {
"Name": {
"type": "string"
},
"DeveloperName": {
"type": "string"
},
"ProcessDefinitionId": {
"type": "string"
},
"Description": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"Name",
"DeveloperName",
"ProcessDefinitionId",
"SystemModstamp"
]
},
"appc.salesforce_Product2": {
"type": "object",
"properties": {
"Name": {
"type": "string"
},
"ProductCode": {
"type": "string"
},
"Description": {
"type": "string"
},
"IsActive": {
"type": "boolean"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"Family": {
"type": "string"
},
"IsDeleted": {
"type": "boolean"
},
"LastViewedDate": {
"type": "string",
"format": "date"
},
"LastReferencedDate": {
"type": "string",
"format": "date"
}
},
"required": [
"Name",
"IsActive",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"IsDeleted"
]
},
"appc.salesforce_Product2Feed": {
"type": "object",
"properties": {
"ParentId": {
"type": "string"
},
"Type": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"IsDeleted": {
"type": "boolean"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"CommentCount": {
"type": "integer",
"format": "int32"
},
"LikeCount": {
"type": "integer",
"format": "int32"
},
"Title": {
"type": "string"
},
"Body": {
"type": "string"
},
"LinkUrl": {
"type": "string"
},
"RelatedRecordId": {
"type": "string"
},
"ContentData": {
"type": "integer",
"format": "int32"
},
"ContentFileName": {
"type": "string"
},
"ContentDescription": {
"type": "string"
},
"ContentType": {
"type": "string"
},
"ContentSize": {
"type": "integer",
"format": "int32"
},
"InsertedById": {
"type": "string"
}
},
"required": [
"ParentId",
"CreatedById",
"CreatedDate",
"IsDeleted",
"LastModifiedDate",
"SystemModstamp",
"CommentCount",
"LikeCount"
]
},
"appc.salesforce_Product2History": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"Product2Id": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"Field": {
"type": "string"
},
"OldValue": {
"type": "string"
},
"NewValue": {
"type": "string"
}
},
"required": [
"IsDeleted",
"Product2Id",
"CreatedById",
"CreatedDate",
"Field"
]
},
"appc.salesforce_Profile": {
"type": "object",
"properties": {
"Name": {
"type": "string"
},
"PermissionsEmailSingle": {
"type": "boolean"
},
"PermissionsEmailMass": {
"type": "boolean"
},
"PermissionsEditTask": {
"type": "boolean"
},
"PermissionsEditEvent": {
"type": "boolean"
},
"PermissionsExportReport": {
"type": "boolean"
},
"PermissionsImportPersonal": {
"type": "boolean"
},
"PermissionsManageUsers": {
"type": "boolean"
},
"PermissionsEditPublicTemplates": {
"type": "boolean"
},
"PermissionsModifyAllData": {
"type": "boolean"
},
"PermissionsManageCases": {
"type": "boolean"
},
"PermissionsMassInlineEdit": {
"type": "boolean"
},
"PermissionsEditKnowledge": {
"type": "boolean"
},
"PermissionsManageKnowledge": {
"type": "boolean"
},
"PermissionsManageSolutions": {
"type": "boolean"
},
"PermissionsCustomizeApplication": {
"type": "boolean"
},
"PermissionsEditReadonlyFields": {
"type": "boolean"
},
"PermissionsRunReports": {
"type": "boolean"
},
"PermissionsViewSetup": {
"type": "boolean"
},
"PermissionsTransferAnyEntity": {
"type": "boolean"
},
"PermissionsNewReportBuilder": {
"type": "boolean"
},
"PermissionsActivateContract": {
"type": "boolean"
},
"PermissionsImportLeads": {
"type": "boolean"
},
"PermissionsManageLeads": {
"type": "boolean"
},
"PermissionsTransferAnyLead": {
"type": "boolean"
},
"PermissionsViewAllData": {
"type": "boolean"
},
"PermissionsEditPublicDocuments": {
"type": "boolean"
},
"PermissionsViewEncryptedData": {
"type": "boolean"
},
"PermissionsEditBrandTemplates": {
"type": "boolean"
},
"PermissionsEditHtmlTemplates": {
"type": "boolean"
},
"PermissionsChatterInternalUser": {
"type": "boolean"
},
"PermissionsManageDashboards": {
"type": "boolean"
},
"PermissionsDeleteActivatedContract": {
"type": "boolean"
},
"PermissionsChatterInviteExternalUsers": {
"type": "boolean"
},
"PermissionsSendSitRequests": {
"type": "boolean"
},
"PermissionsManageRemoteAccess": {
"type": "boolean"
},
"PermissionsCanUseNewDashboardBuilder": {
"type": "boolean"
},
"PermissionsManageCategories": {
"type": "boolean"
},
"PermissionsConvertLeads": {
"type": "boolean"
},
"PermissionsPasswordNeverExpires": {
"type": "boolean"
},
"PermissionsUseTeamReassignWizards": {
"type": "boolean"
},
"PermissionsInstallMultiforce": {
"type": "boolean"
},
"PermissionsPublishMultiforce": {
"type": "boolean"
},
"PermissionsChatterOwnGroups": {
"type": "boolean"
},
"PermissionsEditOppLineItemUnitPrice": {
"type": "boolean"
},
"PermissionsCreateMultiforce": {
"type": "boolean"
},
"PermissionsBulkApiHardDelete": {
"type": "boolean"
},
"PermissionsSolutionImport": {
"type": "boolean"
},
"PermissionsManageCallCenters": {
"type": "boolean"
},
"PermissionsEditReports": {
"type": "boolean"
},
"PermissionsManageSynonyms": {
"type": "boolean"
},
"PermissionsViewContent": {
"type": "boolean"
},
"PermissionsManageEmailClientConfig": {
"type": "boolean"
},
"PermissionsEnableNotifications": {
"type": "boolean"
},
"PermissionsManageDataIntegrations": {
"type": "boolean"
},
"PermissionsDistributeFromPersWksp": {
"type": "boolean"
},
"PermissionsViewDataCategories": {
"type": "boolean"
},
"PermissionsManageDataCategories": {
"type": "boolean"
},
"PermissionsAuthorApex": {
"type": "boolean"
},
"PermissionsManageMobile": {
"type": "boolean"
},
"PermissionsApiEnabled": {
"type": "boolean"
},
"PermissionsManageCustomReportTypes": {
"type": "boolean"
},
"PermissionsEditCaseComments": {
"type": "boolean"
},
"PermissionsTransferAnyCase": {
"type": "boolean"
},
"PermissionsContentAdministrator": {
"type": "boolean"
},
"PermissionsCreateWorkspaces": {
"type": "boolean"
},
"PermissionsManageContentPermissions": {
"type": "boolean"
},
"PermissionsManageContentProperties": {
"type": "boolean"
},
"PermissionsManageContentTypes": {
"type": "boolean"
},
"PermissionsManageExchangeConfig": {
"type": "boolean"
},
"PermissionsManageAnalyticSnapshots": {
"type": "boolean"
},
"PermissionsScheduleReports": {
"type": "boolean"
},
"PermissionsManageBusinessHourHolidays": {
"type": "boolean"
},
"PermissionsManageDynamicDashboards": {
"type": "boolean"
},
"PermissionsCustomSidebarOnAllPages": {
"type": "boolean"
},
"PermissionsManageInteraction": {
"type": "boolean"
},
"PermissionsViewMyTeamsDashboards": {
"type": "boolean"
},
"PermissionsModerateChatter": {
"type": "boolean"
},
"PermissionsResetPasswords": {
"type": "boolean"
},
"PermissionsFlowUFLRequired": {
"type": "boolean"
},
"PermissionsCanInsertFeedSystemFields": {
"type": "boolean"
},
"PermissionsManageKnowledgeImportExport": {
"type": "boolean"
},
"PermissionsEmailTemplateManagement": {
"type": "boolean"
},
"PermissionsEmailAdministration": {
"type": "boolean"
},
"PermissionsManageChatterMessages": {
"type": "boolean"
},
"PermissionsAllowEmailIC": {
"type": "boolean"
},
"PermissionsChatterFileLink": {
"type": "boolean"
},
"PermissionsForceTwoFactor": {
"type": "boolean"
},
"PermissionsViewEventLogFiles": {
"type": "boolean"
},
"PermissionsManageNetworks": {
"type": "boolean"
},
"PermissionsManageAuthProviders": {
"type": "boolean"
},
"PermissionsRunFlow": {
"type": "boolean"
},
"PermissionsViewAllUsers": {
"type": "boolean"
},
"PermissionsAllowUniversalSearch": {
"type": "boolean"
},
"PermissionsConnectOrgToEnvironmentHub": {
"type": "boolean"
},
"PermissionsCreateCustomizeFilters": {
"type": "boolean"
},
"PermissionsGovernNetworks": {
"type": "boolean"
},
"PermissionsSalesConsole": {
"type": "boolean"
},
"PermissionsTwoFactorApi": {
"type": "boolean"
},
"PermissionsDeleteTopics": {
"type": "boolean"
},
"PermissionsEditTopics": {
"type": "boolean"
},
"PermissionsCreateTopics": {
"type": "boolean"
},
"PermissionsAssignTopics": {
"type": "boolean"
},
"PermissionsIdentityEnabled": {
"type": "boolean"
},
"PermissionsIdentityConnect": {
"type": "boolean"
},
"PermissionsAllowViewKnowledge": {
"type": "boolean"
},
"PermissionsManageSearchPromotionRules": {
"type": "boolean"
},
"PermissionsCustomMobileAppsAccess": {
"type": "boolean"
},
"PermissionsViewHelpLink": {
"type": "boolean"
},
"PermissionsManageProfilesPermissionsets": {
"type": "boolean"
},
"PermissionsAssignPermissionSets": {
"type": "boolean"
},
"PermissionsManageRoles": {
"type": "boolean"
},
"PermissionsManageIpAddresses": {
"type": "boolean"
},
"PermissionsManageSharing": {
"type": "boolean"
},
"PermissionsManageInternalUsers": {
"type": "boolean"
},
"PermissionsManagePasswordPolicies": {
"type": "boolean"
},
"PermissionsManageLoginAccessPolicies": {
"type": "boolean"
},
"PermissionsManageCustomPermissions": {
"type": "boolean"
},
"PermissionsManageUnlistedGroups": {
"type": "boolean"
},
"PermissionsModifySecureAgents": {
"type": "boolean"
},
"PermissionsManageTwoFactor": {
"type": "boolean"
},
"PermissionsChatterForSharePoint": {
"type": "boolean"
},
"PermissionsLightningExperienceUser": {
"type": "boolean"
},
"PermissionsConfigCustomRecs": {
"type": "boolean"
},
"PermissionsSubmitMacrosAllowed": {
"type": "boolean"
},
"PermissionsBulkMacrosAllowed": {
"type": "boolean"
},
"PermissionsShareInternalArticles": {
"type": "boolean"
},
"PermissionsChatterEditOwnPost": {
"type": "boolean"
},
"PermissionsChatterEditOwnRecordPost": {
"type": "boolean"
},
"PermissionsMergeTopics": {
"type": "boolean"
},
"UserLicenseId": {
"type": "string"
},
"UserType": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"Description": {
"type": "string"
},
"LastViewedDate": {
"type": "string",
"format": "date"
},
"LastReferencedDate": {
"type": "string",
"format": "date"
}
},
"required": [
"Name",
"PermissionsEmailSingle",
"PermissionsEmailMass",
"PermissionsEditTask",
"PermissionsEditEvent",
"PermissionsExportReport",
"PermissionsImportPersonal",
"PermissionsManageUsers",
"PermissionsEditPublicTemplates",
"PermissionsModifyAllData",
"PermissionsManageCases",
"PermissionsMassInlineEdit",
"PermissionsEditKnowledge",
"PermissionsManageKnowledge",
"PermissionsManageSolutions",
"PermissionsCustomizeApplication",
"PermissionsEditReadonlyFields",
"PermissionsRunReports",
"PermissionsViewSetup",
"PermissionsTransferAnyEntity",
"PermissionsNewReportBuilder",
"PermissionsActivateContract",
"PermissionsImportLeads",
"PermissionsManageLeads",
"PermissionsTransferAnyLead",
"PermissionsViewAllData",
"PermissionsEditPublicDocuments",
"PermissionsViewEncryptedData",
"PermissionsEditBrandTemplates",
"PermissionsEditHtmlTemplates",
"PermissionsChatterInternalUser",
"PermissionsManageDashboards",
"PermissionsDeleteActivatedContract",
"PermissionsChatterInviteExternalUsers",
"PermissionsSendSitRequests",
"PermissionsManageRemoteAccess",
"PermissionsCanUseNewDashboardBuilder",
"PermissionsManageCategories",
"PermissionsConvertLeads",
"PermissionsPasswordNeverExpires",
"PermissionsUseTeamReassignWizards",
"PermissionsInstallMultiforce",
"PermissionsPublishMultiforce",
"PermissionsChatterOwnGroups",
"PermissionsEditOppLineItemUnitPrice",
"PermissionsCreateMultiforce",
"PermissionsBulkApiHardDelete",
"PermissionsSolutionImport",
"PermissionsManageCallCenters",
"PermissionsEditReports",
"PermissionsManageSynonyms",
"PermissionsViewContent",
"PermissionsManageEmailClientConfig",
"PermissionsEnableNotifications",
"PermissionsManageDataIntegrations",
"PermissionsDistributeFromPersWksp",
"PermissionsViewDataCategories",
"PermissionsManageDataCategories",
"PermissionsAuthorApex",
"PermissionsManageMobile",
"PermissionsApiEnabled",
"PermissionsManageCustomReportTypes",
"PermissionsEditCaseComments",
"PermissionsTransferAnyCase",
"PermissionsContentAdministrator",
"PermissionsCreateWorkspaces",
"PermissionsManageContentPermissions",
"PermissionsManageContentProperties",
"PermissionsManageContentTypes",
"PermissionsManageExchangeConfig",
"PermissionsManageAnalyticSnapshots",
"PermissionsScheduleReports",
"PermissionsManageBusinessHourHolidays",
"PermissionsManageDynamicDashboards",
"PermissionsCustomSidebarOnAllPages",
"PermissionsManageInteraction",
"PermissionsViewMyTeamsDashboards",
"PermissionsModerateChatter",
"PermissionsResetPasswords",
"PermissionsFlowUFLRequired",
"PermissionsCanInsertFeedSystemFields",
"PermissionsManageKnowledgeImportExport",
"PermissionsEmailTemplateManagement",
"PermissionsEmailAdministration",
"PermissionsManageChatterMessages",
"PermissionsAllowEmailIC",
"PermissionsChatterFileLink",
"PermissionsForceTwoFactor",
"PermissionsViewEventLogFiles",
"PermissionsManageNetworks",
"PermissionsManageAuthProviders",
"PermissionsRunFlow",
"PermissionsViewAllUsers",
"PermissionsAllowUniversalSearch",
"PermissionsConnectOrgToEnvironmentHub",
"PermissionsCreateCustomizeFilters",
"PermissionsGovernNetworks",
"PermissionsSalesConsole",
"PermissionsTwoFactorApi",
"PermissionsDeleteTopics",
"PermissionsEditTopics",
"PermissionsCreateTopics",
"PermissionsAssignTopics",
"PermissionsIdentityEnabled",
"PermissionsIdentityConnect",
"PermissionsAllowViewKnowledge",
"PermissionsManageSearchPromotionRules",
"PermissionsCustomMobileAppsAccess",
"PermissionsViewHelpLink",
"PermissionsManageProfilesPermissionsets",
"PermissionsAssignPermissionSets",
"PermissionsManageRoles",
"PermissionsManageIpAddresses",
"PermissionsManageSharing",
"PermissionsManageInternalUsers",
"PermissionsManagePasswordPolicies",
"PermissionsManageLoginAccessPolicies",
"PermissionsManageCustomPermissions",
"PermissionsManageUnlistedGroups",
"PermissionsModifySecureAgents",
"PermissionsManageTwoFactor",
"PermissionsChatterForSharePoint",
"PermissionsLightningExperienceUser",
"PermissionsConfigCustomRecs",
"PermissionsSubmitMacrosAllowed",
"PermissionsBulkMacrosAllowed",
"PermissionsShareInternalArticles",
"PermissionsChatterEditOwnPost",
"PermissionsChatterEditOwnRecordPost",
"PermissionsMergeTopics",
"UserLicenseId",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp"
]
},
"appc.salesforce_Publisher": {
"type": "object",
"properties": {
"DurableId": {
"type": "string"
},
"Name": {
"type": "string"
},
"NamespacePrefix": {
"type": "string"
},
"IsSalesforce": {
"type": "boolean"
},
"MajorVersion": {
"type": "integer",
"format": "int32"
},
"MinorVersion": {
"type": "integer",
"format": "int32"
}
},
"required": [
"IsSalesforce"
]
},
"appc.salesforce_PushTopic": {
"type": "object",
"properties": {
"Name": {
"type": "string"
},
"Query": {
"type": "string"
},
"ApiVersion": {
"type": "integer",
"format": "int32"
},
"IsActive": {
"type": "boolean"
},
"NotifyForFields": {
"type": "string"
},
"NotifyForOperations": {
"type": "string"
},
"Description": {
"type": "string"
},
"NotifyForOperationCreate": {
"type": "boolean"
},
"NotifyForOperationUpdate": {
"type": "boolean"
},
"NotifyForOperationDelete": {
"type": "boolean"
},
"NotifyForOperationUndelete": {
"type": "boolean"
},
"IsDeleted": {
"type": "boolean"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"Name",
"Query",
"ApiVersion",
"IsActive",
"NotifyForFields",
"NotifyForOperations",
"NotifyForOperationCreate",
"NotifyForOperationUpdate",
"NotifyForOperationDelete",
"NotifyForOperationUndelete",
"IsDeleted",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp"
]
},
"appc.salesforce_QueueSobject": {
"type": "object",
"properties": {
"QueueId": {
"type": "string"
},
"SobjectType": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"QueueId",
"SobjectType",
"CreatedById",
"SystemModstamp"
]
},
"appc.salesforce_RecentlyViewed": {
"type": "object",
"properties": {
"Name": {
"type": "string"
},
"LastName": {
"type": "string"
},
"FirstName": {
"type": "string"
},
"Type": {
"type": "string"
},
"Alias": {
"type": "string"
},
"UserRoleId": {
"type": "string"
},
"RecordTypeId": {
"type": "string"
},
"IsActive": {
"type": "boolean"
},
"ProfileId": {
"type": "string"
},
"Title": {
"type": "string"
},
"Email": {
"type": "string"
},
"Phone": {
"type": "string"
},
"LastViewedDate": {
"type": "string",
"format": "date"
},
"LastReferencedDate": {
"type": "string",
"format": "date"
},
"Language": {
"type": "string"
}
},
"required": [
"IsActive"
]
},
"appc.salesforce_RecordType": {
"type": "object",
"properties": {
"Name": {
"type": "string"
},
"DeveloperName": {
"type": "string"
},
"NamespacePrefix": {
"type": "string"
},
"Description": {
"type": "string"
},
"BusinessProcessId": {
"type": "string"
},
"SobjectType": {
"type": "string"
},
"IsActive": {
"type": "boolean"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"Name",
"DeveloperName",
"SobjectType",
"IsActive",
"CreatedById",
"CreatedDate",
"LastModifiedById",
"LastModifiedDate",
"SystemModstamp"
]
},
"appc.salesforce_RelationshipDomain": {
"type": "object",
"properties": {
"DurableId": {
"type": "string"
},
"ParentSobjectId": {
"type": "string"
},
"ChildSobjectId": {
"type": "string"
},
"FieldId": {
"type": "string"
},
"RelationshipInfoId": {
"type": "string"
},
"RelationshipName": {
"type": "string"
},
"IsCascadeDelete": {
"type": "boolean"
},
"IsDeprecatedAndHidden": {
"type": "boolean"
},
"IsRestrictedDelete": {
"type": "boolean"
}
},
"required": [
"IsCascadeDelete",
"IsDeprecatedAndHidden",
"IsRestrictedDelete"
]
},
"appc.salesforce_RelationshipInfo": {
"type": "object",
"properties": {
"DurableId": {
"type": "string"
},
"ChildSobjectId": {
"type": "string"
},
"FieldId": {
"type": "string"
},
"IsCascadeDelete": {
"type": "boolean"
},
"IsDeprecatedAndHidden": {
"type": "boolean"
},
"IsRestrictedDelete": {
"type": "boolean"
}
},
"required": [
"IsCascadeDelete",
"IsDeprecatedAndHidden",
"IsRestrictedDelete"
]
},
"appc.salesforce_Report": {
"type": "object",
"properties": {
"OwnerId": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"IsDeleted": {
"type": "boolean"
},
"Name": {
"type": "string"
},
"Description": {
"type": "string"
},
"DeveloperName": {
"type": "string"
},
"NamespacePrefix": {
"type": "string"
},
"LastRunDate": {
"type": "string",
"format": "date"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"Format": {
"type": "string"
},
"LastViewedDate": {
"type": "string",
"format": "date"
},
"LastReferencedDate": {
"type": "string",
"format": "date"
}
},
"required": [
"OwnerId",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"IsDeleted",
"Name",
"DeveloperName",
"SystemModstamp",
"Format"
]
},
"appc.salesforce_ReportFeed": {
"type": "object",
"properties": {
"ParentId": {
"type": "string"
},
"Type": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"IsDeleted": {
"type": "boolean"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"CommentCount": {
"type": "integer",
"format": "int32"
},
"LikeCount": {
"type": "integer",
"format": "int32"
},
"Title": {
"type": "string"
},
"Body": {
"type": "string"
},
"LinkUrl": {
"type": "string"
},
"RelatedRecordId": {
"type": "string"
},
"ContentData": {
"type": "integer",
"format": "int32"
},
"ContentFileName": {
"type": "string"
},
"ContentDescription": {
"type": "string"
},
"ContentType": {
"type": "string"
},
"ContentSize": {
"type": "integer",
"format": "int32"
},
"InsertedById": {
"type": "string"
}
},
"required": [
"ParentId",
"CreatedById",
"CreatedDate",
"IsDeleted",
"LastModifiedDate",
"SystemModstamp",
"CommentCount",
"LikeCount"
]
},
"appc.salesforce_SamlSsoConfig": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"DeveloperName": {
"type": "string"
},
"Language": {
"type": "string"
},
"MasterLabel": {
"type": "string"
},
"NamespacePrefix": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"Version": {
"type": "string"
},
"Issuer": {
"type": "string"
},
"OptionsSpInitBinding": {
"type": "boolean"
},
"OptionsUserProvisioning": {
"type": "boolean"
},
"AttributeFormat": {
"type": "string"
},
"AttributeName": {
"type": "string"
},
"Audience": {
"type": "string"
},
"IdentityMapping": {
"type": "string"
},
"IdentityLocation": {
"type": "string"
},
"SamlJitHandlerId": {
"type": "string"
},
"ExecutionUserId": {
"type": "string"
},
"LoginUrl": {
"type": "string"
},
"LogoutUrl": {
"type": "string"
},
"ErrorUrl": {
"type": "string"
},
"ValidationCert": {
"type": "string"
},
"RequestSignatureMethod": {
"type": "string"
}
},
"required": [
"IsDeleted",
"DeveloperName",
"Language",
"MasterLabel",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"Version",
"Issuer",
"OptionsSpInitBinding",
"OptionsUserProvisioning",
"Audience",
"IdentityMapping",
"IdentityLocation",
"ValidationCert"
]
},
"appc.salesforce_Scontrol": {
"type": "object",
"properties": {
"Name": {
"type": "string"
},
"DeveloperName": {
"type": "string"
},
"Description": {
"type": "string"
},
"EncodingKey": {
"type": "string"
},
"HtmlWrapper": {
"type": "string"
},
"Filename": {
"type": "string"
},
"BodyLength": {
"type": "integer",
"format": "int32"
},
"Binary": {
"type": "integer",
"format": "int32"
},
"ContentSource": {
"type": "string"
},
"SupportsCaching": {
"type": "boolean"
},
"NamespacePrefix": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"Name",
"DeveloperName",
"EncodingKey",
"HtmlWrapper",
"BodyLength",
"SupportsCaching",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp"
]
},
"appc.salesforce_SearchPromotionRule": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"Query": {
"type": "string"
}
},
"required": [
"IsDeleted",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"Query"
]
},
"appc.salesforce_SecureAgent": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"DeveloperName": {
"type": "string"
},
"Language": {
"type": "string"
},
"MasterLabel": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"AgentKey": {
"type": "string"
},
"ProxyUserId": {
"type": "string"
}
},
"required": [
"IsDeleted",
"DeveloperName",
"Language",
"MasterLabel",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp"
]
},
"appc.salesforce_SecureAgentPlugin": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"SecureAgentId": {
"type": "string"
},
"PluginName": {
"type": "string"
},
"PluginType": {
"type": "string"
},
"RequestedVersion": {
"type": "string"
},
"UpdateWindowStart": {
"type": "string",
"format": "date"
},
"UpdateWindowEnd": {
"type": "string",
"format": "date"
}
},
"required": [
"IsDeleted",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"SecureAgentId"
]
},
"appc.salesforce_SecureAgentPluginProperty": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"SecureAgentPluginId": {
"type": "string"
},
"PropertyName": {
"type": "string"
},
"PropertyValue": {
"type": "string"
}
},
"required": [
"IsDeleted",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"SecureAgentPluginId"
]
},
"appc.salesforce_ServiceFieldDataType": {
"type": "object",
"properties": {
"DurableId": {
"type": "string"
},
"FieldDefinitionId": {
"type": "string"
},
"DataTypeId": {
"type": "string"
},
"ServiceId": {
"type": "string"
}
}
},
"appc.salesforce_SetupAuditTrail": {
"type": "object",
"properties": {
"Action": {
"type": "string"
},
"Section": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"Display": {
"type": "string"
}
},
"required": [
"Action",
"CreatedDate",
"CreatedById"
]
},
"appc.salesforce_SetupEntityAccess": {
"type": "object",
"properties": {
"ParentId": {
"type": "string"
},
"SetupEntityId": {
"type": "string"
},
"SetupEntityType": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"ParentId",
"SetupEntityId",
"SystemModstamp"
]
},
"appc.salesforce_Site": {
"type": "object",
"properties": {
"Name": {
"type": "string"
},
"Subdomain": {
"type": "string"
},
"UrlPathPrefix": {
"type": "string"
},
"GuestUserId": {
"type": "string"
},
"Status": {
"type": "string"
},
"AdminId": {
"type": "string"
},
"OptionsEnableFeeds": {
"type": "boolean"
},
"OptionsRequireHttps": {
"type": "boolean"
},
"OptionsAllowHomePage": {
"type": "boolean"
},
"OptionsAllowStandardIdeasPages": {
"type": "boolean"
},
"OptionsAllowStandardSearch": {
"type": "boolean"
},
"OptionsAllowStandardLookups": {
"type": "boolean"
},
"OptionsAllowStandardAnswersPages": {
"type": "boolean"
},
"OptionsAllowGuestSupportApi": {
"type": "boolean"
},
"Description": {
"type": "string"
},
"MasterLabel": {
"type": "string"
},
"AnalyticsTrackingCode": {
"type": "string"
},
"SiteType": {
"type": "string"
},
"ClickjackProtectionLevel": {
"type": "string"
},
"DailyBandwidthLimit": {
"type": "integer",
"format": "int32"
},
"DailyBandwidthUsed": {
"type": "integer",
"format": "int32"
},
"DailyRequestTimeLimit": {
"type": "integer",
"format": "int32"
},
"DailyRequestTimeUsed": {
"type": "integer",
"format": "int32"
},
"MonthlyPageViewsEntitlement": {
"type": "integer",
"format": "int32"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"Name",
"Status",
"AdminId",
"OptionsEnableFeeds",
"OptionsRequireHttps",
"OptionsAllowHomePage",
"OptionsAllowStandardIdeasPages",
"OptionsAllowStandardSearch",
"OptionsAllowStandardLookups",
"OptionsAllowStandardAnswersPages",
"OptionsAllowGuestSupportApi",
"MasterLabel",
"SiteType",
"ClickjackProtectionLevel",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp"
]
},
"appc.salesforce_SiteFeed": {
"type": "object",
"properties": {
"ParentId": {
"type": "string"
},
"Type": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"IsDeleted": {
"type": "boolean"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"CommentCount": {
"type": "integer",
"format": "int32"
},
"LikeCount": {
"type": "integer",
"format": "int32"
},
"Title": {
"type": "string"
},
"Body": {
"type": "string"
},
"LinkUrl": {
"type": "string"
},
"RelatedRecordId": {
"type": "string"
},
"ContentData": {
"type": "integer",
"format": "int32"
},
"ContentFileName": {
"type": "string"
},
"ContentDescription": {
"type": "string"
},
"ContentType": {
"type": "string"
},
"ContentSize": {
"type": "integer",
"format": "int32"
},
"InsertedById": {
"type": "string"
}
},
"required": [
"ParentId",
"CreatedById",
"CreatedDate",
"IsDeleted",
"LastModifiedDate",
"SystemModstamp",
"CommentCount",
"LikeCount"
]
},
"appc.salesforce_SiteHistory": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"SiteId": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"Field": {
"type": "string"
},
"OldValue": {
"type": "string"
},
"NewValue": {
"type": "string"
}
},
"required": [
"IsDeleted",
"SiteId",
"CreatedById",
"CreatedDate",
"Field"
]
},
"appc.salesforce_Solution": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"SolutionNumber": {
"type": "string"
},
"SolutionName": {
"type": "string"
},
"IsPublished": {
"type": "boolean"
},
"IsPublishedInPublicKb": {
"type": "boolean"
},
"Status": {
"type": "string"
},
"IsReviewed": {
"type": "boolean"
},
"SolutionNote": {
"type": "string"
},
"OwnerId": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"TimesUsed": {
"type": "integer",
"format": "int32"
},
"LastViewedDate": {
"type": "string",
"format": "date"
},
"LastReferencedDate": {
"type": "string",
"format": "date"
},
"IsHtml": {
"type": "boolean"
}
},
"required": [
"IsDeleted",
"SolutionNumber",
"SolutionName",
"IsPublished",
"IsPublishedInPublicKb",
"Status",
"IsReviewed",
"OwnerId",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"TimesUsed",
"IsHtml"
]
},
"appc.salesforce_SolutionFeed": {
"type": "object",
"properties": {
"ParentId": {
"type": "string"
},
"Type": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"IsDeleted": {
"type": "boolean"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"CommentCount": {
"type": "integer",
"format": "int32"
},
"LikeCount": {
"type": "integer",
"format": "int32"
},
"Title": {
"type": "string"
},
"Body": {
"type": "string"
},
"LinkUrl": {
"type": "string"
},
"RelatedRecordId": {
"type": "string"
},
"ContentData": {
"type": "integer",
"format": "int32"
},
"ContentFileName": {
"type": "string"
},
"ContentDescription": {
"type": "string"
},
"ContentType": {
"type": "string"
},
"ContentSize": {
"type": "integer",
"format": "int32"
},
"InsertedById": {
"type": "string"
}
},
"required": [
"ParentId",
"CreatedById",
"CreatedDate",
"IsDeleted",
"LastModifiedDate",
"SystemModstamp",
"CommentCount",
"LikeCount"
]
},
"appc.salesforce_SolutionHistory": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"SolutionId": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"Field": {
"type": "string"
},
"OldValue": {
"type": "string"
},
"NewValue": {
"type": "string"
}
},
"required": [
"IsDeleted",
"SolutionId",
"CreatedById",
"CreatedDate",
"Field"
]
},
"appc.salesforce_SolutionStatus": {
"type": "object",
"properties": {
"MasterLabel": {
"type": "string"
},
"SortOrder": {
"type": "integer",
"format": "int32"
},
"IsDefault": {
"type": "boolean"
},
"IsReviewed": {
"type": "boolean"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"IsDefault",
"IsReviewed",
"CreatedById",
"CreatedDate",
"LastModifiedById",
"LastModifiedDate",
"SystemModstamp"
]
},
"appc.salesforce_StaticResource": {
"type": "object",
"properties": {
"NamespacePrefix": {
"type": "string"
},
"Name": {
"type": "string"
},
"ContentType": {
"type": "string"
},
"BodyLength": {
"type": "integer",
"format": "int32"
},
"Body": {
"type": "integer",
"format": "int32"
},
"Description": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"CacheControl": {
"type": "string"
}
},
"required": [
"Name",
"ContentType",
"BodyLength",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"CacheControl"
]
},
"appc.salesforce_StreamingChannel": {
"type": "object",
"properties": {
"OwnerId": {
"type": "string"
},
"IsDeleted": {
"type": "boolean"
},
"Name": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"LastViewedDate": {
"type": "string",
"format": "date"
},
"LastReferencedDate": {
"type": "string",
"format": "date"
},
"IsDynamic": {
"type": "boolean"
},
"Description": {
"type": "string"
}
},
"required": [
"OwnerId",
"IsDeleted",
"Name",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"IsDynamic"
]
},
"appc.salesforce_StreamingChannelShare": {
"type": "object",
"properties": {
"ParentId": {
"type": "string"
},
"UserOrGroupId": {
"type": "string"
},
"AccessLevel": {
"type": "string"
},
"RowCause": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"IsDeleted": {
"type": "boolean"
}
},
"required": [
"ParentId",
"UserOrGroupId",
"AccessLevel",
"LastModifiedDate",
"LastModifiedById",
"IsDeleted"
]
},
"appc.salesforce_Task": {
"type": "object",
"properties": {
"WhoId": {
"type": "string"
},
"WhatId": {
"type": "string"
},
"Subject": {
"type": "string"
},
"ActivityDate": {
"type": "string",
"format": "date"
},
"Status": {
"type": "string"
},
"Priority": {
"type": "string"
},
"IsHighPriority": {
"type": "boolean"
},
"OwnerId": {
"type": "string"
},
"Description": {
"type": "string"
},
"IsDeleted": {
"type": "boolean"
},
"AccountId": {
"type": "string"
},
"IsClosed": {
"type": "boolean"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"IsArchived": {
"type": "boolean"
},
"CallDurationInSeconds": {
"type": "integer",
"format": "int32"
},
"CallType": {
"type": "string"
},
"CallDisposition": {
"type": "string"
},
"CallObject": {
"type": "string"
},
"ReminderDateTime": {
"type": "string",
"format": "date"
},
"IsReminderSet": {
"type": "boolean"
},
"RecurrenceActivityId": {
"type": "string"
},
"IsRecurrence": {
"type": "boolean"
},
"RecurrenceStartDateOnly": {
"type": "string",
"format": "date"
},
"RecurrenceEndDateOnly": {
"type": "string",
"format": "date"
},
"RecurrenceTimeZoneSidKey": {
"type": "string"
},
"RecurrenceType": {
"type": "string"
},
"RecurrenceInterval": {
"type": "integer",
"format": "int32"
},
"RecurrenceDayOfWeekMask": {
"type": "integer",
"format": "int32"
},
"RecurrenceDayOfMonth": {
"type": "integer",
"format": "int32"
},
"RecurrenceInstance": {
"type": "string"
},
"RecurrenceMonthOfYear": {
"type": "string"
},
"RecurrenceRegeneratedType": {
"type": "string"
}
},
"required": [
"Status",
"Priority",
"IsHighPriority",
"OwnerId",
"IsDeleted",
"IsClosed",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"IsArchived",
"IsReminderSet",
"IsRecurrence"
]
},
"appc.salesforce_TaskFeed": {
"type": "object",
"properties": {
"ParentId": {
"type": "string"
},
"Type": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"IsDeleted": {
"type": "boolean"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"CommentCount": {
"type": "integer",
"format": "int32"
},
"LikeCount": {
"type": "integer",
"format": "int32"
},
"Title": {
"type": "string"
},
"Body": {
"type": "string"
},
"LinkUrl": {
"type": "string"
},
"RelatedRecordId": {
"type": "string"
},
"ContentData": {
"type": "integer",
"format": "int32"
},
"ContentFileName": {
"type": "string"
},
"ContentDescription": {
"type": "string"
},
"ContentType": {
"type": "string"
},
"ContentSize": {
"type": "integer",
"format": "int32"
},
"InsertedById": {
"type": "string"
}
},
"required": [
"ParentId",
"CreatedById",
"CreatedDate",
"IsDeleted",
"LastModifiedDate",
"SystemModstamp",
"CommentCount",
"LikeCount"
]
},
"appc.salesforce_TaskPriority": {
"type": "object",
"properties": {
"MasterLabel": {
"type": "string"
},
"SortOrder": {
"type": "integer",
"format": "int32"
},
"IsDefault": {
"type": "boolean"
},
"IsHighPriority": {
"type": "boolean"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"IsDefault",
"IsHighPriority",
"CreatedById",
"CreatedDate",
"LastModifiedById",
"LastModifiedDate",
"SystemModstamp"
]
},
"appc.salesforce_TaskStatus": {
"type": "object",
"properties": {
"MasterLabel": {
"type": "string"
},
"SortOrder": {
"type": "integer",
"format": "int32"
},
"IsDefault": {
"type": "boolean"
},
"IsClosed": {
"type": "boolean"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"IsDefault",
"IsClosed",
"CreatedById",
"CreatedDate",
"LastModifiedById",
"LastModifiedDate",
"SystemModstamp"
]
},
"appc.salesforce_TenantUsageEntitlement": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"ResourceGroupKey": {
"type": "string"
},
"Setting": {
"type": "string"
},
"StartDate": {
"type": "string",
"format": "date"
},
"EndDate": {
"type": "string",
"format": "date"
},
"CurrentAmountAllowed": {
"type": "integer",
"format": "int32"
},
"Frequency": {
"type": "string"
},
"IsPersistentResource": {
"type": "boolean"
},
"HasRollover": {
"type": "boolean"
},
"OverageGrace": {
"type": "integer",
"format": "int32"
},
"AmountUsed": {
"type": "integer",
"format": "int32"
},
"UsageDate": {
"type": "string",
"format": "date"
},
"MasterLabel": {
"type": "string"
}
},
"required": [
"IsDeleted",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"ResourceGroupKey",
"Setting",
"StartDate",
"CurrentAmountAllowed",
"IsPersistentResource",
"HasRollover"
]
},
"appc.salesforce_ThirdPartyAccountLink": {
"type": "object",
"properties": {
"ThirdPartyAccountLinkKey": {
"type": "string"
},
"UserId": {
"type": "string"
},
"SsoProviderId": {
"type": "string"
},
"Handle": {
"type": "string"
},
"RemoteIdentifier": {
"type": "string"
},
"Provider": {
"type": "string"
},
"SsoProviderName": {
"type": "string"
},
"IsNotSsoUsable": {
"type": "boolean"
}
},
"required": [
"IsNotSsoUsable"
]
},
"appc.salesforce_Topic": {
"type": "object",
"properties": {
"Name": {
"type": "string"
},
"Description": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"TalkingAbout": {
"type": "integer",
"format": "int32"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"Name",
"CreatedDate",
"CreatedById",
"TalkingAbout",
"SystemModstamp"
]
},
"appc.salesforce_TopicAssignment": {
"type": "object",
"properties": {
"TopicId": {
"type": "string"
},
"EntityId": {
"type": "string"
},
"EntityKeyPrefix": {
"type": "string"
},
"EntityType": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"IsDeleted": {
"type": "boolean"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"TopicId",
"EntityId",
"EntityKeyPrefix",
"CreatedDate",
"CreatedById",
"IsDeleted",
"SystemModstamp"
]
},
"appc.salesforce_TopicFeed": {
"type": "object",
"properties": {
"ParentId": {
"type": "string"
},
"Type": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"IsDeleted": {
"type": "boolean"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"CommentCount": {
"type": "integer",
"format": "int32"
},
"LikeCount": {
"type": "integer",
"format": "int32"
},
"Title": {
"type": "string"
},
"Body": {
"type": "string"
},
"LinkUrl": {
"type": "string"
},
"RelatedRecordId": {
"type": "string"
},
"ContentData": {
"type": "integer",
"format": "int32"
},
"ContentFileName": {
"type": "string"
},
"ContentDescription": {
"type": "string"
},
"ContentType": {
"type": "string"
},
"ContentSize": {
"type": "integer",
"format": "int32"
},
"InsertedById": {
"type": "string"
}
},
"required": [
"ParentId",
"CreatedById",
"CreatedDate",
"IsDeleted",
"LastModifiedDate",
"SystemModstamp",
"CommentCount",
"LikeCount"
]
},
"appc.salesforce_UndecidedEventRelation": {
"type": "object",
"properties": {
"RelationId": {
"type": "string"
},
"EventId": {
"type": "string"
},
"RespondedDate": {
"type": "string",
"format": "date"
},
"Response": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"IsDeleted": {
"type": "boolean"
},
"Type": {
"type": "string"
}
},
"required": [
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"IsDeleted"
]
},
"appc.salesforce_User": {
"type": "object",
"properties": {
"Username": {
"type": "string"
},
"LastName": {
"type": "string"
},
"FirstName": {
"type": "string"
},
"Name": {
"type": "string"
},
"CompanyName": {
"type": "string"
},
"Division": {
"type": "string"
},
"Department": {
"type": "string"
},
"Title": {
"type": "string"
},
"Street": {
"type": "string"
},
"City": {
"type": "string"
},
"State": {
"type": "string"
},
"PostalCode": {
"type": "string"
},
"Country": {
"type": "string"
},
"Latitude": {
"type": "integer",
"format": "int32"
},
"Longitude": {
"type": "integer",
"format": "int32"
},
"Address": {
"type": "string"
},
"Email": {
"type": "string"
},
"EmailPreferencesAutoBcc": {
"type": "boolean"
},
"EmailPreferencesAutoBccStayInTouch": {
"type": "boolean"
},
"EmailPreferencesStayInTouchReminder": {
"type": "boolean"
},
"SenderEmail": {
"type": "string"
},
"SenderName": {
"type": "string"
},
"Signature": {
"type": "string"
},
"StayInTouchSubject": {
"type": "string"
},
"StayInTouchSignature": {
"type": "string"
},
"StayInTouchNote": {
"type": "string"
},
"Phone": {
"type": "string"
},
"Fax": {
"type": "string"
},
"MobilePhone": {
"type": "string"
},
"Alias": {
"type": "string"
},
"CommunityNickname": {
"type": "string"
},
"BadgeText": {
"type": "string"
},
"IsActive": {
"type": "boolean"
},
"TimeZoneSidKey": {
"type": "string"
},
"UserRoleId": {
"type": "string"
},
"LocaleSidKey": {
"type": "string"
},
"ReceivesInfoEmails": {
"type": "boolean"
},
"ReceivesAdminInfoEmails": {
"type": "boolean"
},
"EmailEncodingKey": {
"type": "string"
},
"ProfileId": {
"type": "string"
},
"UserType": {
"type": "string"
},
"LanguageLocaleKey": {
"type": "string"
},
"EmployeeNumber": {
"type": "string"
},
"DelegatedApproverId": {
"type": "string"
},
"ManagerId": {
"type": "string"
},
"LastLoginDate": {
"type": "string",
"format": "date"
},
"LastPasswordChangeDate": {
"type": "string",
"format": "date"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"OfflineTrialExpirationDate": {
"type": "string",
"format": "date"
},
"OfflinePdaTrialExpirationDate": {
"type": "string",
"format": "date"
},
"UserPermissionsMarketingUser": {
"type": "boolean"
},
"UserPermissionsOfflineUser": {
"type": "boolean"
},
"UserPermissionsCallCenterAutoLogin": {
"type": "boolean"
},
"UserPermissionsMobileUser": {
"type": "boolean"
},
"UserPermissionsSFContentUser": {
"type": "boolean"
},
"UserPermissionsKnowledgeUser": {
"type": "boolean"
},
"UserPermissionsInteractionUser": {
"type": "boolean"
},
"UserPermissionsSupportUser": {
"type": "boolean"
},
"UserPermissionsSiteforceContributorUser": {
"type": "boolean"
},
"UserPermissionsSiteforcePublisherUser": {
"type": "boolean"
},
"UserPermissionsChatterAnswersUser": {
"type": "boolean"
},
"ForecastEnabled": {
"type": "boolean"
},
"UserPreferencesActivityRemindersPopup": {
"type": "boolean"
},
"UserPreferencesEventRemindersCheckboxDefault": {
"type": "boolean"
},
"UserPreferencesTaskRemindersCheckboxDefault": {
"type": "boolean"
},
"UserPreferencesReminderSoundOff": {
"type": "boolean"
},
"UserPreferencesDisableAllFeedsEmail": {
"type": "boolean"
},
"UserPreferencesDisableFollowersEmail": {
"type": "boolean"
},
"UserPreferencesDisableProfilePostEmail": {
"type": "boolean"
},
"UserPreferencesDisableChangeCommentEmail": {
"type": "boolean"
},
"UserPreferencesDisableLaterCommentEmail": {
"type": "boolean"
},
"UserPreferencesDisProfPostCommentEmail": {
"type": "boolean"
},
"UserPreferencesContentNoEmail": {
"type": "boolean"
},
"UserPreferencesContentEmailAsAndWhen": {
"type": "boolean"
},
"UserPreferencesApexPagesDeveloperMode": {
"type": "boolean"
},
"UserPreferencesHideCSNGetChatterMobileTask": {
"type": "boolean"
},
"UserPreferencesDisableMentionsPostEmail": {
"type": "boolean"
},
"UserPreferencesDisMentionsCommentEmail": {
"type": "boolean"
},
"UserPreferencesHideCSNDesktopTask": {
"type": "boolean"
},
"UserPreferencesHideChatterOnboardingSplash": {
"type": "boolean"
},
"UserPreferencesHideSecondChatterOnboardingSplash": {
"type": "boolean"
},
"UserPreferencesDisCommentAfterLikeEmail": {
"type": "boolean"
},
"UserPreferencesDisableLikeEmail": {
"type": "boolean"
},
"UserPreferencesSortFeedByComment": {
"type": "boolean"
},
"UserPreferencesDisableMessageEmail": {
"type": "boolean"
},
"UserPreferencesDisableBookmarkEmail": {
"type": "boolean"
},
"UserPreferencesDisableSharePostEmail": {
"type": "boolean"
},
"UserPreferencesEnableAutoSubForFeeds": {
"type": "boolean"
},
"UserPreferencesDisableFileShareNotificationsForApi": {
"type": "boolean"
},
"UserPreferencesShowTitleToExternalUsers": {
"type": "boolean"
},
"UserPreferencesShowManagerToExternalUsers": {
"type": "boolean"
},
"UserPreferencesShowEmailToExternalUsers": {
"type": "boolean"
},
"UserPreferencesShowWorkPhoneToExternalUsers": {
"type": "boolean"
},
"UserPreferencesShowMobilePhoneToExternalUsers": {
"type": "boolean"
},
"UserPreferencesShowFaxToExternalUsers": {
"type": "boolean"
},
"UserPreferencesShowStreetAddressToExternalUsers": {
"type": "boolean"
},
"UserPreferencesShowCityToExternalUsers": {
"type": "boolean"
},
"UserPreferencesShowStateToExternalUsers": {
"type": "boolean"
},
"UserPreferencesShowPostalCodeToExternalUsers": {
"type": "boolean"
},
"UserPreferencesShowCountryToExternalUsers": {
"type": "boolean"
},
"UserPreferencesShowProfilePicToGuestUsers": {
"type": "boolean"
},
"UserPreferencesShowTitleToGuestUsers": {
"type": "boolean"
},
"UserPreferencesShowCityToGuestUsers": {
"type": "boolean"
},
"UserPreferencesShowStateToGuestUsers": {
"type": "boolean"
},
"UserPreferencesShowPostalCodeToGuestUsers": {
"type": "boolean"
},
"UserPreferencesShowCountryToGuestUsers": {
"type": "boolean"
},
"UserPreferencesHideS1BrowserUI": {
"type": "boolean"
},
"UserPreferencesDisableEndorsementEmail": {
"type": "boolean"
},
"UserPreferencesPathAssistantCollapsed": {
"type": "boolean"
},
"UserPreferencesCacheDiagnostics": {
"type": "boolean"
},
"UserPreferencesShowEmailToGuestUsers": {
"type": "boolean"
},
"UserPreferencesShowManagerToGuestUsers": {
"type": "boolean"
},
"UserPreferencesShowWorkPhoneToGuestUsers": {
"type": "boolean"
},
"UserPreferencesShowMobilePhoneToGuestUsers": {
"type": "boolean"
},
"UserPreferencesShowFaxToGuestUsers": {
"type": "boolean"
},
"UserPreferencesShowStreetAddressToGuestUsers": {
"type": "boolean"
},
"UserPreferencesLightningExperiencePreferred": {
"type": "boolean"
},
"ContactId": {
"type": "string"
},
"AccountId": {
"type": "string"
},
"CallCenterId": {
"type": "string"
},
"Extension": {
"type": "string"
},
"FederationIdentifier": {
"type": "string"
},
"AboutMe": {
"type": "string"
},
"FullPhotoUrl": {
"type": "string"
},
"SmallPhotoUrl": {
"type": "string"
},
"DigestFrequency": {
"type": "string"
},
"DefaultGroupNotificationFrequency": {
"type": "string"
},
"LastViewedDate": {
"type": "string",
"format": "date"
},
"LastReferencedDate": {
"type": "string",
"format": "date"
}
},
"required": [
"Username",
"LastName",
"Name",
"Email",
"EmailPreferencesAutoBcc",
"EmailPreferencesAutoBccStayInTouch",
"EmailPreferencesStayInTouchReminder",
"Alias",
"CommunityNickname",
"IsActive",
"TimeZoneSidKey",
"LocaleSidKey",
"ReceivesInfoEmails",
"ReceivesAdminInfoEmails",
"EmailEncodingKey",
"ProfileId",
"LanguageLocaleKey",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"UserPermissionsMarketingUser",
"UserPermissionsOfflineUser",
"UserPermissionsCallCenterAutoLogin",
"UserPermissionsMobileUser",
"UserPermissionsSFContentUser",
"UserPermissionsKnowledgeUser",
"UserPermissionsInteractionUser",
"UserPermissionsSupportUser",
"UserPermissionsSiteforceContributorUser",
"UserPermissionsSiteforcePublisherUser",
"UserPermissionsChatterAnswersUser",
"ForecastEnabled",
"UserPreferencesActivityRemindersPopup",
"UserPreferencesEventRemindersCheckboxDefault",
"UserPreferencesTaskRemindersCheckboxDefault",
"UserPreferencesReminderSoundOff",
"UserPreferencesDisableAllFeedsEmail",
"UserPreferencesDisableFollowersEmail",
"UserPreferencesDisableProfilePostEmail",
"UserPreferencesDisableChangeCommentEmail",
"UserPreferencesDisableLaterCommentEmail",
"UserPreferencesDisProfPostCommentEmail",
"UserPreferencesContentNoEmail",
"UserPreferencesContentEmailAsAndWhen",
"UserPreferencesApexPagesDeveloperMode",
"UserPreferencesHideCSNGetChatterMobileTask",
"UserPreferencesDisableMentionsPostEmail",
"UserPreferencesDisMentionsCommentEmail",
"UserPreferencesHideCSNDesktopTask",
"UserPreferencesHideChatterOnboardingSplash",
"UserPreferencesHideSecondChatterOnboardingSplash",
"UserPreferencesDisCommentAfterLikeEmail",
"UserPreferencesDisableLikeEmail",
"UserPreferencesSortFeedByComment",
"UserPreferencesDisableMessageEmail",
"UserPreferencesDisableBookmarkEmail",
"UserPreferencesDisableSharePostEmail",
"UserPreferencesEnableAutoSubForFeeds",
"UserPreferencesDisableFileShareNotificationsForApi",
"UserPreferencesShowTitleToExternalUsers",
"UserPreferencesShowManagerToExternalUsers",
"UserPreferencesShowEmailToExternalUsers",
"UserPreferencesShowWorkPhoneToExternalUsers",
"UserPreferencesShowMobilePhoneToExternalUsers",
"UserPreferencesShowFaxToExternalUsers",
"UserPreferencesShowStreetAddressToExternalUsers",
"UserPreferencesShowCityToExternalUsers",
"UserPreferencesShowStateToExternalUsers",
"UserPreferencesShowPostalCodeToExternalUsers",
"UserPreferencesShowCountryToExternalUsers",
"UserPreferencesShowProfilePicToGuestUsers",
"UserPreferencesShowTitleToGuestUsers",
"UserPreferencesShowCityToGuestUsers",
"UserPreferencesShowStateToGuestUsers",
"UserPreferencesShowPostalCodeToGuestUsers",
"UserPreferencesShowCountryToGuestUsers",
"UserPreferencesHideS1BrowserUI",
"UserPreferencesDisableEndorsementEmail",
"UserPreferencesPathAssistantCollapsed",
"UserPreferencesCacheDiagnostics",
"UserPreferencesShowEmailToGuestUsers",
"UserPreferencesShowManagerToGuestUsers",
"UserPreferencesShowWorkPhoneToGuestUsers",
"UserPreferencesShowMobilePhoneToGuestUsers",
"UserPreferencesShowFaxToGuestUsers",
"UserPreferencesShowStreetAddressToGuestUsers",
"UserPreferencesLightningExperiencePreferred",
"DigestFrequency",
"DefaultGroupNotificationFrequency"
]
},
"appc.salesforce_UserEntityAccess": {
"type": "object",
"properties": {
"DurableId": {
"type": "string"
},
"UserId": {
"type": "string"
},
"IsReadable": {
"type": "boolean"
},
"IsCreatable": {
"type": "boolean"
},
"IsEditable": {
"type": "boolean"
},
"IsDeletable": {
"type": "boolean"
},
"IsUndeletable": {
"type": "boolean"
},
"EntityDefinitionId": {
"type": "string"
}
},
"required": [
"IsReadable",
"IsCreatable",
"IsEditable",
"IsDeletable",
"IsUndeletable"
]
},
"appc.salesforce_UserFeed": {
"type": "object",
"properties": {
"ParentId": {
"type": "string"
},
"Type": {
"type": "string"
},
"CreatedById": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"IsDeleted": {
"type": "boolean"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"CommentCount": {
"type": "integer",
"format": "int32"
},
"LikeCount": {
"type": "integer",
"format": "int32"
},
"Title": {
"type": "string"
},
"Body": {
"type": "string"
},
"LinkUrl": {
"type": "string"
},
"RelatedRecordId": {
"type": "string"
},
"ContentData": {
"type": "integer",
"format": "int32"
},
"ContentFileName": {
"type": "string"
},
"ContentDescription": {
"type": "string"
},
"ContentType": {
"type": "string"
},
"ContentSize": {
"type": "integer",
"format": "int32"
},
"InsertedById": {
"type": "string"
}
},
"required": [
"ParentId",
"CreatedById",
"CreatedDate",
"IsDeleted",
"LastModifiedDate",
"SystemModstamp",
"CommentCount",
"LikeCount"
]
},
"appc.salesforce_UserFieldAccess": {
"type": "object",
"properties": {
"DurableId": {
"type": "string"
},
"UserId": {
"type": "string"
},
"IsUpdatable": {
"type": "boolean"
},
"IsCreatable": {
"type": "boolean"
},
"IsAccessible": {
"type": "boolean"
},
"EntityDefinitionId": {
"type": "string"
},
"FieldDefinitionId": {
"type": "string"
}
},
"required": [
"IsUpdatable",
"IsCreatable",
"IsAccessible"
]
},
"appc.salesforce_UserLicense": {
"type": "object",
"properties": {
"LicenseDefinitionKey": {
"type": "string"
},
"Name": {
"type": "string"
},
"MonthlyLoginsUsed": {
"type": "integer",
"format": "int32"
},
"MonthlyLoginsEntitlement": {
"type": "integer",
"format": "int32"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"LicenseDefinitionKey",
"Name",
"SystemModstamp"
]
},
"appc.salesforce_UserListView": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"UserId": {
"type": "string"
},
"ListViewId": {
"type": "string"
},
"SobjectType": {
"type": "string"
},
"LastViewedChart": {
"type": "string"
}
},
"required": [
"IsDeleted",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"UserId",
"ListViewId"
]
},
"appc.salesforce_UserListViewCriterion": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"UserListViewId": {
"type": "string"
},
"SortOrder": {
"type": "integer",
"format": "int32"
},
"ColumnName": {
"type": "string"
},
"Operation": {
"type": "string"
},
"Value": {
"type": "string"
}
},
"required": [
"IsDeleted",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp",
"UserListViewId",
"SortOrder",
"ColumnName",
"Operation"
]
},
"appc.salesforce_UserLogin": {
"type": "object",
"properties": {
"UserId": {
"type": "string"
},
"IsFrozen": {
"type": "boolean"
},
"IsPasswordLocked": {
"type": "boolean"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
}
},
"required": [
"IsFrozen",
"IsPasswordLocked",
"LastModifiedDate",
"LastModifiedById"
]
},
"appc.salesforce_UserPackageLicense": {
"type": "object",
"properties": {
"PackageLicenseId": {
"type": "string"
},
"UserId": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"PackageLicenseId",
"UserId",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp"
]
},
"appc.salesforce_UserPreference": {
"type": "object",
"properties": {
"UserId": {
"type": "string"
},
"Preference": {
"type": "string"
},
"Value": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"UserId",
"Preference",
"SystemModstamp"
]
},
"appc.salesforce_UserRecordAccess": {
"type": "object",
"properties": {
"UserId": {
"type": "string"
},
"RecordId": {
"type": "string"
},
"HasReadAccess": {
"type": "boolean"
},
"HasEditAccess": {
"type": "boolean"
},
"HasDeleteAccess": {
"type": "boolean"
},
"HasTransferAccess": {
"type": "boolean"
},
"HasAllAccess": {
"type": "boolean"
},
"MaxAccessLevel": {
"type": "string"
}
},
"required": [
"UserId",
"RecordId",
"HasReadAccess",
"HasEditAccess",
"HasDeleteAccess",
"HasTransferAccess",
"HasAllAccess"
]
},
"appc.salesforce_UserRole": {
"type": "object",
"properties": {
"Name": {
"type": "string"
},
"ParentRoleId": {
"type": "string"
},
"RollupDescription": {
"type": "string"
},
"OpportunityAccessForAccountOwner": {
"type": "string"
},
"CaseAccessForAccountOwner": {
"type": "string"
},
"ContactAccessForAccountOwner": {
"type": "string"
},
"ForecastUserId": {
"type": "string"
},
"MayForecastManagerShare": {
"type": "boolean"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
},
"DeveloperName": {
"type": "string"
},
"PortalAccountId": {
"type": "string"
},
"PortalType": {
"type": "string"
},
"PortalAccountOwnerId": {
"type": "string"
}
},
"required": [
"Name",
"OpportunityAccessForAccountOwner",
"MayForecastManagerShare",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp"
]
},
"appc.salesforce_UserShare": {
"type": "object",
"properties": {
"UserId": {
"type": "string"
},
"UserOrGroupId": {
"type": "string"
},
"UserAccessLevel": {
"type": "string"
},
"RowCause": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"IsActive": {
"type": "boolean"
}
},
"required": [
"UserId",
"UserOrGroupId",
"UserAccessLevel",
"LastModifiedDate",
"LastModifiedById",
"IsActive"
]
},
"appc.salesforce_Vote": {
"type": "object",
"properties": {
"IsDeleted": {
"type": "boolean"
},
"ParentId": {
"type": "string"
},
"Type": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"IsDeleted",
"ParentId",
"Type",
"CreatedDate",
"CreatedById",
"SystemModstamp"
]
},
"appc.salesforce_WebLink": {
"type": "object",
"properties": {
"PageOrSobjectType": {
"type": "string"
},
"Name": {
"type": "string"
},
"IsProtected": {
"type": "boolean"
},
"Url": {
"type": "string"
},
"EncodingKey": {
"type": "string"
},
"LinkType": {
"type": "string"
},
"OpenType": {
"type": "string"
},
"Height": {
"type": "integer",
"format": "int32"
},
"Width": {
"type": "integer",
"format": "int32"
},
"ShowsLocation": {
"type": "boolean"
},
"HasScrollbars": {
"type": "boolean"
},
"HasToolbar": {
"type": "boolean"
},
"HasMenubar": {
"type": "boolean"
},
"ShowsStatus": {
"type": "boolean"
},
"IsResizable": {
"type": "boolean"
},
"Position": {
"type": "string"
},
"ScontrolId": {
"type": "string"
},
"MasterLabel": {
"type": "string"
},
"Description": {
"type": "string"
},
"DisplayType": {
"type": "string"
},
"RequireRowSelection": {
"type": "boolean"
},
"NamespacePrefix": {
"type": "string"
},
"CreatedDate": {
"type": "string",
"format": "date"
},
"CreatedById": {
"type": "string"
},
"LastModifiedDate": {
"type": "string",
"format": "date"
},
"LastModifiedById": {
"type": "string"
},
"SystemModstamp": {
"type": "string",
"format": "date"
}
},
"required": [
"PageOrSobjectType",
"Name",
"IsProtected",
"EncodingKey",
"LinkType",
"OpenType",
"ShowsLocation",
"HasScrollbars",
"HasToolbar",
"HasMenubar",
"ShowsStatus",
"IsResizable",
"DisplayType",
"RequireRowSelection",
"CreatedDate",
"CreatedById",
"LastModifiedDate",
"LastModifiedById",
"SystemModstamp"
]
},
"appc.arrowdb_acl": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"readers": {
"items": {
"type": "string"
}
},
"writers": {
"items": {
"type": "string"
}
},
"public_read": {
"type": "string"
},
"public_write": {
"type": "string"
},
"user": {
"items": {
"type": "string"
}
},
"created_at": {
"type": "string",
"format": "date"
},
"updated_at": {
"type": "string",
"format": "date"
},
"pretty_json": {
"type": "boolean"
},
"custom_fields": {
"type": "string",
"format": "json"
},
"user_id": {
"type": "string"
}
}
},
"appc.arrowdb_file": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"file": {
"type": "string",
"format": "json"
},
"processed": {
"type": "boolean"
},
"url": {
"type": "string"
},
"created_at": {
"type": "string",
"format": "date"
},
"updated_at": {
"type": "string",
"format": "date"
},
"user": {
"items": {
"type": "string"
}
},
"custom_fields": {
"type": "string",
"format": "json"
},
"user_id": {
"type": "string"
}
}
},
"appc.arrowdb_keyValue": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string",
"format": "json"
},
"custom_fields": {
"type": "string",
"format": "json"
},
"user_id": {
"type": "string"
}
}
},
"appc.arrowdb_photo": {
"type": "object",
"properties": {
"filename": {
"type": "string"
},
"photo": {
"type": "string",
"format": "json"
},
"title": {
"type": "string"
},
"size": {
"type": "integer",
"format": "int32"
},
"collections": {
"items": {
"type": "string"
}
},
"md5": {
"type": "string"
},
"processed": {
"type": "boolean"
},
"content_type": {
"type": "string"
},
"urls": {
"type": "string",
"format": "json"
},
"created_at": {
"type": "string",
"format": "date"
},
"updated_at": {
"type": "string",
"format": "date"
},
"tags": {
"items": {
"type": "string"
}
},
"custom_fields": {
"type": "string",
"format": "json"
},
"acls": {
"type": "string"
},
"user": {
"items": {
"type": "string"
}
},
"user_id": {
"type": "string"
},
"reviews": {
"items": {
"type": "string"
}
},
"reviews_count": {
"type": "integer",
"format": "int32"
},
"ratings_count": {
"type": "integer",
"format": "int32"
},
"ratings_average": {
"type": "integer",
"format": "int32"
},
"ratings_summary": {
"type": "string",
"format": "json"
},
"photo_sizes": {
"type": "string",
"format": "json"
},
"photo_sync_sizes[]": {
"type": "string"
}
}
},
"appc.arrowdb_place": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"address": {
"type": "string"
},
"city": {
"type": "string"
},
"state": {
"type": "string"
},
"postal_code": {
"type": "string"
},
"country": {
"type": "string"
},
"latitude": {
"type": "integer",
"format": "int32"
},
"longitude": {
"type": "integer",
"format": "int32"
},
"website": {
"type": "string"
},
"twitter": {
"type": "string"
},
"phone_number": {
"type": "string"
},
"photo": {
"items": {
"type": "string"
}
},
"tags": {
"items": {
"type": "string"
}
},
"custom_fields": {
"type": "string",
"format": "json"
},
"acls": {
"items": {
"type": "string"
}
},
"user": {
"items": {
"type": "string"
}
},
"reviews": {
"items": {
"type": "string"
}
},
"reviews_count": {
"type": "integer",
"format": "int32"
},
"ratings_count": {
"type": "integer",
"format": "int32"
},
"ratings_average": {
"type": "integer",
"format": "int32"
},
"ratings_summary": {
"type": "string",
"format": "json"
},
"user_id": {
"type": "string"
}
}
},
"appc.arrowdb_user": {
"type": "object",
"properties": {
"email": {
"type": "string"
},
"username": {
"type": "string"
},
"first_name": {
"type": "string"
},
"last_name": {
"type": "string"
},
"role": {
"type": "string"
},
"admin": {
"type": "boolean"
},
"external_accounts": {
"items": {
"type": "string"
}
},
"photo": {
"items": {
"type": "string"
}
},
"created_at": {
"type": "string",
"format": "date"
},
"updated_at": {
"type": "string",
"format": "date"
},
"friend_counts": {
"type": "string",
"format": "json"
},
"custom_fields": {
"type": "string",
"format": "json"
},
"user_id": {
"type": "string"
},
"password": {
"type": "string"
},
"password_confirmation": {
"type": "string"
}
}
},
"Account": {
"type": "object",
"properties": {
"Name": {
"type": "string"
},
"Type": {
"type": "string"
},
"Phone": {
"type": "string"
}
},
"required": [
"Name"
]
},
"Opportunity": {
"type": "object",
"properties": {
"AccountId": {
"type": "string"
},
"Name": {
"type": "string"
},
"Description": {
"type": "string"
},
"StageName": {
"type": "string"
},
"Amount": {
"type": "integer",
"format": "int32"
},
"Probability": {
"type": "integer",
"format": "int32"
}
},
"required": [
"Name",
"StageName"
]
},
"ResponseModel": {
"type": "object",
"required": [
"code",
"success",
"request-id"
],
"properties": {
"code": {
"type": "integer",
"format": "int32"
},
"success": {
"type": "boolean",
"default": false
},
"request-id": {
"type": "string"
},
"message": {
"type": "string"
},
"url": {
"type": "string"
}
}
},
"ErrorModel": {
"type": "object",
"required": [
"message",
"code",
"success",
"request-id"
],
"properties": {
"code": {
"type": "integer",
"format": "int32"
},
"success": {
"type": "boolean",
"default": false
},
"request-id": {
"type": "string"
},
"message": {
"type": "string"
},
"url": {
"type": "string"
}
}
}
},
"paths": {
"/opportunity": {
"post": {
"description": "Create a opportunity",
"operationId": "createOpportunity",
"parameters": [
{
"name": "Create",
"in": "body",
"description": "Create body",
"schema": {
"type": "object",
"required": [
"Name",
"StageName"
],
"properties": {
"AccountId": {
"type": "string",
"description": "Account ID"
},
"Name": {
"type": "string",
"description": "Name"
},
"Description": {
"type": "string",
"description": "Description"
},
"StageName": {
"type": "string",
"description": "Stage"
},
"Amount": {
"type": "number",
"description": "Amount"
},
"Probability": {
"type": "number",
"description": "Probability (%)"
}
}
}
}
],
"responses": {
"201": {
"description": "The create succeeded.",
"headers": {
"Location": {
"description": "The URL to the newly created instance.",
"type": "string"
}
}
},
"401": {
"description": "This request requires user authentication, as configured by the server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"404": {
"description": "No results were found.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"500": {
"description": "Something went wrong during the request; check out the logs on your server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"504": {
"description": "The request took too long to process, and the server timed it out.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"default": {
"description": "Response from Server",
"schema": {
"$ref": "#/definitions/ResponseModel"
}
}
},
"tags": [
"Opportunity"
]
},
"delete": {
"description": "Deletes all opportunities",
"operationId": "deleteOpportunity",
"responses": {
"204": {
"description": "The delete succeeded."
},
"401": {
"description": "This request requires user authentication, as configured by the server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"404": {
"description": "No results were found.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"500": {
"description": "Something went wrong during the request; check out the logs on your server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"504": {
"description": "The request took too long to process, and the server timed it out.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"default": {
"description": "Response from Server",
"schema": {
"$ref": "#/definitions/ResponseModel"
}
}
},
"tags": [
"Opportunity"
]
},
"get": {
"description": "Find all opportunities",
"operationId": "findOpportunity",
"responses": {
"200": {
"description": "The find all succeeded, and the results are available.",
"schema": {
"type": "array",
"items": {
"$ref": "#/definitions/Opportunity"
}
}
},
"401": {
"description": "This request requires user authentication, as configured by the server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"404": {
"description": "No results were found.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"500": {
"description": "Something went wrong during the request; check out the logs on your server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"504": {
"description": "The request took too long to process, and the server timed it out.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"default": {
"description": "Response from Server",
"schema": {
"$ref": "#/definitions/ResponseModel"
}
}
},
"tags": [
"Opportunity"
]
}
},
"/opportunity/query": {
"get": {
"description": "Query opportunities",
"operationId": "findOpportunityQuery",
"parameters": [
{
"name": "limit",
"in": "query",
"description": "The number of records to fetch. The value must be greater than 0, and no greater than 1000.",
"type": "number"
},
{
"name": "skip",
"in": "query",
"description": "The number of records to skip. The value must not be less than 0.",
"type": "number"
},
{
"name": "where",
"in": "query",
"description": "Constrains values for fields. The value should be encoded JSON.",
"type": "string"
},
{
"name": "order",
"in": "query",
"description": "A dictionary of one or more fields specifying sorting of results. In general, you can sort based on any predefined field that you can query using the where operator, as well as on custom fields. The value should be encoded JSON.",
"type": "string"
},
{
"name": "sel",
"in": "query",
"description": "Selects which fields to return from the query. Others are excluded. The value should be encoded JSON.",
"type": "string"
},
{
"name": "unsel",
"in": "query",
"description": "Selects which fields to not return from the query. Others are included. The value should be encoded JSON.",
"type": "string"
},
{
"name": "page",
"in": "query",
"description": "Request page number starting from 1.",
"type": "number"
},
{
"name": "per_page",
"in": "query",
"description": "Number of results per page.",
"type": "number"
}
],
"responses": {
"200": {
"description": "The query succeeded, and the results are available.",
"schema": {
"type": "array",
"items": {
"$ref": "#/definitions/Opportunity"
}
}
},
"401": {
"description": "This request requires user authentication, as configured by the server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"404": {
"description": "No results were found.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"500": {
"description": "Something went wrong during the request; check out the logs on your server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"504": {
"description": "The request took too long to process, and the server timed it out.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"default": {
"description": "Response from Server",
"schema": {
"$ref": "#/definitions/ResponseModel"
}
}
},
"tags": [
"Opportunity"
]
}
},
"/opportunity/count": {
"get": {
"description": "Count opportunities",
"operationId": "findOpportunityCount",
"parameters": [
{
"name": "limit",
"in": "query",
"description": "The number of records to fetch. The value must be greater than 0, and no greater than 1000.",
"type": "number"
},
{
"name": "skip",
"in": "query",
"description": "The number of records to skip. The value must not be less than 0.",
"type": "number"
},
{
"name": "where",
"in": "query",
"description": "Constrains values for fields. The value should be encoded JSON.",
"type": "string"
},
{
"name": "order",
"in": "query",
"description": "A dictionary of one or more fields specifying sorting of results. In general, you can sort based on any predefined field that you can query using the where operator, as well as on custom fields. The value should be encoded JSON.",
"type": "string"
},
{
"name": "sel",
"in": "query",
"description": "Selects which fields to return from the query. Others are excluded. The value should be encoded JSON.",
"type": "string"
},
{
"name": "unsel",
"in": "query",
"description": "Selects which fields to not return from the query. Others are included. The value should be encoded JSON.",
"type": "string"
},
{
"name": "page",
"in": "query",
"description": "Request page number starting from 1.",
"type": "number"
},
{
"name": "per_page",
"in": "query",
"description": "Number of results per page.",
"type": "number"
}
],
"responses": {
"200": {
"description": "The count succeeded, and the results are available.",
"schema": {
"type": "integer"
}
},
"401": {
"description": "This request requires user authentication, as configured by the server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"404": {
"description": "No results were found.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"500": {
"description": "Something went wrong during the request; check out the logs on your server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"504": {
"description": "The request took too long to process, and the server timed it out.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"default": {
"description": "Response from Server",
"schema": {
"$ref": "#/definitions/ResponseModel"
}
}
},
"tags": [
"Opportunity"
]
}
},
"/opportunity/{id}": {
"delete": {
"description": "Delete a specific opportunity",
"operationId": "deleteOpportunityByID",
"parameters": [
{
"name": "id",
"in": "path",
"description": "The opportunity ID",
"required": true,
"type": "string"
}
],
"responses": {
"204": {
"description": "The delete succeeded."
},
"401": {
"description": "This request requires user authentication, as configured by the server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"404": {
"description": "No results were found.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"500": {
"description": "Something went wrong during the request; check out the logs on your server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"504": {
"description": "The request took too long to process, and the server timed it out.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"default": {
"description": "Response from Server",
"schema": {
"$ref": "#/definitions/ResponseModel"
}
}
},
"tags": [
"Opportunity"
]
},
"get": {
"description": "Find one opportunity by ID",
"operationId": "findOpportunityByID",
"parameters": [
{
"name": "id",
"in": "path",
"description": "The find succeeded, and the results are available.",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"description": "Opportunity Response",
"schema": {
"$ref": "#/definitions/Opportunity"
}
},
"401": {
"description": "This request requires user authentication, as configured by the server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"404": {
"description": "No results were found.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"500": {
"description": "Something went wrong during the request; check out the logs on your server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"504": {
"description": "The request took too long to process, and the server timed it out.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"default": {
"description": "Response from Server",
"schema": {
"$ref": "#/definitions/ResponseModel"
}
}
},
"tags": [
"Opportunity"
]
},
"put": {
"description": "Update a specific opportunity",
"operationId": "updateOpportunityByID",
"parameters": [
{
"name": "id",
"in": "path",
"description": "The opportunity ID",
"required": true,
"type": "string"
},
{
"name": "Update",
"in": "body",
"description": "Update body",
"schema": {
"type": "object",
"properties": {
"AccountId": {
"type": "string",
"description": "Account ID"
},
"Name": {
"type": "string",
"description": "Name"
},
"Description": {
"type": "string",
"description": "Description"
},
"StageName": {
"type": "string",
"description": "Stage"
},
"Amount": {
"type": "number",
"description": "Amount"
},
"Probability": {
"type": "number",
"description": "Probability (%)"
}
}
}
}
],
"responses": {
"204": {
"description": "The update succeeded."
},
"401": {
"description": "This request requires user authentication, as configured by the server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"404": {
"description": "No results were found.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"500": {
"description": "Something went wrong during the request; check out the logs on your server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"504": {
"description": "The request took too long to process, and the server timed it out.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"default": {
"description": "Response from Server",
"schema": {
"$ref": "#/definitions/ResponseModel"
}
}
},
"tags": [
"Opportunity"
]
}
},
"/opportunity/distinct/{field}": {
"get": {
"description": "Find distinct opportunities",
"operationId": "findOpportunityDistinctByFIELD",
"parameters": [
{
"name": "limit",
"in": "query",
"description": "The number of records to fetch. The value must be greater than 0, and no greater than 1000.",
"type": "number"
},
{
"name": "skip",
"in": "query",
"description": "The number of records to skip. The value must not be less than 0.",
"type": "number"
},
{
"name": "where",
"in": "query",
"description": "Constrains values for fields. The value should be encoded JSON.",
"type": "string"
},
{
"name": "order",
"in": "query",
"description": "A dictionary of one or more fields specifying sorting of results. In general, you can sort based on any predefined field that you can query using the where operator, as well as on custom fields. The value should be encoded JSON.",
"type": "string"
},
{
"name": "sel",
"in": "query",
"description": "Selects which fields to return from the query. Others are excluded. The value should be encoded JSON.",
"type": "string"
},
{
"name": "unsel",
"in": "query",
"description": "Selects which fields to not return from the query. Others are included. The value should be encoded JSON.",
"type": "string"
},
{
"name": "page",
"in": "query",
"description": "Request page number starting from 1.",
"type": "number"
},
{
"name": "per_page",
"in": "query",
"description": "Number of results per page.",
"type": "number"
},
{
"name": "field",
"in": "path",
"description": "The field name that must be distinct.",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"description": "Distinct fields response.",
"schema": {
"type": "array",
"items": {
"type": "string"
},
"uniqueItems": true
}
},
"401": {
"description": "This request requires user authentication, as configured by the server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"404": {
"description": "No results were found.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"500": {
"description": "Something went wrong during the request; check out the logs on your server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"504": {
"description": "The request took too long to process, and the server timed it out.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"default": {
"description": "Response from Server",
"schema": {
"$ref": "#/definitions/ResponseModel"
}
}
},
"tags": [
"Opportunity"
]
}
},
"/account": {
"post": {
"description": "Create a account",
"operationId": "createAccount",
"parameters": [
{
"name": "Create",
"in": "body",
"description": "Create body",
"schema": {
"type": "object",
"required": [
"Name"
],
"properties": {
"Name": {
"type": "string",
"description": "Account Name"
},
"Type": {
"type": "string",
"description": "Account Type"
},
"Phone": {
"type": "string",
"description": "Account Phone"
}
}
}
}
],
"responses": {
"201": {
"description": "The create succeeded.",
"headers": {
"Location": {
"description": "The URL to the newly created instance.",
"type": "string"
}
}
},
"401": {
"description": "This request requires user authentication, as configured by the server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"404": {
"description": "No results were found.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"500": {
"description": "Something went wrong during the request; check out the logs on your server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"504": {
"description": "The request took too long to process, and the server timed it out.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"default": {
"description": "Response from Server",
"schema": {
"$ref": "#/definitions/ResponseModel"
}
}
},
"tags": [
"Account"
]
},
"get": {
"description": "Find all accounts",
"operationId": "findAccount",
"responses": {
"200": {
"description": "The find all succeeded, and the results are available.",
"schema": {
"type": "array",
"items": {
"$ref": "#/definitions/Account"
}
}
},
"401": {
"description": "This request requires user authentication, as configured by the server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"404": {
"description": "No results were found.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"500": {
"description": "Something went wrong during the request; check out the logs on your server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"504": {
"description": "The request took too long to process, and the server timed it out.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"default": {
"description": "Response from Server",
"schema": {
"$ref": "#/definitions/ResponseModel"
}
}
},
"tags": [
"Account"
]
},
"delete": {
"description": "Deletes all accounts",
"operationId": "deleteAccount",
"responses": {
"204": {
"description": "The delete succeeded."
},
"401": {
"description": "This request requires user authentication, as configured by the server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"404": {
"description": "No results were found.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"500": {
"description": "Something went wrong during the request; check out the logs on your server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"504": {
"description": "The request took too long to process, and the server timed it out.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"default": {
"description": "Response from Server",
"schema": {
"$ref": "#/definitions/ResponseModel"
}
}
},
"tags": [
"Account"
]
}
},
"/account/count": {
"get": {
"description": "Count accounts",
"operationId": "findAccountCount",
"parameters": [
{
"name": "limit",
"in": "query",
"description": "The number of records to fetch. The value must be greater than 0, and no greater than 1000.",
"type": "number"
},
{
"name": "skip",
"in": "query",
"description": "The number of records to skip. The value must not be less than 0.",
"type": "number"
},
{
"name": "where",
"in": "query",
"description": "Constrains values for fields. The value should be encoded JSON.",
"type": "string"
},
{
"name": "order",
"in": "query",
"description": "A dictionary of one or more fields specifying sorting of results. In general, you can sort based on any predefined field that you can query using the where operator, as well as on custom fields. The value should be encoded JSON.",
"type": "string"
},
{
"name": "sel",
"in": "query",
"description": "Selects which fields to return from the query. Others are excluded. The value should be encoded JSON.",
"type": "string"
},
{
"name": "unsel",
"in": "query",
"description": "Selects which fields to not return from the query. Others are included. The value should be encoded JSON.",
"type": "string"
},
{
"name": "page",
"in": "query",
"description": "Request page number starting from 1.",
"type": "number"
},
{
"name": "per_page",
"in": "query",
"description": "Number of results per page.",
"type": "number"
}
],
"responses": {
"200": {
"description": "The count succeeded, and the results are available.",
"schema": {
"type": "integer"
}
},
"401": {
"description": "This request requires user authentication, as configured by the server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"404": {
"description": "No results were found.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"500": {
"description": "Something went wrong during the request; check out the logs on your server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"504": {
"description": "The request took too long to process, and the server timed it out.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"default": {
"description": "Response from Server",
"schema": {
"$ref": "#/definitions/ResponseModel"
}
}
},
"tags": [
"Account"
]
}
},
"/account/query": {
"get": {
"description": "Query accounts",
"operationId": "findAccountQuery",
"parameters": [
{
"name": "limit",
"in": "query",
"description": "The number of records to fetch. The value must be greater than 0, and no greater than 1000.",
"type": "number"
},
{
"name": "skip",
"in": "query",
"description": "The number of records to skip. The value must not be less than 0.",
"type": "number"
},
{
"name": "where",
"in": "query",
"description": "Constrains values for fields. The value should be encoded JSON.",
"type": "string"
},
{
"name": "order",
"in": "query",
"description": "A dictionary of one or more fields specifying sorting of results. In general, you can sort based on any predefined field that you can query using the where operator, as well as on custom fields. The value should be encoded JSON.",
"type": "string"
},
{
"name": "sel",
"in": "query",
"description": "Selects which fields to return from the query. Others are excluded. The value should be encoded JSON.",
"type": "string"
},
{
"name": "unsel",
"in": "query",
"description": "Selects which fields to not return from the query. Others are included. The value should be encoded JSON.",
"type": "string"
},
{
"name": "page",
"in": "query",
"description": "Request page number starting from 1.",
"type": "number"
},
{
"name": "per_page",
"in": "query",
"description": "Number of results per page.",
"type": "number"
}
],
"responses": {
"200": {
"description": "The query succeeded, and the results are available.",
"schema": {
"type": "array",
"items": {
"$ref": "#/definitions/Account"
}
}
},
"401": {
"description": "This request requires user authentication, as configured by the server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"404": {
"description": "No results were found.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"500": {
"description": "Something went wrong during the request; check out the logs on your server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"504": {
"description": "The request took too long to process, and the server timed it out.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"default": {
"description": "Response from Server",
"schema": {
"$ref": "#/definitions/ResponseModel"
}
}
},
"tags": [
"Account"
]
}
},
"/account/{id}": {
"get": {
"description": "Find one account by ID",
"operationId": "findAccountByID",
"parameters": [
{
"name": "id",
"in": "path",
"description": "The find succeeded, and the results are available.",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"description": "Account Response",
"schema": {
"$ref": "#/definitions/Account"
}
},
"401": {
"description": "This request requires user authentication, as configured by the server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"404": {
"description": "No results were found.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"500": {
"description": "Something went wrong during the request; check out the logs on your server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"504": {
"description": "The request took too long to process, and the server timed it out.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"default": {
"description": "Response from Server",
"schema": {
"$ref": "#/definitions/ResponseModel"
}
}
},
"tags": [
"Account"
]
},
"delete": {
"description": "Delete a specific account",
"operationId": "deleteAccountByID",
"parameters": [
{
"name": "id",
"in": "path",
"description": "The account ID",
"required": true,
"type": "string"
}
],
"responses": {
"204": {
"description": "The delete succeeded."
},
"401": {
"description": "This request requires user authentication, as configured by the server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"404": {
"description": "No results were found.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"500": {
"description": "Something went wrong during the request; check out the logs on your server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"504": {
"description": "The request took too long to process, and the server timed it out.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"default": {
"description": "Response from Server",
"schema": {
"$ref": "#/definitions/ResponseModel"
}
}
},
"tags": [
"Account"
]
},
"put": {
"description": "Update a specific account",
"operationId": "updateAccountByID",
"parameters": [
{
"name": "id",
"in": "path",
"description": "The account ID",
"required": true,
"type": "string"
},
{
"name": "Update",
"in": "body",
"description": "Update body",
"schema": {
"type": "object",
"properties": {
"Name": {
"type": "string",
"description": "Account Name"
},
"Type": {
"type": "string",
"description": "Account Type"
},
"Phone": {
"type": "string",
"description": "Account Phone"
}
}
}
}
],
"responses": {
"204": {
"description": "The update succeeded."
},
"401": {
"description": "This request requires user authentication, as configured by the server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"404": {
"description": "No results were found.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"500": {
"description": "Something went wrong during the request; check out the logs on your server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"504": {
"description": "The request took too long to process, and the server timed it out.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"default": {
"description": "Response from Server",
"schema": {
"$ref": "#/definitions/ResponseModel"
}
}
},
"tags": [
"Account"
]
}
},
"/account/distinct/{field}": {
"get": {
"description": "Find distinct accounts",
"operationId": "findAccountDistinctByFIELD",
"parameters": [
{
"name": "limit",
"in": "query",
"description": "The number of records to fetch. The value must be greater than 0, and no greater than 1000.",
"type": "number"
},
{
"name": "skip",
"in": "query",
"description": "The number of records to skip. The value must not be less than 0.",
"type": "number"
},
{
"name": "where",
"in": "query",
"description": "Constrains values for fields. The value should be encoded JSON.",
"type": "string"
},
{
"name": "order",
"in": "query",
"description": "A dictionary of one or more fields specifying sorting of results. In general, you can sort based on any predefined field that you can query using the where operator, as well as on custom fields. The value should be encoded JSON.",
"type": "string"
},
{
"name": "sel",
"in": "query",
"description": "Selects which fields to return from the query. Others are excluded. The value should be encoded JSON.",
"type": "string"
},
{
"name": "unsel",
"in": "query",
"description": "Selects which fields to not return from the query. Others are included. The value should be encoded JSON.",
"type": "string"
},
{
"name": "page",
"in": "query",
"description": "Request page number starting from 1.",
"type": "number"
},
{
"name": "per_page",
"in": "query",
"description": "Number of results per page.",
"type": "number"
},
{
"name": "field",
"in": "path",
"description": "The field name that must be distinct.",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"description": "Distinct fields response.",
"schema": {
"type": "array",
"items": {
"type": "string"
},
"uniqueItems": true
}
},
"401": {
"description": "This request requires user authentication, as configured by the server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"404": {
"description": "No results were found.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"500": {
"description": "Something went wrong during the request; check out the logs on your server.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"504": {
"description": "The request took too long to process, and the server timed it out.",
"schema": {
"$ref": "#/definitions/ErrorModel"
}
},
"default": {
"description": "Response from Server",
"schema": {
"$ref": "#/definitions/ResponseModel"
}
}
},
"tags": [
"Account"
]
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment