From 9b8d659216e4a955c92d65486f4225e947873ecb Mon Sep 17 00:00:00 2001 From: hammad zafar Date: Wed, 13 Apr 2022 13:49:47 +0500 Subject: [PATCH 1/2] update README --- README.md | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 1741b11..0c9b07a 100644 --- a/README.md +++ b/README.md @@ -6,14 +6,9 @@ This repository contains OpenAPIs descriptions for the interfaces specified in E ## Online resources * [Specification document](https://www.etsi.org/deliver/etsi_gs/MEC/001_099/030/02.02.01_60/gs_MEC030v020201p.pdf) -* [Navigate the V2X Information Service API in the browser](https://forge.etsi.org/swagger/ui/?url=https://forge.etsi.org/rep/mec/gs030-vis-api/raw/stf606-final/MEC030_V2XInformationService.yaml). -* [Edit the V2X Information Service API online](https://forge.etsi.org/swagger/editor/?url=https://forge.etsi.org/rep/mec/gs030-vis-api/raw/stf606-final/MEC030_V2XInformationService.yaml). - +* [Navigate the V2X Information Service API in the browser](https://redocly.github.io/redoc/?url=https://forge.etsi.org/rep/mec/gs030-vis-api/-/raw/v2.2.1/MEC030_V2XInformationService.yaml) ## License Unless specified otherwise, the content of this repository and the files contained are released under the BSD-3-Clause license. -See the attached LICENSE file or visit https://forge.etsi.org/legal-matters. - - -# Application package lifecycle and operation granting API +See the attached LICENSE file or visit https://forge.etsi.org/legal-matters. \ No newline at end of file -- GitLab From 36ee1c23e02188956405a9f154de1580a695278e Mon Sep 17 00:00:00 2001 From: Laurent Velez Date: Wed, 13 Apr 2022 12:49:38 +0000 Subject: [PATCH 2/2] Delete .jenkins.sh as it uses a pipeline instead --- .jenkins.sh | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100755 .jenkins.sh diff --git a/.jenkins.sh b/.jenkins.sh deleted file mode 100755 index 74d0370..0000000 --- a/.jenkins.sh +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/bash - -specfiles=$(ls | egrep "^[^.]*.(json|yaml)") - -fres=0 -for i in $specfiles ; do - echo "-- Validating and linting OpenAPI file $i..." - swagger-cli validate $i - res=$? - speccy lint "$i" - res2=$? - fres=$(($fres||$res||$res2)) - echo "--- Validator returned $res, linter returned $res2." -done - -echo "-- Final validator returns $fres." -exit $fres - -- GitLab