* Quote and comma-separate Pokemon examples to clarify help text Closes #12792 * Bump version * auto-bump connector version Co-authored-by: Octavia Squidington III <octavia-squidington-iii@users.noreply.github.com>
20 lines
559 B
JSON
20 lines
559 B
JSON
{
|
|
"documentationUrl": "https://docs.airbyte.io/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"]
|
|
}
|
|
}
|
|
}
|
|
}
|