airbyte-custom-connector/source-simplecast-fecther/source_simplecast_fecther/schemas/episode.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"]
}
}
}