The Perl Toolchain Summit 2025 Needs You: You can help 🙏 Learn more

NAME

OWL::Data::Def::DatatypeProperty - definition of an owl datatype property

SYNOPSIS

# create a new data type
my $datatype = new OWL::Data::Def::DatatypeProperty
( name => 'MySequenceProperty',
);
# get the name of this datatype property
print $datatype->name;

DESCRIPTION

A container representing an OWL datatype property definition

AUTHORS

Edward Kawas (edward.kawas [at] gmail [dot] com)

ACCESSIBLE ATTRIBUTES

Details are in OWL::Base. Here just a list of them:

name

A name of this datatype property

parent

A parent for this datatype property ... defaults to OWL::Data::OWL::DatatypeProperty

domain

The domain of this datatype property

range

The range of this datatype property

uri

The uri of this datatype property

SUBROUTINES