@itentialopensource/adapter-solarwinds_servicedesk
Version:
This adapter integrates with system described as: solarwindsServiceDeskApi.
48 lines • 1.11 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": "getContractById",
"enum": [
"getContractById",
"updateContractById",
"deleteContractById",
"getContracts",
"createContract",
"createItem",
"updateItemById",
"deleteitemById"
],
"external_name": "ph_request_type"
},
"contractId": {
"type": "string",
"description": "Numeric ID of the contract",
"parse": false,
"encode": false,
"encrypt": {
"type": "AES",
"key": ""
},
"external_name": "contract_id"
},
"itemId": {
"type": "string",
"description": "Numeric ID of the item",
"parse": false,
"encode": false,
"encrypt": {
"type": "AES",
"key": ""
},
"external_name": "item_id"
}
},
"definitions": {}
}