mirror of
https://github.com/status-im/airbyte-custom-connector.git
synced 2025-03-01 17:10:30 +00:00
* adding endpoint technology_application and technology_device_class * factorizing code Signed-off-by: Alexis Pentori <alexis@status.im>
44 lines
852 B
JSON
44 lines
852 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"properties": {
|
|
"id": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"title": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"published_at": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"updated_at": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"status": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"season": {
|
|
"type": ["null", "object"],
|
|
"properties": {
|
|
"href": { "type" : ["null", "string"]},
|
|
"number": {"type": ["null", "number"]}
|
|
}
|
|
},
|
|
"number": {
|
|
"type": ["null", "number"]
|
|
},
|
|
"descritpion": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"duration": {
|
|
"type": ["null", "number"]
|
|
},
|
|
"token": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"type": {
|
|
"type": ["null", "string"]
|
|
}
|
|
}
|
|
}
|