* update definitions with new .com docs urls * update docs urls in specs * update generators * regenerate scaffold connectors * remove unrelated changes * update more urls * update specs * fix tests * run `:airbyte-config:specs:generateSeedConnectorSpecs` to fix formatting * revert docs changes to make pr more reviewable * revert generator readme changes to make more reviewable * fix mysql strict encrypt expected spec * fix postgres expected spec
41 lines
1.5 KiB
JSON
41 lines
1.5 KiB
JSON
{
|
|
"documentationUrl": "https://docs.airbyte.com/integrations/sources/sentry",
|
|
"connectionSpecification": {
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "Sentry Spec",
|
|
"type": "object",
|
|
"required": ["auth_token", "organization", "project"],
|
|
"additionalProperties": true,
|
|
"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."
|
|
},
|
|
"discover_fields": {
|
|
"type": "array",
|
|
"item": "string",
|
|
"title": "Discover Event Fields",
|
|
"description": "Fields to retrieve when fetching discover events"
|
|
}
|
|
}
|
|
}
|
|
}
|