36 lines
665 B
JSON
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"
|
|
}
|
|
}
|
|
}
|