35 lines
1.3 KiB
JSON
35 lines
1.3 KiB
JSON
{
|
|
"documentationUrl": "https://docs.airbyte.io/integrations/sources/sentry",
|
|
"connectionSpecification": {
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "Sentry Spec",
|
|
"type": "object",
|
|
"required": ["auth_token", "organization", "project"],
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"auth_token": {
|
|
"type": "string",
|
|
"title": "Authentication Tokens",
|
|
"description": "Log into Sentry and then <a href=\"https://sentry.io/settings/account/api/auth-tokens/\">create authentication tokens</a>.For self-hosted, you can find or create authentication tokens by visiting \"{instance_url_prefix}/settings/account/api/auth-tokens/\"",
|
|
"airbyte_secret": true
|
|
},
|
|
"hostname": {
|
|
"type": "string",
|
|
"title": "Host Name",
|
|
"description": "Host name of Sentry API server.For self-hosted, specify your host name here. Otherwise, leave it empty.",
|
|
"default": "sentry.io"
|
|
},
|
|
"organization": {
|
|
"type": "string",
|
|
"title": "Organization",
|
|
"description": "The slug of the organization the groups belong to."
|
|
},
|
|
"project": {
|
|
"type": "string",
|
|
"title": "Project",
|
|
"description": "The name (slug) of the Project you want to sync."
|
|
}
|
|
}
|
|
}
|
|
}
|