-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use JSON schema
title
for setting labels
- Loading branch information
1 parent
8e3a87e
commit 5738084
Showing
3 changed files
with
77 additions
and
15 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{ | ||
"name": "tap-example", | ||
"description": "Singer.io tap for extracting data from example", | ||
"version": "0.1.0", | ||
"sdk_version": "0.40.0", | ||
"capabilities": [ | ||
"catalog", | ||
"state", | ||
"discover", | ||
"about", | ||
"stream-maps", | ||
"schema-flattening" | ||
], | ||
"settings": { | ||
"type": "object", | ||
"properties": { | ||
"username": { | ||
"type": "string", | ||
"description": "The username to use when authenticating with the API" | ||
}, | ||
"password": { | ||
"type": "string", | ||
"description": "The password to use when authenticating with the API" | ||
}, | ||
"cmo": { | ||
"type": ["string", "null"], | ||
"title": "Client Management Organization", | ||
"description": "The client management organization to use when authenticating with the API" | ||
} | ||
}, | ||
"required": ["username", "password"] | ||
} | ||
} |
This file contains 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