changedInput schema / properties / limit / description
Previous value: -"Max results per page (1-25)."New value: +"Max results per page (1-50)."
changedInput schema / properties / limit / maximum
Previous value: -25New value: +50
addedInput schema / properties / page
Added value: +{
+ "description": "1-based page number for pagination (1-1000).",
+ "maximum": 1000,
+ "minimum": 1,
+ "type": "integer"
+}
addedInput schema / properties / preliminary
Added value: +{
+ "description": "Filter by preliminary. 'true' includes them alongside other reviews (default), 'false' excludes them, 'only' returns exclusively preliminary reviews.",
+ "enum": [
+ "true",
+ "false",
+ "only"
+ ],
+ "type": "string"
+}
addedInput schema / properties / sentiment
Added value: +{
+ "description": "Restrict to reviews with this overall sentiment tag. Omit for all sentiments.",
+ "enum": [
+ "recommended",
+ "mixed_feelings",
+ "not_recommended"
+ ],
+ "type": "string"
+}
addedInput schema / properties / sort
Added value: +{
+ "description": "Sort order. Defaults to most_helpful (Tenrai's own default) when omitted.",
+ "enum": [
+ "newest",
+ "oldest",
+ "most_helpful"
+ ],
+ "type": "string"
+}
addedInput schema / properties / spoilers
Added value: +{
+ "description": "Filter by spoiler. 'true' includes them alongside other reviews (default), 'false' excludes them, 'only' returns exclusively spoiler reviews.",
+ "enum": [
+ "true",
+ "false",
+ "only"
+ ],
+ "type": "string"
+}
addedOutput schema / properties / reviews / items / properties / chapters_read
Added value: +{
+ "maximum": 9007199254740991,
+ "minimum": 0,
+ "type": "integer"
+}
addedOutput schema / properties / reviews / items / properties / date / format
Added value: +"date-time"
addedOutput schema / properties / reviews / items / properties / date / pattern
Added value: +"^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z|([+-](?:[01]\\d|2[0-3]):[0-5]\\d)))$"
addedOutput schema / properties / reviews / items / properties / episodes_watched
Added value: +{
+ "maximum": 9007199254740991,
+ "minimum": 0,
+ "type": "integer"
+}
addedOutput schema / properties / reviews / items / properties / is_preliminary
Added value: +{
+ "type": "boolean"
+}
addedOutput schema / properties / reviews / items / properties / is_spoiler
Added value: +{
+ "type": "boolean"
+}
addedOutput schema / properties / reviews / items / properties / reactions
Added value: +{
+ "additionalProperties": {
+ "maximum": 9007199254740991,
+ "minimum": 0,
+ "type": "integer"
+ },
+ "propertyNames": {
+ "type": "string"
+ },
+ "type": "object"
+}
addedOutput schema / properties / reviews / items / properties / score / maximum
Added value: +10
addedOutput schema / properties / reviews / items / properties / score / minimum
Added value: +1
changedOutput schema / properties / reviews / items / properties / score / type
Previous value: -"number"New value: +"integer"