Skip to content

Commit

Permalink
Merge pull request #141 from aml-org/publish-22.0.0-2.6.0
Browse files Browse the repository at this point in the history
publish: 22.0.0 / 2.6.0
  • Loading branch information
tomsfernandez authored Mar 31, 2022
2 parents 4bceb23 + 6b5fa2d commit a0429b5
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class VocabularyPropertiesTest extends AsyncFunSuite with VocabularyTest {
}

test("Vocabularies parsing aml_meta") {
testVocabulary(aml_meta, 25, 38)
testVocabulary(aml_meta, 26, 38)
}

test("Vocabularies parsing api_contract") {
Expand Down
4 changes: 2 additions & 2 deletions transform/dependencies.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Leave here for the publication process to detect if amf-transform has to be published!
# Because we publish a version of amf-transform for each version of amf-client publish.
amf.apicontract=5.0.5
amf.rdf=6.0.5
amf.apicontract=5.0.6
amf.rdf=6.0.6
4 changes: 2 additions & 2 deletions versions.yaml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
amf.vocabulary: 21.0.0
amf.transform: 2.5.0
amf.vocabulary: 22.0.0
amf.transform: 2.6.0
16 changes: 13 additions & 3 deletions vocabulary/src/main/resources/vocabularies/aml_meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,15 @@ uses:
doc: aml_doc.yaml
owl: external/owl.yaml
classTerms:
AnyMapping:
displayName: AnyMapping
description: Base class for all mappings stored in the AML graph model
extends: shacl.Shape
ConditionalNodeMapping:
displayName: ConditionalNodeMapping
extends: shacl.Shape
extends:
- shacl.Shape
- AnyMapping
ContextBaseIri:
displayName: baseIRIModel
description: Encodes information about the base document IRI for the model element @ids
Expand Down Expand Up @@ -83,7 +89,9 @@ classTerms:
displayName: NodeAnnotationMapping
NodeMapping:
displayName: NodeMapping
extends: shacl.Shape
extends:
- shacl.Shape
- AnyMapping
NodePropertyMapping:
displayName: NodePropertyMapping
description: Semantic mapping from an input AST in a dialect document to the output graph of information for a class of output node
Expand All @@ -97,7 +105,9 @@ classTerms:
description: Set of semantic contextual information that can be attached to a schema
UnionNodeMapping:
displayName: UnionNodeMapping
extends: shacl.Shape
extends:
- shacl.Shape
- AnyMapping
Vocabulary:
displayName: Vocabulary
description: Basic primitives for the declaration of vocabularies.
Expand Down

0 comments on commit a0429b5

Please sign in to comment.