@itentialopensource/adapter-microsoft_dynamics
Version:
This adapter integrates with system described as: Microsoft Dynamics 365: Business Applications
100 lines • 2.37 kB
JSON
{
"$id": "schema.json",
"type": "object",
"schema": "http://json-schema.org/draft-07/schema#",
"translate": true,
"dynamicfields": true,
"properties": {
"ph_request_type": {
"type": "string",
"description": "type of request (internal to adapter)",
"default": "listPaymentMethods",
"enum": [
"listPaymentMethods",
"postPaymentMethod",
"getPaymentMethod",
"deletePaymentMethod",
"patchPaymentMethod"
],
"external_name": "ph_request_type"
},
"companyId": {
"type": "string",
"description": "(v1.0) id for company",
"parse": false,
"encode": false,
"encrypt": {
"type": "AES",
"key": ""
},
"external_name": "company_id"
},
"top": {
"type": "number",
"description": "(v1.0) Number of items to return from the top of the list",
"parse": false,
"encode": false,
"encrypt": {
"type": "AES",
"key": ""
},
"external_name": "$top"
},
"skip": {
"type": "number",
"description": "(v1.0) Number of items to skip from the list",
"parse": false,
"encode": false,
"encrypt": {
"type": "AES",
"key": ""
},
"external_name": "$skip"
},
"limit": {
"type": "number",
"description": "(v1.0) Number of items to return from the list",
"parse": false,
"encode": false,
"encrypt": {
"type": "AES",
"key": ""
},
"external_name": "$limit"
},
"filter": {
"type": "string",
"description": "(v1.0) Filtering expression",
"parse": false,
"encode": false,
"encrypt": {
"type": "AES",
"key": ""
},
"external_name": "$filter"
},
"select": {
"type": "array",
"description": "(v1.0) Selected properties to be retrieved",
"parse": false,
"encode": false,
"encrypt": {
"type": "AES",
"key": ""
},
"external_name": "$select"
},
"paymentMethodId": {
"type": "string",
"description": "(v1.0) id for paymentMethod",
"parse": false,
"encode": false,
"encrypt": {
"type": "AES",
"key": ""
},
"external_name": "paymentMethod_id"
}
},
"definitions": {}
}