changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "additionalProperties": false,
+ "properties": {
+ "description": {
+ "description": "RSS episode description",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "digest_slug": {
+ "type": "string"
+ },
+ "duration_sec": {
+ "type": [
+ "integer",
+ "null"
+ ]
+ },
+ "eid": {
+ "type": "string"
+ },
+ "published": {
+ "type": "string"
+ },
+ "show": {
+ "type": "string"
+ },
+ "speakers": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "summary": {
+ "type": "string"
+ },
+ "title": {
+ "type": "string"
+ },
+ "transcript": {
+ "type": "string"
+ },
+ "url": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "eid",
+ "title",
+ "show",
+ "published",
+ "duration_sec",
+ "description",
+ "summary",
+ "transcript",
+ "speakers",
+ "digest_slug",
+ "url"
+ ],
+ "type": "object"
+}