changedInput schema / properties / mediaId / description
Previous value: -"Restrict to this AniList anime ID."New value: +"Restrict to this AniList anime ID (not manga)."
addedInput schema / properties / mediaId / exclusiveMinimum
Added value: +0
removedInput schema / properties / mediaId / minimum
Removed value: --2147483648
changedInput schema / properties / notYetAired / description
Previous value: -"Set false to include already-aired episodes too."New value: +"Set false to instead list only already-aired episodes (confirmed live: this swaps to a past-only result set, it doesn't add past episodes to the still-upcoming ones)."
changedInput schema / properties / page / description
Previous value: -"Page number for pagination."New value: +"Page number for pagination. AniList's paginated connections (search results, a title's characters/staff/reviews, activity feeds, forum comments) reject a page whose page × perPage exceeds ~5000 entries with an upstream error, so paging that deep fails rather than returning more results."
addedInput schema / properties / perPage / exclusiveMinimum
Added value: +0
removedInput schema / properties / perPage / minimum
Removed value: -1
addedOutput schema / properties / hasNextPage
Added value: +{
+ "anyOf": [
+ {
+ "type": "boolean"
+ },
+ {
+ "type": "null"
+ }
+ ]
+}
changedOutput schema / properties / schedule / items / properties / airingAt / anyOf
Previous value: -[
- {
- "type": "number"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "minimum": 0,
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+]
changedOutput schema / properties / schedule / items / properties / episode / anyOf
Previous value: -[
- {
- "maximum": 9007199254740991,
- "minimum": -9007199254740991,
- "type": "integer"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "maximum": 9007199254740991,
+ "minimum": 0,
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+]
changedOutput schema / properties / schedule / items / properties / media / anyOf
Previous value: -[
- {
- "additionalProperties": {},
- "properties": {
- "id": {
- "maximum": 9007199254740991,
- "minimum": -9007199254740991,
- "type": "integer"
- },
- "siteUrl": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ]
- },
- "title": {
- "anyOf": [
- {
- "additionalProperties": false,
- "properties": {
- "english": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ]
- },
- "romaji": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ]
- }
- },
- "type": "object"
- },
- {
- "type": "null"
- }
- ]
- }
- },
- "required": [
- "id"
- ],
- "type": "object"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "additionalProperties": {},
+ "properties": {
+ "id": {
+ "exclusiveMinimum": 0,
+ "maximum": 2147483647,
+ "type": "integer"
+ },
+ "siteUrl": {
+ "anyOf": [
+ {
+ "format": "uri",
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "title": {
+ "anyOf": [
+ {
+ "additionalProperties": false,
+ "properties": {
+ "english": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "romaji": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ }
+ },
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ }
+ },
+ "required": [
+ "id"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+]