/social.popfeed.feed.review

Lexicon Definitions

{
  "lexicon": 1,
  "id": "social.popfeed.feed.review",
  "defs": {
    "main": {
      "type": "record",
      "key": "tid",
      "record": {
        "type": "object",
        "required": [],
        "properties": {
          "subject": {
            "type": "ref",
            "ref": "#subject"
          },
          "rating": {
            "type": "integer"
          },
          "review": {
            "type": "string"
          },
          "spoilers": {
            "type": "boolean",
            "default": false
          },
          "tags": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "langs": {
            "type": "array",
            "items": {
              "type": "string",
              "format": "language"
            }
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      }
    },
    "subject": {
      "type": "object",
      "required": [
        "type",
        "title"
      ],
      "properties": {
        "type": {
          "type": "string",
          "knownValues": [
            "movie",
            "tv",
            "book",
            "music"
          ]
        },
        "title": {
          "type": "string"
        },
        "creator": {
          "type": "string"
        },
        "year": {
          "type": "integer"
        },
        "tmdbId": {
          "type": "string"
        },
        "imdbId": {
          "type": "string"
        },
        "isbn": {
          "type": "string"
        },
        "spotifyId": {
          "type": "string"
        },
        "url": {
          "type": "string",
          "format": "uri"
        }
      }
    }
  }
}