Commit 7938c0da authored by Laurent Velez's avatar Laurent Velez
Browse files

Merge branch 'stf606-final' into 'master'

Update editor and validation tools

See merge request !11
parents 6b02e98c fb2b8660
Loading
Loading
Loading
Loading
Loading

.jenkins.sh

deleted100755 → 0
+0 −18
Original line number Diff line number Diff line
#!/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
+2 −7
Original line number Diff line number Diff line
@@ -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.
 No newline at end of file


# Application package lifecycle and operation granting API