Created
February 6, 2017 20:30
-
-
Save bobvanluijt/da21e9f58da184ec1ff37f622d70e790 to your computer and use it in GitHub Desktop.
Weave - Adapters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Adapter": { | |
"properties": { | |
"activateUrl": { | |
"description": "URL to adapter web flow to activate the adapter. Deprecated, use the activationUrl returned in the response of the Adapters.activate API.", | |
"type": "string" | |
}, | |
"activated": { | |
"description": "Whether this adapter has been activated for the current user.", | |
"type": "boolean" | |
}, | |
"deactivateUrl": { | |
"description": "URL to adapter web flow to disconnect the adapter. Deprecated, the adapter will be notified via pubsub.", | |
"type": "string" | |
}, | |
"displayName": { | |
"description": "Display name of the adapter.", | |
"type": "string" | |
}, | |
"iconUrl": { | |
"description": "URL to an icon that represents the adapter.", | |
"type": "string" | |
}, | |
"id": { | |
"description": "ID of the adapter.", | |
"type": "string" | |
}, | |
"manageUrl": { | |
"description": "URL to adapter web flow to connect new devices. Only used for adapters that cannot automatically detect new devices. This field is returned only if the user has already activated the adapter.", | |
"type": "string" | |
} | |
}, | |
"type": "object" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment