changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "additionalProperties": false,
+ "properties": {
+ "invites": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "channel_id": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "channel_name": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "code": {
+ "type": "string"
+ },
+ "created_at": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "expires_at": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "guild_id": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "guild_name": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "inviter": {
+ "anyOf": [
+ {
+ "additionalProperties": false,
+ "properties": {
+ "id": {
+ "type": "string"
+ },
+ "username": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "username"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "max_age": {
+ "type": "number"
+ },
+ "max_uses": {
+ "type": "number"
+ },
+ "temporary": {
+ "type": "boolean"
+ },
+ "url": {
+ "type": "string"
+ },
+ "uses": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "code",
+ "url",
+ "guild_id",
+ "guild_name",
+ "channel_id",
+ "channel_name",
+ "inviter",
+ "uses",
+ "max_uses",
+ "max_age",
+ "temporary",
+ "created_at",
+ "expires_at"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "invites"
+ ],
+ "type": "object"
+}