Skip to content

Commit

Permalink
Release 0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
dodinh committed Nov 20, 2023
2 parents 0d57e67 + 6eaf3eb commit 7c15f06
Show file tree
Hide file tree
Showing 23 changed files with 5,548 additions and 4 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 2023-11-20 - 0.1.2

* [API] Add `source` query parameter to `POST`/`PUT`/`DELETE` endpoints for records
* [Deployment] Upgrade lighttpd

## 2023-10-26 - 0.1.1

* [Codelist] Add `authority` codelist
Expand All @@ -9,8 +14,8 @@
* [Documentation] Fix HTML
* [API] Add proper license
* [Deployment] Change lighttpd permissions
* [API] dcat:Distribution > dct:format now expects a Literal
* [Spec] `dcat:Distribution` > `dct:format` now expects a Literal

## 2023-08-02 - v0.1.0
## 2023-08-02 - 0.1.0

* Initial release
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM alpine:3.18.3

ENV LIGHTTPD_VERSION=1.4.71-r0
ENV DCATAPPLU_VERSION=0.1.1
ENV LIGHTTPD_VERSION=1.4.73-r0
ENV DCATAPPLU_VERSION=0.1.2

RUN addgroup -S --gid 1000 lighttpd \
&& adduser -S -G lighttpd --uid 1000 lighttpd
Expand Down
11 changes: 11 additions & 0 deletions drafts/0.0.1-draft-0.1/api-plu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,7 @@ paths:
operationId: postRecord
parameters:
- $ref: '#/components/parameters/collectionId'
- $ref: '#/components/parameters/source'
requestBody:
required: true
content:
Expand Down Expand Up @@ -300,6 +301,7 @@ paths:
parameters:
- $ref: '#/components/parameters/collectionId'
- $ref: '#/components/parameters/recordId'
- $ref: '#/components/parameters/source'
requestBody:
required: true
content:
Expand Down Expand Up @@ -331,6 +333,7 @@ paths:
parameters:
- $ref: '#/components/parameters/collectionId'
- $ref: '#/components/parameters/recordId'
- $ref: '#/components/parameters/source'
responses:
'200':
$ref: '#/components/responses/200Success'
Expand All @@ -356,6 +359,14 @@ components:
schema:
type: string
example: f08a255e-2c11-49dd-bdf9-88a0dcbe2aa6
source:
name: source
in: query
description: The mandatory source parameter denotes the origin point of the dataset. It influences the merging strategy for competing datasets.
required: true
schema:
type: string
example: cockpit
q:
name: q
in: query
Expand Down
Binary file added releases/0.1.2/DCAT-AP-PLU.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions releases/0.1.2/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# DCAT-AP.PLU 0.1.2

This release of DCAT-AP.PLU consists of
- an OpenAPI specification: [api-plu.yml](api-plu.yml)
- a ReSpec documentation: [doc-plu.html](doc-plu.html)
- with an accompanying `UML` diagram: [dcat-ap-plu.eapx](dcat-ap-plu.eapx) and [DCAT-AP-PLU.JPG](DCAT-AP-PLU.JPG)
- a `SHACL` shapefile for validation purposes: [shacl/dcat-ap-plu_shacl-shapes.ttl](shacl/dcat-ap-plu_shacl-shapes.ttl)
- example DCAT-AP.PLU `RDF/XML` files [examples/plu-example-full.xml](examples/plu-example-full.xml), [examples/plu-example-03.xml](examples/plu-example-03.xml)

## Licence

DCAT-AP.PLU 0.1.2 is distributed under [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/).
Loading

0 comments on commit 7c15f06

Please sign in to comment.