@itentialopensource/adapter-jira
Version:
This adapter integrates with system Jira
46 lines (45 loc) • 971 B
JSON
{
"$id": "token_request_example",
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"translate": true,
"dynamicfields": false,
"properties": {
"ph_request_type": {
"type": "string",
"description": "type of request (internal to adapter)",
"default": "getToken",
"enum": [
"getToken"
],
"external_name": "ph_request_type"
},
"username": {
"type": "string",
"description": "username to log in with",
"parse": false,
"encode": false,
"encrypt": {
"type": "AES",
"key": ""
},
"external_name": "user"
},
"password": {
"type": "string",
"description": "password to log in with",
"parse": false,
"encode": false,
"encrypt": {
"type": "AES",
"key": ""
},
"external_name": "passwd"
}
},
"required": [
"username",
"password"
],
"definitions": {}
}