|
32 | 32 | },
|
33 | 33 | "/projects": {
|
34 | 34 | "get": {
|
35 |
| - "summary": "List All Projects", |
36 |
| - "description": "List projects created in the Taxonomy Editor with a status filter", |
37 |
| - "operationId": "list_all_projects_projects_get", |
38 |
| - "parameters": [ |
39 |
| - { |
40 |
| - "name": "status", |
41 |
| - "in": "query", |
42 |
| - "required": false, |
43 |
| - "schema": { |
44 |
| - "anyOf": [ |
45 |
| - { "$ref": "#/components/schemas/ProjectStatus" }, |
46 |
| - { "type": "null" } |
47 |
| - ], |
48 |
| - "title": "Status" |
49 |
| - } |
50 |
| - } |
51 |
| - ], |
| 35 | + "summary": "Get All Projects", |
| 36 | + "description": "List projects created in the Taxonomy Editor", |
| 37 | + "operationId": "get_all_projects_projects_get", |
52 | 38 | "responses": {
|
53 | 39 | "200": {
|
54 | 40 | "description": "Successful Response",
|
55 |
| - "content": { "application/json": { "schema": {} } } |
56 |
| - }, |
57 |
| - "422": { |
58 |
| - "description": "Validation Error", |
59 | 41 | "content": {
|
60 | 42 | "application/json": {
|
61 |
| - "schema": { "$ref": "#/components/schemas/HTTPValidationError" } |
| 43 | + "schema": { |
| 44 | + "items": { "$ref": "#/components/schemas/Project" }, |
| 45 | + "type": "array", |
| 46 | + "title": "Response Get All Projects Projects Get" |
| 47 | + } |
62 | 48 | }
|
63 | 49 | }
|
64 | 50 | }
|
|
1248 | 1234 | "taxonomyName": { "type": "string", "title": "Taxonomyname" },
|
1249 | 1235 | "branchName": { "type": "string", "title": "Branchname" },
|
1250 | 1236 | "description": { "type": "string", "title": "Description" },
|
1251 |
| - "ownerName": { "type": "string", "title": "Ownername" }, |
| 1237 | + "ownerName": { |
| 1238 | + "anyOf": [{ "type": "string" }, { "type": "null" }], |
| 1239 | + "title": "Ownername" |
| 1240 | + }, |
1252 | 1241 | "isFromGithub": { "type": "boolean", "title": "Isfromgithub" },
|
1253 | 1242 | "createdAt": {
|
1254 | 1243 | "type": "string",
|
1255 | 1244 | "format": "date-time",
|
1256 | 1245 | "title": "Createdat"
|
1257 | 1246 | },
|
| 1247 | + "errorsCount": { |
| 1248 | + "type": "integer", |
| 1249 | + "title": "Errorscount", |
| 1250 | + "default": 0 |
| 1251 | + }, |
1258 | 1252 | "githubCheckoutCommitSha": {
|
1259 | 1253 | "anyOf": [{ "type": "string" }, { "type": "null" }],
|
1260 | 1254 | "title": "Githubcheckoutcommitsha"
|
|
1274 | 1268 | "taxonomyName",
|
1275 | 1269 | "branchName",
|
1276 | 1270 | "description",
|
1277 |
| - "ownerName", |
1278 | 1271 | "isFromGithub",
|
1279 | 1272 | "createdAt"
|
1280 | 1273 | ],
|
|
0 commit comments