main - Automated spec update (5323)
made at remote:2023-09-28T22:26:28 taken at now:2023-09-28T23:10:02 made by remote Nelly (automation bot) <>
This commit is contained in:
		
							parent
							
								
									727ad79d2b
								
							
						
					
					
						commit
						8050a281e3
					
				
					 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…
	
	Add table
		Add a link
		
	
		Reference in a new issue