Skip to content

Commit

Permalink
fix: encodingformat
Browse files Browse the repository at this point in the history
  • Loading branch information
LvanWissen committed Mar 3, 2020
1 parent 02a403f commit b5d897d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
1 change: 1 addition & 0 deletions data/schrijverskabinet.trig
Original file line number Diff line number Diff line change
Expand Up @@ -8409,6 +8409,7 @@ In de sectie ‘Uit de kast’ introduceren diverse specialisten veel van de aut
Schrijverskabinet.nl is in aanbouw. Mocht u ontbrekende portretten weten te vinden of een nog niet besproken auteur willen introduceren in een essay, neem dan contact op met Lieke van Deinsen ([email protected])."""@nl ;
schema:distribution [ a schema:DataDownload ;
schema:contentUrl <https://github.com/LvanWissen/schrijverskabinet-rdf/raw/master/data/schrijverskabinet.trig> ;
schema:encodingFormat "application/trig" ;
schema:url <https://github.com/LvanWissen/schrijverskabinet-rdf> ] ;
schema:isBasedOn <http://www.schrijverskabinet.nl/> ;
schema:license <https://creativecommons.org/licenses/by-nc-sa/4.0/> ;
Expand Down
11 changes: 10 additions & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,19 @@ class DatasetClass(Entity):
distribution = rdfSingle(schema.distribution)
licenseprop = rdfSingle(schema.license)

alternateName = rdfMultiple(schema.alternateName)
citation = rdfMultiple(schema.citation)

keywords = rdfMultiple(schema.keywords)
spatialCoverage = rdfSingle(schema.spatialCoverage)
temporalCoverage = rdfSingle(schema.temporalCoverage)


class DataDownload(Entity):
rdf_type = schema.DataDownload

contentUrl = rdfSingle(schema.contentUrl)
encodingFormat = rdfSingle(schema.encodingFormat)


class ScholarlyArticle(CreativeWork):
Expand Down Expand Up @@ -411,7 +419,8 @@ def toRDF(d):
"https://github.com/LvanWissen/schrijverskabinet-rdf/raw/master/data/schrijverskabinet.trig"
),
# name=Literal(),
url=URIRef("https://github.com/LvanWissen/schrijverskabinet-rdf"))
url=URIRef("https://github.com/LvanWissen/schrijverskabinet-rdf"),
encodingFormat="application/trig")

date = Literal(datetime.datetime.now().strftime('%Y-%d-%m'),
datatype=XSD.datetime)
Expand Down

0 comments on commit b5d897d

Please sign in to comment.