@prefix rdf: . @prefix mod: . @prefix owl: . @prefix rdfs: . @prefix xsd: . @prefix prov: . @prefix sh: . @prefix dct: . dct:modified "2021-03-01" ; a owl:Ontology ; rdfs:comment "The Databus Mod ontology"@en ; rdfs:label "Databus Mod"@en ; owl:imports ; owl:versionInfo "2.0.0" . mod:DatabusMod a owl:Class, sh:NodeShape ; rdfs:comment "Activities that used individual Databus files or whole version/group/publisher-level collections to generate summaries, ratings, detailed statistics, error reports, enrichments or anything else really. Modding activities don't create new datasets, they are triggered, when new data is available and generate useful stats and add-ons. " ; rdfs:label "Databus Mod" ; rdfs:subClassOf prov:Activity ; sh:poperty [ sh:minCount 2 ; sh:path prov:generated ], [ sh:minCount 1 ; sh:path prov:used ] ; sh:property [ sh:maxCount 1 ; sh:minCount 1 ; sh:path prov:endedAtTime ] ; sh:targetClass mod:DatabusMod . mod:Enrichment a owl:Class ; rdfs:comment "A newly generated file that enriches the orginal entity, e.g. links or new types. " ; rdfs:label "Enrichment" ; rdfs:subClassOf prov:Entity . mod:HTML_Summary a owl:Class ; rdfs:comment "Concise HTML snippet to summarize the result of the activity such as 'Build Passing', '5 Errors found' " ; rdfs:label "HTML Summary" ; rdfs:subClassOf mod:Summary, prov:Entity . mod:SVG_Summary a owl:Class ; rdfs:comment "Concise SVGs to summarize the result of the activity such as 'Build Passing', '5 Errors found' " ; rdfs:label "SVG Summary" ; rdfs:subClassOf mod:Summary, prov:Entity . mod:Statistics a owl:Class ; rdfs:comment "Detailed statistics, any format, e.g. tsv, rdf, xml." ; rdfs:label "Statistics" ; rdfs:subClassOf prov:Entity . mod:Summary a owl:Class ; rdfs:label "A summarising file generated by the activity, derived from the origin, e.g. a paragraph, an AVG stat or a small image of the activity. Subclasses should be used to describe the exact type of the summary.", "Summary" ; rdfs:subClassOf prov:Entity . mod:enrichmentDerivedFrom a owl:ObjectProperty ; rdfs:comment "Any resource (tsv, rdf, xml) providing an enrichment of the file/version." ; rdfs:domain mod:Enrichment ; rdfs:label "enrichment derived from" ; rdfs:subPropertyOf prov:wasDerivedFrom . mod:htmlDerivedFrom a owl:ObjectProperty ; rdfs:comment "A short HTML snippet derived from the file/version summarizing results." ; rdfs:domain mod:HTML_Summary ; rdfs:label "summary html file derived from" ; rdfs:subPropertyOf mod:summaryDerivedFrom, prov:wasDerivedFrom . mod:statisticsDerivedFrom a owl:ObjectProperty ; rdfs:comment "Any detailed statistical resource (tsv, rdf, xml) derived from the file/version." ; rdfs:domain mod:Statistics ; rdfs:label "statistic derived from" ; rdfs:subPropertyOf prov:wasDerivedFrom . mod:summary a owl:DatatypeProperty ; rdfs:comment "main summary of the mod activity like an overall rating. Please create an rdfs:subPropertyOf describing the method for the value. " ; rdfs:domain mod:DatabusMod ; rdfs:label "summary" . mod:summaryDerivedFrom a owl:ObjectProperty ; rdfs:comment "Any resource derived from the file/version summarizing results. NOTE: for detailed reporting please use Statistics" ; rdfs:domain mod:Summary ; rdfs:label "summary of" ; rdfs:subPropertyOf prov:wasDerivedFrom . mod:svgDerivedFrom a owl:ObjectProperty ; rdfs:comment "A small SVG derived from the file/version summarizing results." ; rdfs:domain mod:SVG_Summary ; rdfs:label "summary svg file derived from" ; rdfs:subPropertyOf mod:summaryDerivedFrom, prov:wasDerivedFrom .