* 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
20 lines
560 B
JSON
20 lines
560 B
JSON
{
|
|
"documentationUrl": "https://docs.airbyte.com/integrations/sources/pokeapi",
|
|
"connectionSpecification": {
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "Pokeapi Spec",
|
|
"type": "object",
|
|
"required": ["pokemon_name"],
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"pokemon_name": {
|
|
"type": "string",
|
|
"title": "Pokemon Name",
|
|
"description": "Pokemon requested from the API.",
|
|
"pattern": "^[a-z0-9_\\-]+$",
|
|
"examples": ["ditto", "luxray", "snorlax"]
|
|
}
|
|
}
|
|
}
|
|
}
|