1
0
mirror of synced 2026-01-23 13:01:50 -05:00
Files
airbyte/airbyte-integrations/connectors/source-pokeapi/source_pokeapi/spec.json
Evan Tahler a5f1366363 Quote and comma-separate Pokemon examples to clarify help text (#12942)
* 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>
2022-05-18 16:59:45 -07:00

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"]
}
}
}
}