|
1382 | 1382 | "properties": { |
1383 | 1383 | "name": { "type": "string", "title": "Name" }, |
1384 | 1384 | "fqn": { "type": "string", "title": "Fqn" }, |
1385 | | - "path": { "type": "string", "title": "Path" }, |
1386 | | - "full_path": { "type": "string", "title": "Full Path" }, |
| 1385 | + "path": { |
| 1386 | + "anyOf": [{ "type": "string" }, { "type": "null" }], |
| 1387 | + "title": "Path" |
| 1388 | + }, |
| 1389 | + "full_path": { |
| 1390 | + "anyOf": [{ "type": "string" }, { "type": "null" }], |
| 1391 | + "title": "Full Path" |
| 1392 | + }, |
1387 | 1393 | "dialect": { "type": "string", "title": "Dialect" }, |
1388 | 1394 | "type": { "$ref": "#/components/schemas/ModelType" }, |
1389 | 1395 | "columns": { |
|
1417 | 1423 | }, |
1418 | 1424 | "additionalProperties": false, |
1419 | 1425 | "type": "object", |
1420 | | - "required": [ |
1421 | | - "name", |
1422 | | - "fqn", |
1423 | | - "path", |
1424 | | - "full_path", |
1425 | | - "dialect", |
1426 | | - "type", |
1427 | | - "columns", |
1428 | | - "hash" |
1429 | | - ], |
| 1426 | + "required": ["name", "fqn", "dialect", "type", "columns", "hash"], |
1430 | 1427 | "title": "Model" |
1431 | 1428 | }, |
1432 | 1429 | "ModelDetails": { |
|
2143 | 2140 | "TestCase": { |
2144 | 2141 | "properties": { |
2145 | 2142 | "name": { "type": "string", "title": "Name" }, |
2146 | | - "path": { "type": "string", "format": "path", "title": "Path" } |
| 2143 | + "path": { "type": "string", "title": "Path" } |
2147 | 2144 | }, |
2148 | 2145 | "additionalProperties": false, |
2149 | 2146 | "type": "object", |
|
2153 | 2150 | "TestErrorOrFailure": { |
2154 | 2151 | "properties": { |
2155 | 2152 | "name": { "type": "string", "title": "Name" }, |
2156 | | - "path": { "type": "string", "format": "path", "title": "Path" }, |
| 2153 | + "path": { "type": "string", "title": "Path" }, |
2157 | 2154 | "tb": { "type": "string", "title": "Tb" } |
2158 | 2155 | }, |
2159 | 2156 | "additionalProperties": false, |
|
2193 | 2190 | "TestSkipped": { |
2194 | 2191 | "properties": { |
2195 | 2192 | "name": { "type": "string", "title": "Name" }, |
2196 | | - "path": { "type": "string", "format": "path", "title": "Path" }, |
| 2193 | + "path": { "type": "string", "title": "Path" }, |
2197 | 2194 | "reason": { "type": "string", "title": "Reason" } |
2198 | 2195 | }, |
2199 | 2196 | "additionalProperties": false, |
|
0 commit comments