mirror of
https://github.com/discord/discord-api-spec.git
synced 2024-12-22 00:21:23 -05:00
Automated spec update (5323)
This commit is contained in:
parent
f02d9d6c78
commit
c420119613
1 changed files with 145 additions and 0 deletions
|
@ -15109,6 +15109,16 @@
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"recurrence_rule": {
|
||||||
|
"oneOf": [
|
||||||
|
{
|
||||||
|
"type": "null"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"$ref": "#/components/schemas/RecurrenceRule"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
"entity_metadata": {
|
"entity_metadata": {
|
||||||
"$ref": "#/components/schemas/EntityMetadataExternal"
|
"$ref": "#/components/schemas/EntityMetadataExternal"
|
||||||
}
|
}
|
||||||
|
@ -15195,6 +15205,16 @@
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"recurrence_rule": {
|
||||||
|
"oneOf": [
|
||||||
|
{
|
||||||
|
"type": "null"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"$ref": "#/components/schemas/RecurrenceRule"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
"entity_metadata": {
|
"entity_metadata": {
|
||||||
"$ref": "#/components/schemas/EntityMetadataExternal"
|
"$ref": "#/components/schemas/EntityMetadataExternal"
|
||||||
}
|
}
|
||||||
|
@ -24122,6 +24142,91 @@
|
||||||
"metadata"
|
"metadata"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"RecurrenceRule": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"start": {
|
||||||
|
"type": "string",
|
||||||
|
"format": "date-time"
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"type": [
|
||||||
|
"string",
|
||||||
|
"null"
|
||||||
|
],
|
||||||
|
"format": "date-time"
|
||||||
|
},
|
||||||
|
"frequency": {
|
||||||
|
"$ref": "#/components/schemas/RecurrenceRuleFrequencies"
|
||||||
|
},
|
||||||
|
"interval": {
|
||||||
|
"type": "integer",
|
||||||
|
"format": "int32"
|
||||||
|
},
|
||||||
|
"by_weekday": {
|
||||||
|
"type": [
|
||||||
|
"array",
|
||||||
|
"null"
|
||||||
|
],
|
||||||
|
"items": {
|
||||||
|
"$ref": "#/components/schemas/RecurrenceRuleWeekdays"
|
||||||
|
},
|
||||||
|
"maxItems": 7,
|
||||||
|
"uniqueItems": true
|
||||||
|
},
|
||||||
|
"by_month": {
|
||||||
|
"type": [
|
||||||
|
"array",
|
||||||
|
"null"
|
||||||
|
],
|
||||||
|
"items": {
|
||||||
|
"$ref": "#/components/schemas/RecurrenceRuleMonths"
|
||||||
|
},
|
||||||
|
"maxItems": 12,
|
||||||
|
"uniqueItems": true
|
||||||
|
},
|
||||||
|
"by_month_day": {
|
||||||
|
"type": [
|
||||||
|
"array",
|
||||||
|
"null"
|
||||||
|
],
|
||||||
|
"items": {
|
||||||
|
"type": "integer",
|
||||||
|
"minimum": 1,
|
||||||
|
"maximum": 31,
|
||||||
|
"format": "int32"
|
||||||
|
},
|
||||||
|
"maxItems": 31,
|
||||||
|
"uniqueItems": true
|
||||||
|
},
|
||||||
|
"by_year_day": {
|
||||||
|
"type": [
|
||||||
|
"array",
|
||||||
|
"null"
|
||||||
|
],
|
||||||
|
"items": {
|
||||||
|
"type": "integer",
|
||||||
|
"minimum": 1,
|
||||||
|
"maximum": 365,
|
||||||
|
"format": "int32"
|
||||||
|
},
|
||||||
|
"maxItems": 365,
|
||||||
|
"uniqueItems": true
|
||||||
|
},
|
||||||
|
"count": {
|
||||||
|
"type": [
|
||||||
|
"integer",
|
||||||
|
"null"
|
||||||
|
],
|
||||||
|
"format": "int32"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"required": [
|
||||||
|
"start",
|
||||||
|
"frequency",
|
||||||
|
"interval"
|
||||||
|
]
|
||||||
|
},
|
||||||
"RecurrenceRuleFrequencies": {
|
"RecurrenceRuleFrequencies": {
|
||||||
"type": "integer",
|
"type": "integer",
|
||||||
"oneOf": [
|
"oneOf": [
|
||||||
|
@ -25314,6 +25419,16 @@
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"recurrence_rule": {
|
||||||
|
"oneOf": [
|
||||||
|
{
|
||||||
|
"type": "null"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"$ref": "#/components/schemas/RecurrenceRule"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
"entity_metadata": {
|
"entity_metadata": {
|
||||||
"oneOf": [
|
"oneOf": [
|
||||||
{
|
{
|
||||||
|
@ -25406,6 +25521,16 @@
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"recurrence_rule": {
|
||||||
|
"oneOf": [
|
||||||
|
{
|
||||||
|
"type": "null"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"$ref": "#/components/schemas/RecurrenceRule"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
"entity_metadata": {
|
"entity_metadata": {
|
||||||
"oneOf": [
|
"oneOf": [
|
||||||
{
|
{
|
||||||
|
@ -27178,6 +27303,16 @@
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"recurrence_rule": {
|
||||||
|
"oneOf": [
|
||||||
|
{
|
||||||
|
"type": "null"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"$ref": "#/components/schemas/RecurrenceRule"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
"entity_metadata": {
|
"entity_metadata": {
|
||||||
"oneOf": [
|
"oneOf": [
|
||||||
{
|
{
|
||||||
|
@ -27270,6 +27405,16 @@
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"recurrence_rule": {
|
||||||
|
"oneOf": [
|
||||||
|
{
|
||||||
|
"type": "null"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"$ref": "#/components/schemas/RecurrenceRule"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
"entity_metadata": {
|
"entity_metadata": {
|
||||||
"oneOf": [
|
"oneOf": [
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue