WSML
1 program
Added 2026-03-11T10:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: Web Services Modeling Language
Provenance: commit 71c327dea3 · authored 2026-03-11T22:47:19+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Simple Animals Ontology
Provenance: commit 71c327dea3 · authored 2026-03-11T22:47:19+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
wsmlVariant _"http://www.wsmo.org/wsml/wsml-syntax/wsml-flight"
namespace { _"http://www.example.org/ontologies/animals#",
dc _"http://purl.org/dc/elements/1.1#"
}
ontology _"http://www.example.org/ontologies/animals"
annotations
dc#title hasValue "Simple Animals Ontology"
dc#description hasValue "An example WSML ontology describing animal classifications"
endAnnotations
concept Animal
attributes
hasName ofType _string
hasLegs ofType _integer
concept Mammal subConceptOf Animal
concept Reptile subConceptOf Animal
concept Bird subConceptOf Animal
concept Dog subConceptOf Mammal
concept Cat subConceptOf Mammal
instance Fido memberOf Dog
hasName hasValue "Fido"
hasLegs hasValue 4
instance Whiskers memberOf Cat
hasName hasValue "Whiskers"
hasLegs hasValue 4
axiom MammalHasLegs
definedBy
?x memberOf Mammal and ?x[hasLegs hasValue ?n]
implies ?n > 0 .