Skip to content

Commit

Permalink
Enable updating links to previous and current release in vaem metadata (
Browse files Browse the repository at this point in the history
#1019)

* Enable updating links to previous and current release in vaem metadata

* Bump rdfio-maven-plugin version

* Explain how to set the VAEM links properly in README.md

* remove the -v2.1 suffix from file references in ttl again (was lost while fixing a formatting bug)
  • Loading branch information
fkleedorfer authored Nov 15, 2024
1 parent 177a6f9 commit 6fa0d43
Show file tree
Hide file tree
Showing 15 changed files with 93 additions and 28 deletions.
10 changes: 9 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,14 @@ on:
description: 'Next SNAPSHOT version (such as 2.4-SNAPSHOT)'
required: true
type: string
previous_release_year:
description: 'The Year (YYYY) the last release was published'
required: true
type: string
previous_release_month:
description: 'The Month (MM) the last release was published'
required: true
type: string

jobs:
build:
Expand Down Expand Up @@ -103,7 +111,7 @@ jobs:
# build release
- name: Build with Maven, deploying to sonatype staging repo
run: mvn -Pzip -B release:clean release:prepare release:perform -DtagNameFormat="v@{project.version}" -DreleaseVersion=${{ inputs.release_version }} -DdevelopmentVersion=${{ inputs.next_snapshot_version }}
run: mvn -Pzip -B release:clean release:prepare release:perform -DtagNameFormat="v@{project.version}" -DreleaseVersion=${{ inputs.release_version }} -DdevelopmentVersion=${{ inputs.next_snapshot_version }} -DqudtPrevReleaseYear=${{ inputs.previous_release_year }} -DqudtPrevReleaseMonth=${{ inputs.previous_release_month }}
env:
password: ${{ secrets.GITHUB_TOKEN }}

Expand Down
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,15 @@ mvn -Pzip install
```
(This activates the maven profile called 'zip', which you find in the pom.xml near the end).

To set the next/latest VAEM link properties (which otherwise default to a bogus value) - only relevant if you
build for a qudt release:

```bash
mvn -DqudtPrevReleaseYear=2024 -DqudtPrevReleaseMonth=10 install
```


### Build Errors
If you make changes to the project before building, you can expect these problems:

#### Formatting and formatting problems
Expand Down
54 changes: 51 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<qudtPrevReleaseYear>TODO-set-property-qudtPrevReleaseYear</qudtPrevReleaseYear>
<qudtPrevReleaseMonth>TODO-set-property-qudtPrevReleaseMonth</qudtPrevReleaseMonth>
</properties>
<scm>
<connection>scm:git:https://github.com/qudt/qudt-public-repo.git</connection>
Expand Down Expand Up @@ -55,7 +57,7 @@
test-compile
process-test-classes
test shacl-validate
prepare-package format-dist
prepare-package update-vaem-references, format-dist
package
pre-integration-test
integration-test
Expand All @@ -77,13 +79,20 @@
</goals>
<configuration>
<source>import java.time.OffsetDateTime
import java.time.temporal.ChronoField
import java.time.format.DateTimeFormatter
import java.time.temporal.ChronoField
def majorMinorVersion = "${project.version}".replaceAll('^(\\w+.\\w+).*\$', '\$1')
project.properties.setProperty('project.version.majorminor', majorMinorVersion)
project.properties.setProperty('qudt.versioned.iri.prefix', "http://qudt.org/${majorMinorVersion}/")
def now = OffsetDateTime.now().with(ChronoField.MILLI_OF_SECOND, 0)
project.properties.setProperty('qudt.build.date', "${now}")
project.properties.setProperty('qudt.previous.version.iri.prefix', "https://qudt.org/doc/${qudtPrevReleaseYear}/${qudtPrevReleaseMonth}/")
def currentMonth = now.format(DateTimeFormatter.ofPattern("MM"))
def currentYear = now.format(DateTimeFormatter.ofPattern("YYYY"))
project.properties.setProperty('qudt.current.month', currentMonth)
project.properties.setProperty('qudt.current.year', currentYear)
project.properties.setProperty('qudt.latest.version.iri.prefix', "https://qudt.org/doc/${currentYear}/${currentMonth}/")
</source>
</configuration>
</execution>
Expand Down Expand Up @@ -152,7 +161,7 @@
<plugin>
<groupId>io.github.qudtlib</groupId>
<artifactId>rdfio-maven-plugin</artifactId>
<version>1.1.2</version>
<version>1.2.1</version>
<executions>
<execution>
<id>delete-applicable-units</id>
Expand Down Expand Up @@ -198,6 +207,45 @@
</products>
</configuration>
</execution>
<execution>
<id>update-vaem-references</id>
<phase>prepare-package</phase>
<goals>
<goal>make</goal>
</goals>
<configuration>
<products>
<eachFile>
<replaceInputFiles>true</replaceInputFiles>
<input>
<include>
target/dist/vocab/**/*.ttl
</include>
<exclude>
target/dist/**/*QUANTITIES*.ttl
</exclude>
</input>
<filters>
<sparqlUpdate>
DELETE { ?graph
vaem:latestPublishedVersion ?oldLatest ;
vaem:previousPublishedVersion ?oldPrevious}
INSERT { ?graph
vaem:latestPublishedVersion ?newLatest ;
vaem:previousPublishedVersion ?newPrevious ;
}
WHERE { ?graph
vaem:latestPublishedVersion ?oldLatest ;
vaem:previousPublishedVersion ?oldPrevious ;
BIND(STRDT(REPLACE(STR(?oldLatest), "https://qudt.org/doc/[^/]+/[^/]+/", "${qudt.latest.version.iri.prefix}"),xsd:anyURI) as ?newLatest)
BIND(STRDT(REPLACE(STR(?oldPrevious), "https://qudt.org/doc/[^/]+/[^/]+/", "${qudt.previous.version.iri.prefix}"),xsd:anyURI) as ?newPrevious)
}
</sparqlUpdate>
</filters>
</eachFile>
</products>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
Expand Down
4 changes: 2 additions & 2 deletions src/main/rdf/schema/SCHEMA_QUDT-DATATYPE.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -3622,13 +3622,13 @@ dtype:GMD_DTYPE
vaem:graphTitle "QUDT Schema for Datatypes - Version $$QUDT_VERSION$$" ;
vaem:hasGraphRole vaem:SchemaGraph ;
vaem:isMetadataFor <http://qudt.org/2.1/schema/datatype> ;
vaem:latestPublishedVersion "https://qudt.org/doc/2024/10/DOC_SCHEMA-DATATYPES-v2.1.html"^^xsd:anyURI ;
vaem:latestPublishedVersion "https://qudt.org/doc/2024/10/DOC_SCHEMA-DATATYPES.html"^^xsd:anyURI ;
vaem:logo "https://qudt.org/linkedmodels.org/assets/lib/lm/images/logos/qudt_logo-300x110.png"^^xsd:anyURI ;
vaem:name "QUDT" ;
vaem:namespace "http://qudt.org/schema/qudt/"^^xsd:anyURI ;
vaem:namespacePrefix "qudt" ;
vaem:owner "QUDT.ORG" ;
vaem:previousPublishedVersion "https://qudt.org/doc/2024/09/DOC_SCHEMA-DATATYPES-v2.1.html"^^xsd:anyURI ;
vaem:previousPublishedVersion "https://qudt.org/doc/2024/09/DOC_SCHEMA-DATATYPES.html"^^xsd:anyURI ;
vaem:publishedDate "2017-05-10"^^xsd:date ;
vaem:releaseDate "2016-05-09"^^xsd:date ;
vaem:revision "$$QUDT_MAJOR_MINOR_VERSION$$" ;
Expand Down
4 changes: 2 additions & 2 deletions src/main/rdf/schema/SCHEMA_QUDT.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -3219,12 +3219,12 @@ THE UCUM TABLE (IN ALL FORMATS), UCUM DEFINITIONS, AND SPECIFICATION ARE PROVIDE
vaem:hasSteward vaem:QUDT ;
vaem:intent "Specifies the schema for quantities, units and dimensions. Types are defined in other schemas." ;
vaem:isMetadataFor <http://qudt.org/2.1/schema/qudt> ;
vaem:latestPublishedVersion "https://qudt.org/doc/2024/10/DOC_SCHEMA-QUDT-v2.1.html"^^xsd:anyURI ;
vaem:latestPublishedVersion "https://qudt.org/doc/2024/10/DOC_SCHEMA-QUDT.html"^^xsd:anyURI ;
vaem:logo "https://qudt.org/linkedmodels.org/assets/lib/lm/images/logos/qudt_logo-300x110.png"^^xsd:anyURI ;
vaem:namespace "http://qudt.org/schema/qudt/"^^xsd:anyURI ;
vaem:namespacePrefix "qudt" ;
vaem:owner "qudt.org" ;
vaem:previousPublishedVersion "https://qudt.org/doc/2024/09/DOC_SCHEMA-QUDT-v2.1.html"^^xsd:anyURI ;
vaem:previousPublishedVersion "https://qudt.org/doc/2024/09/DOC_SCHEMA-QUDT.html"^^xsd:anyURI ;
vaem:revision "$$QUDT_MAJOR_MINOR_VERSION$$" ;
vaem:turtleFileURL "http://qudt.org/2.1/schema/qudt"^^xsd:anyURI ;
vaem:usesNonImportedResource dcterms:abstract ;
Expand Down
4 changes: 2 additions & 2 deletions src/main/rdf/schema/shacl/SCHEMA_QUDT_NoOWL.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -3570,12 +3570,12 @@ THE UCUM TABLE (IN ALL FORMATS), UCUM DEFINITIONS, AND SPECIFICATION ARE PROVIDE
vaem:hasSteward vaem:QUDT ;
vaem:intent "Specifies the schema for quantities, units and dimensions. Types are defined in other schemas." ;
vaem:isMetadataFor <http://qudt.org/2.1/schema/shacl/qudt> ;
vaem:latestPublishedVersion "https://qudt.org/doc/2024/10/DOC_SCHEMA-SHACL-QUDT-v2.1.html"^^xsd:anyURI ;
vaem:latestPublishedVersion "https://qudt.org/doc/2024/10/DOC_SCHEMA-SHACL-QUDT.html"^^xsd:anyURI ;
vaem:logo "https://qudt.org/linkedmodels.org/assets/lib/lm/images/logos/qudt_logo-300x110.png"^^xsd:anyURI ;
vaem:namespace "http://qudt.org/schema/qudt/" ;
vaem:namespacePrefix "qudt" ;
vaem:owner "qudt.org" ;
vaem:previousPublishedVersion "https://qudt.org/doc/2024/09/DOC_SCHEMA-SHACL-QUDT-v2.1.html"^^xsd:anyURI ;
vaem:previousPublishedVersion "https://qudt.org/doc/2024/09/DOC_SCHEMA-SHACL-QUDT.html"^^xsd:anyURI ;
vaem:revision "$$QUDT_MAJOR_MINOR_VERSION$$" ;
vaem:turtleFileURL "http://qudt.org/2.1/schema/shacl/qudt"^^xsd:anyURI ;
vaem:usesNonImportedResource dcterms:abstract ;
Expand Down
4 changes: 2 additions & 2 deletions src/main/rdf/schema/shacl/SHACL-SCHEMA-SUPPLEMENT_QUDT.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -571,12 +571,12 @@ THE UCUM TABLE (IN ALL FORMATS), UCUM DEFINITIONS, AND SPECIFICATION ARE PROVIDE
vaem:hasSteward vaem:QUDT ;
vaem:intent "Specifies overlay properties and rules for the schema for quantities, units and dimensions. Types are defined in other schemas." ;
vaem:isMetadataFor <http://qudt.org/2.1/schema/shacl/overlay/qudt> ;
vaem:latestPublishedVersion "https://qudt.org/doc/2024/10/DOC_SCHEMA-SHACL-QUDT-OVERLAY-v2.1.html"^^xsd:anyURI ;
vaem:latestPublishedVersion "https://qudt.org/doc/2024/10/DOC_SCHEMA-SHACL-QUDT-OVERLAY.html"^^xsd:anyURI ;
vaem:logo "https://qudt.org/linkedmodels.org/assets/lib/lm/images/logos/qudt_logo-300x110.png"^^xsd:anyURI ;
vaem:namespace "http://qudt.org/schema/qudt/" ;
vaem:namespacePrefix "qudt" ;
vaem:owner "qudt.org" ;
vaem:previousPublishedVersion "https://qudt.org/doc/2024/09/DOC_SCHEMA-SHACL-QUDT-OVERLAY-v2.1.html"^^xsd:anyURI ;
vaem:previousPublishedVersion "https://qudt.org/doc/2024/09/DOC_SCHEMA-SHACL-QUDT-OVERLAY.html"^^xsd:anyURI ;
vaem:revision "$$QUDT_MAJOR_MINOR_VERSION$$" ;
vaem:turtleFileURL "http://qudt.org/2.1/schema/shacl/overlay/qudt"^^xsd:anyURI ;
vaem:usesNonImportedResource dcterms:abstract ;
Expand Down
4 changes: 2 additions & 2 deletions src/main/rdf/vocab/constants/VOCAB_QUDT-CONSTANTS.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -6923,12 +6923,12 @@ vaem:GMD_QUDT-CONSTANTS
vaem:hasSteward vaem:QUDT.org ;
vaem:intent "Provides a vocabulary of Constants for both human and machine use" ;
vaem:isMetadataFor <http://qudt.org/2.1/vocab/constant> ;
vaem:latestPublishedVersion "https://qudt.org/doc/2024/10/DOC_VOCAB-CONSTANTS-v2.1.html"^^xsd:anyURI ;
vaem:latestPublishedVersion "https://qudt.org/doc/2024/10/DOC_VOCAB-CONSTANTS.html"^^xsd:anyURI ;
vaem:logo "https://qudt.org/linkedmodels.org/assets/lib/lm/images/logos/qudt_logo-300x110.png"^^xsd:anyURI ;
vaem:namespace "http://qudt.org/vocab/constant/"^^xsd:anyURI ;
vaem:namespacePrefix "constant" ;
vaem:owner "QUDT.org" ;
vaem:previousPublishedVersion "https://qudt.org/doc/2024/09/DOC_VOCAB-CONSTANTS-v2.1.html"^^xsd:anyURI ;
vaem:previousPublishedVersion "https://qudt.org/doc/2024/09/DOC_VOCAB-CONSTANTS.html"^^xsd:anyURI ;
vaem:revision "$$QUDT_MAJOR_MINOR_VERSION$$" ;
vaem:specificity 1 ;
vaem:turtleFileURL "http://qudt.org/2.1/vocab/constant"^^xsd:anyURI ;
Expand Down
4 changes: 2 additions & 2 deletions src/main/rdf/vocab/currency/VOCAB_QUDT-UNITS-CURRENCY.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -2547,12 +2547,12 @@ THE UCUM TABLE (IN ALL FORMATS), UCUM DEFINITIONS, AND SPECIFICATION ARE PROVIDE
vaem:hasSteward vaem:QUDT.org ;
vaem:intent "To provide a vocabulary of currency units." ;
vaem:isMetadataFor <http://qudt.org/2.1/vocab/currency> ;
vaem:latestPublishedVersion "https://qudt.org/doc/2024/10/DOC_VOCAB-UNITS-CURRENCY-v2.1.html"^^xsd:anyURI ;
vaem:latestPublishedVersion "https://qudt.org/doc/2024/10/DOC_VOCAB-UNITS-CURRENCY.html"^^xsd:anyURI ;
vaem:logo "https://qudt.org/linkedmodels.org/assets/lib/lm/images/logos/qudt_logo-300x110.png"^^xsd:anyURI ;
vaem:namespace "http://qudt.org/vocab/currency/"^^xsd:anyURI ;
vaem:namespacePrefix "cur" ;
vaem:owner "QUDT.org" ;
vaem:previousPublishedVersion "https://qudt.org/doc/2024/09/DOC_VOCAB-UNITS-CURRENCY-v2.1.html"^^xsd:anyURI ;
vaem:previousPublishedVersion "https://qudt.org/doc/2024/09/DOC_VOCAB-UNITS-CURRENCY.html"^^xsd:anyURI ;
vaem:revision "$$QUDT_MAJOR_MINOR_VERSION$$" ;
vaem:turtleFileURL "http://qudt.org/2.1/vocab/currency"^^xsd:anyURI ;
vaem:usesNonImportedResource dcterms:abstract ;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3963,12 +3963,12 @@ vaem:GMD_QUDT-DIMENSION-VECTORS
vaem:hasGraphRole vaem:VocabularyGraph ;
vaem:intent "TBD" ;
vaem:isMetadataFor <http://qudt.org/2.1/vocab/dimensionvector> ;
vaem:latestPublishedVersion "https://qudt.org/doc/2024/10/DOC_VOCAB-QUANTITY-KIND-DIMENSION-VECTORS-v2.1.html"^^xsd:anyURI ;
vaem:latestPublishedVersion "https://qudt.org/doc/2024/10/DOC_VOCAB-QUANTITY-KIND-DIMENSION-VECTORS.html"^^xsd:anyURI ;
vaem:logo "https://qudt.org/linkedmodels.org/assets/lib/lm/images/logos/qudt_logo-300x110.png" ;
vaem:namespace "http://qudt.org/vocab/dimensionvector/"^^xsd:anyURI ;
vaem:namespacePrefix "qkdv" ;
vaem:owner "qudt.org" ;
vaem:previousPublishedVersion "https://qudt.org/doc/2024/09/DOC_VOCAB-QUANTITY-KIND-DIMENSION-VECTORS-v2.1.html"^^xsd:anyURI ;
vaem:previousPublishedVersion "https://qudt.org/doc/2024/09/DOC_VOCAB-QUANTITY-KIND-DIMENSION-VECTORS.html"^^xsd:anyURI ;
vaem:revision "$$QUDT_MAJOR_MINOR_VERSION$$" ;
vaem:specificity 1 ;
vaem:turtleFileURL "http://qudt.org/2.1/vocab/dimensionvector"^^xsd:anyURI ;
Expand Down
4 changes: 2 additions & 2 deletions src/main/rdf/vocab/prefixes/VOCAB_QUDT-PREFIXES.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -407,12 +407,12 @@ vaem:GMD_QUDT-PREFIXES
vaem:hasSteward vaem:QUDT.org ;
vaem:intent "Provides a vocabulary of prefixes for both human and machine use" ;
vaem:isMetadataFor <http://qudt.org/2.1/vocab/prefix> ;
vaem:latestPublishedVersion "https://qudt.org/doc/2024/10/DOC_VOCAB-PREFIXES-v2.1.html"^^xsd:anyURI ;
vaem:latestPublishedVersion "https://qudt.org/doc/2024/10/DOC_VOCAB-PREFIXES.html"^^xsd:anyURI ;
vaem:logo "https://qudt.org/linkedmodels.org/assets/lib/lm/images/logos/qudt_logo-300x110.png"^^xsd:anyURI ;
vaem:namespace "http://qudt.org/vocab/prefix/"^^xsd:anyURI ;
vaem:namespacePrefix "prefix" ;
vaem:owner "QUDT.org" ;
vaem:previousPublishedVersion "https://qudt.org/doc/2024/09/DOC_VOCAB-PREFIXES-v2.1.html"^^xsd:anyURI ;
vaem:previousPublishedVersion "https://qudt.org/doc/2024/09/DOC_VOCAB-PREFIXES.html"^^xsd:anyURI ;
vaem:revision "$$QUDT_MAJOR_MINOR_VERSION$$" ;
vaem:specificity 1 ;
vaem:turtleFileURL "http://qudt.org/2.1/vocab/prefix"^^xsd:anyURI ;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14941,12 +14941,12 @@ vaem:GMD_QUDT-QUANTITY-KINDS-ALL
vaem:hasGraphRole vaem:VocabularyGraph ;
vaem:intent "Provides a vocabulary of all quantity kinds." ;
vaem:isMetadataFor <http://qudt.org/2.1/vocab/quantitykind> ;
vaem:latestPublishedVersion "https://qudt.org/doc/2024/10/DOC_VOCAB-QUANTITY-KINDS-ALL-v2.1.html"^^xsd:anyURI ;
vaem:latestPublishedVersion "https://qudt.org/doc/2024/10/DOC_VOCAB-QUANTITY-KINDS-ALL.html"^^xsd:anyURI ;
vaem:logo "https://qudt.org/linkedmodels.org/assets/lib/lm/images/logos/qudt_logo-300x110.png" ;
vaem:namespace "http://qudt.org/vocab/quantitykind/"^^xsd:anyURI ;
vaem:namespacePrefix "quantitykind" ;
vaem:owner "qudt.org" ;
vaem:previousPublishedVersion "https://qudt.org/doc/2024/09/DOC_VOCAB-QUANTITY-KINDS-ALL-v2.1.html"^^xsd:anyURI ;
vaem:previousPublishedVersion "https://qudt.org/doc/2024/09/DOC_VOCAB-QUANTITY-KINDS-ALL.html"^^xsd:anyURI ;
vaem:revision "2.1" ;
vaem:specificity 1 ;
vaem:turtleFileURL "http://qudt.org/2.1/vocab/quantitykind"^^xsd:anyURI ;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -782,13 +782,13 @@ vaem:GMD_QUDT-SOQK
vaem:hasSteward vaem:QUDT ;
vaem:intent "The intent of this graph is the specification of all Systems of Quantity Kinds" ;
vaem:isMetadataFor <http://qudt.org/2.1/vocab/soqk> ;
vaem:latestPublishedVersion "https://qudt.org/doc/2024/10/DOC_VOCAB-SYSTEMS-OF-QUANTITY-KINDS-v2.1.html"^^xsd:anyURI ;
vaem:latestPublishedVersion "https://qudt.org/doc/2024/10/DOC_VOCAB-SYSTEMS-OF-QUANTITY-KINDS.html"^^xsd:anyURI ;
vaem:logo "https://qudt.org/linkedmodels.org/assets/lib/lm/images/logos/qudt_logo-300x110.png"^^xsd:anyURI ;
vaem:name "soqk" ;
vaem:namespace "http://qudt.org/vocab/soqk/"^^xsd:anyURI ;
vaem:namespacePrefix "soqk" ;
vaem:owner "qudt.org" ;
vaem:previousPublishedVersion "https://qudt.org/doc/2024/09/DOC_VOCAB-SYSTEMS-OF-QUANTITY-KINDS-v2.1.html"^^xsd:anyURI ;
vaem:previousPublishedVersion "https://qudt.org/doc/2024/09/DOC_VOCAB-SYSTEMS-OF-QUANTITY-KINDS.html"^^xsd:anyURI ;
vaem:revision "$$QUDT_MAJOR_MINOR_VERSION$$" ;
vaem:turtleFileURL "http://qudt.org/2.1/vocab/soqk"^^xsd:anyURI ;
vaem:usesNonImportedResource prov:wasInfluencedBy ;
Expand Down
4 changes: 2 additions & 2 deletions src/main/rdf/vocab/systems/VOCAB_QUDT-SYSTEM-OF-UNITS-ALL.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -242,13 +242,13 @@ vaem:GMD_QUDT-SOU
vaem:hasSteward vaem:QUDT ;
vaem:intent "The intent of this graph is the specification of all Systems of Units" ;
vaem:isMetadataFor <http://qudt.org/2.1/vocab/sou> ;
vaem:latestPublishedVersion "https://qudt.org/doc/2024/10/DOC_VOCAB-SYSTEMS-OF-UNITS-v2.1.html"^^xsd:anyURI ;
vaem:latestPublishedVersion "https://qudt.org/doc/2024/10/DOC_VOCAB-SYSTEMS-OF-UNITS.html"^^xsd:anyURI ;
vaem:logo "https://qudt.org/linkedmodels.org/assets/lib/lm/images/logos/qudt_logo-300x110.png"^^xsd:anyURI ;
vaem:name "sou" ;
vaem:namespace "http://qudt.org/vocab/sou/"^^xsd:anyURI ;
vaem:namespacePrefix "sou" ;
vaem:owner "qudt.org" ;
vaem:previousPublishedVersion "https://qudt.org/doc/2024/09/DOC_VOCAB-SYSTEMS-OF-UNITS-v2.1.html"^^xsd:anyURI ;
vaem:previousPublishedVersion "https://qudt.org/doc/2024/09/DOC_VOCAB-SYSTEMS-OF-UNITS.html"^^xsd:anyURI ;
vaem:revision "$$QUDT_MAJOR_MINOR_VERSION$$" ;
vaem:turtleFileURL "http://qudt.org/2.1/vocab/sou"^^xsd:anyURI ;
vaem:usesNonImportedResource prov:wasInfluencedBy ;
Expand Down
Loading

0 comments on commit 6fa0d43

Please sign in to comment.