-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
42c2fc6
commit 570273d
Showing
3 changed files
with
84 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
{ | ||
"name": "tap-faker-example", | ||
"description": "Faker tap class.", | ||
"version": "[could not be detected]", | ||
"sdk_version": "0.35.0", | ||
"supported_python_versions": null, | ||
"capabilities": [], | ||
"settings": { | ||
"type": "object", | ||
"properties": { | ||
"faker_config": { | ||
"type": [ | ||
"object", | ||
"null" | ||
], | ||
"properties": { | ||
"seed": { | ||
"oneOf": [ | ||
{ | ||
"type": [ | ||
"number" | ||
] | ||
}, | ||
{ | ||
"type": [ | ||
"string" | ||
] | ||
}, | ||
{ | ||
"type": [ | ||
"boolean" | ||
] | ||
} | ||
], | ||
"description": "Value to seed the Faker generator for deterministic output: https://faker.readthedocs.io/en/master/#seeding-the-generator" | ||
}, | ||
"locale": { | ||
"oneOf": [ | ||
{ | ||
"type": [ | ||
"string" | ||
] | ||
}, | ||
{ | ||
"type": "array", | ||
"items": { | ||
"type": [ | ||
"string" | ||
] | ||
} | ||
} | ||
], | ||
"description": "One or more LCID locale strings to produce localized output for: https://faker.readthedocs.io/en/master/#localization" | ||
} | ||
}, | ||
"description": "Config for the [`Faker`](https://faker.readthedocs.io/en/master/) instance variable `fake` used within map expressions. Only applicable if the plugin specifies `faker` as an addtional dependency (through the `singer-sdk` `faker` extra or directly)." | ||
} | ||
}, | ||
"required": [] | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters