* add new stream properties * add PR number * change additionalProperties to true * revert bumoed version of an image, add json schema in the tests files, remove additionalProperties: true * gradle build completed * improve test acceptance quality, adjust the order of objects for the properties json schema * delete reduntant configured_catalog, add json schema for all streams * auto-bump connector version [ci skip] Co-authored-by: Sajarin <sajarindider@gmail.com> Co-authored-by: Marie Amelie Sandrock <marieamelie94@gmail.com> Co-authored-by: Octavia Squidington III <octavia-squidington-iii@users.noreply.github.com>
37 lines
777 B
JSON
37 lines
777 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": ["null", "object"],
|
|
"properties": {
|
|
"surveys": {
|
|
"type": ["null", "array"],
|
|
"items": {
|
|
"properties": {
|
|
"title": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"status": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"public_hash_id": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"inserted_at": {
|
|
"type": ["null", "string"],
|
|
"format": "date-time"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"name": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"public_hash_id": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"inserted_at": {
|
|
"type": ["null", "string"],
|
|
"format": "date-time"
|
|
}
|
|
}
|
|
}
|