Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Schema, extension metadata and README #2

Merged
merged 13 commits into from
Apr 8, 2020
20 changes: 20 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Lint
on: [push, pull_request]
env:
BASEDIR: https://raw.githubusercontent.com/open-contracting/standard-maintenance-scripts/master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
with:
python-version: 3.6
- uses: actions/cache@v1
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('.github/workflows/lint.yml') }}
restore-keys: |
${{ runner.os }}-pip-
- run: curl -s -S --retry 3 $BASEDIR/tests/install.sh | bash -
- run: curl -s -S --retry 3 $BASEDIR/tests/script.sh | bash -
11 changes: 0 additions & 11 deletions .travis.yml

This file was deleted.

4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# European Union

Implements schemas and codes that are specific to the European law.
Implements fields and codes that are specific to the European law.
jpmckinney marked this conversation as resolved.
Show resolved Hide resolved

For complete guidance on meeting the disclosure requirements of European law, see [OCDS for European Union](https://standard.open-contracting.org/profiles/eu/master/en/).

## Legal context

Expand Down
9 changes: 5 additions & 4 deletions release-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"properties": {
"url": {
"title": "Website URL",
"description": "The Web address of the website of the organization.",
"description": "The Website of the organization.",
jpmckinney marked this conversation as resolved.
Show resolved Hide resolved
"type": [
"string",
"null"
Expand All @@ -48,7 +48,7 @@
"properties": {
"valueCalculationMethod": {
"title": "Value calculation method",
"description": "Any details relevant to the value of the concession according to article 8(3) of the directive 2014/23/EU on concession contracts.",
"description": "Any details relevant to the value of the concession according to article 8(3) of directive 2014/23/EU on concession contracts.",
jpmckinney marked this conversation as resolved.
Show resolved Hide resolved
"type": [
"string",
"null"
Expand All @@ -68,11 +68,12 @@
},
"publicPassengerTransportServicesKilometers": {
jpmckinney marked this conversation as resolved.
Show resolved Hide resolved
"title": "Kilometers of public passenger transport services",
"description": "The size of the public transport network procured in the contract, in kilometers.",
"description": "The number of kilometers of public passenger transport services provided by a public service contract.",
"type": [
"number",
"null"
]
],
"minimum": 0
}
}
}
Expand Down