main - Automated spec update (4534)
made at remote:2023-09-26T21:46:01 taken at now:2023-09-26T22:10:02 made by remote Nelly (automation bot) <>
This commit is contained in:
parent
5f22fe7e12
commit
ca04a610fd
1 changed files with 229 additions and 0 deletions
|
@ -15255,6 +15255,16 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"recurrence_rule": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "null"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/RecurrenceRuleResponse"
|
||||
}
|
||||
]
|
||||
},
|
||||
"user_count": {
|
||||
"type": [
|
||||
"integer",
|
||||
|
@ -24059,6 +24069,195 @@
|
|||
"metadata"
|
||||
]
|
||||
},
|
||||
"RecurrenceRuleFrequencies": {
|
||||
"type": "integer",
|
||||
"oneOf": [
|
||||
{
|
||||
"title": "DAILY",
|
||||
"const": 3
|
||||
},
|
||||
{
|
||||
"title": "WEEKLY",
|
||||
"const": 2
|
||||
},
|
||||
{
|
||||
"title": "MONTHLY",
|
||||
"const": 1
|
||||
},
|
||||
{
|
||||
"title": "YEARLY",
|
||||
"const": 0
|
||||
}
|
||||
],
|
||||
"format": "int32"
|
||||
},
|
||||
"RecurrenceRuleMonths": {
|
||||
"type": "integer",
|
||||
"oneOf": [
|
||||
{
|
||||
"title": "JANUARY",
|
||||
"const": 1
|
||||
},
|
||||
{
|
||||
"title": "FEBURARY",
|
||||
"const": 2
|
||||
},
|
||||
{
|
||||
"title": "MARCH",
|
||||
"const": 3
|
||||
},
|
||||
{
|
||||
"title": "APRIL",
|
||||
"const": 4
|
||||
},
|
||||
{
|
||||
"title": "MAY",
|
||||
"const": 5
|
||||
},
|
||||
{
|
||||
"title": "JUNE",
|
||||
"const": 6
|
||||
},
|
||||
{
|
||||
"title": "JULY",
|
||||
"const": 7
|
||||
},
|
||||
{
|
||||
"title": "AUGUEST",
|
||||
"const": 8
|
||||
},
|
||||
{
|
||||
"title": "SEPTEMBER",
|
||||
"const": 9
|
||||
},
|
||||
{
|
||||
"title": "OCTOBER",
|
||||
"const": 10
|
||||
},
|
||||
{
|
||||
"title": "NOVEMBER",
|
||||
"const": 11
|
||||
},
|
||||
{
|
||||
"title": "DECEMBER",
|
||||
"const": 12
|
||||
}
|
||||
],
|
||||
"format": "int32"
|
||||
},
|
||||
"RecurrenceRuleResponse": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"start": {
|
||||
"type": "string",
|
||||
"format": "date-time"
|
||||
},
|
||||
"end": {
|
||||
"type": [
|
||||
"string",
|
||||
"null"
|
||||
],
|
||||
"format": "date-time"
|
||||
},
|
||||
"frequency": {
|
||||
"$ref": "#/components/schemas/RecurrenceRuleFrequencies"
|
||||
},
|
||||
"interval": {
|
||||
"type": [
|
||||
"integer",
|
||||
"null"
|
||||
],
|
||||
"format": "int32"
|
||||
},
|
||||
"by_weekday": {
|
||||
"type": [
|
||||
"array",
|
||||
"null"
|
||||
],
|
||||
"items": {
|
||||
"$ref": "#/components/schemas/RecurrenceRuleWeekdays"
|
||||
},
|
||||
"uniqueItems": true
|
||||
},
|
||||
"by_month": {
|
||||
"type": [
|
||||
"array",
|
||||
"null"
|
||||
],
|
||||
"items": {
|
||||
"$ref": "#/components/schemas/RecurrenceRuleMonths"
|
||||
},
|
||||
"uniqueItems": true
|
||||
},
|
||||
"by_month_day": {
|
||||
"type": [
|
||||
"array",
|
||||
"null"
|
||||
],
|
||||
"items": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"uniqueItems": true
|
||||
},
|
||||
"by_year_day": {
|
||||
"type": [
|
||||
"array",
|
||||
"null"
|
||||
],
|
||||
"items": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"uniqueItems": true
|
||||
},
|
||||
"count": {
|
||||
"type": [
|
||||
"integer",
|
||||
"null"
|
||||
],
|
||||
"format": "int32"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"start",
|
||||
"frequency"
|
||||
]
|
||||
},
|
||||
"RecurrenceRuleWeekdays": {
|
||||
"type": "integer",
|
||||
"oneOf": [
|
||||
{
|
||||
"title": "MONDAY",
|
||||
"const": 0
|
||||
},
|
||||
{
|
||||
"title": "TUESDAY",
|
||||
"const": 1
|
||||
},
|
||||
{
|
||||
"title": "WEDNESDAY",
|
||||
"const": 2
|
||||
},
|
||||
{
|
||||
"title": "THURSDAY",
|
||||
"const": 3
|
||||
},
|
||||
{
|
||||
"title": "FRIDAY",
|
||||
"const": 4
|
||||
},
|
||||
{
|
||||
"title": "SATURDAY",
|
||||
"const": 5
|
||||
},
|
||||
{
|
||||
"title": "SUNDAY",
|
||||
"const": 6
|
||||
}
|
||||
],
|
||||
"format": "int32"
|
||||
},
|
||||
"ReplyMessageReferenceRequest": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
|
@ -24551,6 +24750,16 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"recurrence_rule": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "null"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/RecurrenceRuleResponse"
|
||||
}
|
||||
]
|
||||
},
|
||||
"user_count": {
|
||||
"type": [
|
||||
"integer",
|
||||
|
@ -25169,6 +25378,16 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"recurrence_rule": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "null"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/RecurrenceRuleResponse"
|
||||
}
|
||||
]
|
||||
},
|
||||
"user_count": {
|
||||
"type": [
|
||||
"integer",
|
||||
|
@ -26998,6 +27217,16 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"recurrence_rule": {
|
||||
"oneOf": [
|
||||
{
|
||||
"type": "null"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/RecurrenceRuleResponse"
|
||||
}
|
||||
]
|
||||
},
|
||||
"user_count": {
|
||||
"type": [
|
||||
"integer",
|
||||
|
|
Loading…
Reference in a new issue