1
0
Fork 0

Specify the restrictions on tags array and it's string items (#2016)

* Fixed 2 typos

* Specify tags array restrictions
This commit is contained in:
Frank Sträter 2019-08-12 10:19:45 +02:00 committed by Chocobozzz
parent 322adef183
commit 07d02f6de8
1 changed files with 14 additions and 2 deletions

View File

@ -863,8 +863,12 @@ paths:
tags:
description: Video tags (maximum 5 tags each between 2 and 30 characters)
type: array
minItems: 1
maxItems: 5
items:
type: string
minLength: 2
maxLength: 30
commentsEnabled:
description: Enable or disable comments for this video
type: string
@ -1055,10 +1059,14 @@ paths:
description: Video name
type: string
tags:
description: Video tags
description: Video tags (maximum 5 tags each between 2 and 30 characters)
type: array
minItems: 1
maxItems: 5
items:
type: string
minLength: 2
maxLength: 30
commentsEnabled:
description: Enable or disable comments for this video
type: string
@ -1164,10 +1172,14 @@ paths:
description: Video name
type: string
tags:
description: Video tags
description: Video tags (maximum 5 tags each between 2 and 30 characters)
type: array
minItems: 1
maxItems: 5
items:
type: string
minLength: 2
maxLength: 30
commentsEnabled:
description: Enable or disable comments for this video
type: string