1
0
mirror of synced 2026-01-07 00:05:48 -05:00
Files
airbyte/airbyte-integrations/connectors/source-rss/source_rss/schemas/items.json
2022-11-16 22:46:33 +07:00

36 lines
665 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"required": ["published"],
"properties": {
"title": {
"type": ["null", "string"]
},
"link": {
"type": ["null", "string"]
},
"description": {
"type": ["null", "string"]
},
"author": {
"type": ["null", "string"]
},
"category": {
"type": ["null", "string"]
},
"comments": {
"type": ["null", "string"]
},
"enclosure": {
"type": ["null", "string"]
},
"guid": {
"type": ["null", "string"]
},
"published": {
"type": ["string"],
"format": "date-time"
}
}
}