Skip to content

Commit 209590e

Browse files
committed
fix: remove min limits
1 parent ad98256 commit 209590e

File tree

1 file changed

+2
-10
lines changed

1 file changed

+2
-10
lines changed

openapi.json

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -114,12 +114,10 @@
114114
"properties": {
115115
"service_job_id": {
116116
"type": "string",
117-
"minLength": 1,
118117
"description": "A unique identifier of the job on the service specified by service_name.\n"
119118
},
120119
"service_name": {
121120
"type": "string",
122-
"minLength": 1,
123121
"description": "The CI service or other environment in which the test suite was run. This can be anything, but certain services have special features (travis-ci, travis-pro, or coveralls-ruby).\n"
124122
},
125123
"git": {
@@ -159,17 +157,14 @@
159157
"remotes": {
160158
"type": "array",
161159
"uniqueItems": true,
162-
"minItems": 1,
163160
"items": {
164161
"type": "object",
165162
"properties": {
166163
"name": {
167-
"type": "string",
168-
"minLength": 1
164+
"type": "string"
169165
},
170166
"url": {
171-
"type": "string",
172-
"minLength": 1
167+
"type": "string"
173168
}
174169
},
175170
"required": [
@@ -187,19 +182,16 @@
187182
"source_files": {
188183
"type": "array",
189184
"uniqueItems": true,
190-
"minItems": 1,
191185
"description": "An array of source files, including their coverage data.\n",
192186
"items": {
193187
"type": "object",
194188
"properties": {
195189
"name": {
196190
"type": "string",
197-
"minLength": 1,
198191
"description": "Represents the file path of this source file. Must be unique in the job. Can include slashes. The file type for syntax highlighting will be determined from the file extension in this parameter.\n"
199192
},
200193
"source_digest": {
201194
"type": "string",
202-
"minLength": 1,
203195
"description": "The MD5 digest of the full source code of this file.\n"
204196
},
205197
"coverage": {

0 commit comments

Comments
 (0)