@prefix : . @prefix owl: . @prefix rdf: . @prefix xml: . @prefix xsd: . @prefix rdfs: . @base . rdf:type owl:Ontology ; 1.0 ; "ML-Schema is a collaborative, community effort with a mission to develop, maintain, and promote standard schemas for data mining and machine learning algorithms, datasets, and experiments" ; "Machine Learning Schema" ; "EN" ; owl:versionIRI . ################################################################# # # Annotation properties # ################################################################# ### http://purl.org/dc/terms/description rdf:type owl:AnnotationProperty . ### http://purl.org/dc/terms/hasVersion rdf:type owl:AnnotationProperty . ### http://purl.org/dc/terms/issued rdf:type owl:AnnotationProperty . ### http://purl.org/dc/terms/modified rdf:type owl:AnnotationProperty . ### http://purl.org/dc/terms/publisher rdf:type owl:AnnotationProperty . ### http://purl.org/dc/terms/title rdf:type owl:AnnotationProperty . ### http://www.w3.org/2004/02/skos/core#note rdf:type owl:AnnotationProperty . ################################################################# # # Datatypes # ################################################################# ### http://www.w3.org/2001/XMLSchema#date xsd:date rdf:type rdfs:Datatype . ################################################################# # # Object Properties # ################################################################# ### http://www.w3.org/ns/mls#achieves :achieves rdf:type owl:ObjectProperty ; "A relation between a run and a task, where the run achieves specifications formulated by the task." ; rdfs:comment "A relation between a run and a task, where the run achieves specifications formulated by the task." . ### http://www.w3.org/ns/mls#definedOn :definedOn rdf:type owl:ObjectProperty ; rdfs:label "definedOn"@en ; rdfs:comment "A relation between a task and either the data or an evaluation specification pertinent to this task." ; "A relation between a task and either the data or an evaluation specification pertinent to this task." ; rdfs:subPropertyOf owl:topObjectProperty . ### http://www.w3.org/ns/mls#defines :defines rdf:type owl:ObjectProperty ; owl:inverseOf :definedOn . ### http://www.w3.org/ns/mls#executes :executes rdf:type owl:ObjectProperty ; "A relation between a run and an implemantation that is being executed during the run." ; rdfs:comment "A relation between a run and an implemantation that is being executed during the run." ; rdfs:subPropertyOf owl:topObjectProperty . ### http://www.w3.org/ns/mls#hasHyperParameter :hasHyperParameter rdf:type owl:ObjectProperty ; rdfs:label "hasHyperParameter"@en ; "A relation between an implementation of a machine learning algorithm and its hyperparameter." ; rdfs:comment "A relation between an implementation of a machine learning algorithm and its hyperparameter." ; rdfs:subPropertyOf owl:topObjectProperty . ### http://www.w3.org/ns/mls#hasInput :hasInput rdf:type owl:ObjectProperty ; rdfs:label "hasInput"@en ; "A relation between a run and data that is taken as input to the run." ; rdfs:comment "A relation between a run and data that is taken as input to the run." ; rdfs:subPropertyOf owl:topObjectProperty . ### http://www.w3.org/ns/mls#hasOutput :hasOutput rdf:type owl:ObjectProperty ; "A relation between a run and either a model or model evaluation that is produced on it’s output." ; rdfs:comment "A relation between a run and either a model or model evaluation that is produced on it’s output." . ### http://www.w3.org/ns/mls#hasPart :hasPart rdf:type owl:ObjectProperty ; rdfs:label "hasPart"@en ; "A relation which represents a part-whole relationship holding between an entity and its part." ; rdfs:comment "A relation which represents a part-whole relationship holding between an entity and its part." . ### http://www.w3.org/ns/mls#hasQuality :hasQuality rdf:type owl:ObjectProperty ; "A relation between entities and their various characteristics." ; rdfs:comment "A relation between entities and their various characteristics." . ### http://www.w3.org/ns/mls#implements :implements rdf:type owl:ObjectProperty ; rdfs:label "implements"@en ; "A relation between an information entity and a specification that it conforms to." ; rdfs:comment "A relation between an information entity and a specification that it conforms to." . ### http://www.w3.org/ns/mls#realizes :realizes rdf:type owl:ObjectProperty ; "A relation between a run and an algorithm, where the run realizes specifications formulated by the algorithm." ; rdfs:comment "A relation between a run and an algorithm, where the run realizes specifications formulated by the algorithm." ; rdfs:subPropertyOf owl:topObjectProperty . ### http://www.w3.org/ns/mls#specifiedBy :specifiedBy rdf:type owl:ObjectProperty ; "A relation between an entity and the information content entity that specifies it." ; rdfs:comment "A relation between an entity and the information content entity that specifies it." . ################################################################# # # Data properties # ################################################################# ### http://www.w3.org/ns/mls#hasValue :hasValue rdf:type owl:DatatypeProperty . ################################################################# # # Classes # ################################################################# ### http://www.w3.org/ns/mls#Algorithm :Algorithm rdf:type owl:Class ; rdfs:subClassOf :InformationEntity ; rdfs:comment "The algorithm regardless software implementation." ; "The algorithm regardless software implementation." . ### http://www.w3.org/ns/mls#Data :Data rdf:type owl:Class ; rdfs:subClassOf :InformationEntity , [ rdf:type owl:Restriction ; owl:onProperty :hasQuality ; owl:someValuesFrom :DataCharacteristic ] ; rdfs:comment """Data is a data item composed of data examples and it may be of a various level of granularity and complexity. With regard to granularity, it can be a whole dataset (for instance, one main table and possibly other tables), or only a single table, or only a feature (e.g., a column of a table), or only an instance (e.g., row of a table), or a single feature-value pair. With regard to complexity, data examples are characterized by their datatype, which may be arbitrarily complex (e.g., instead of a table it can be an arbitrary graph).""" ; """Data is a data item composed of data examples and it may be of a various level of granularity and complexity. With regard to granularity, it can be a whole dataset (for instance, one main table and possibly other tables), or only a single table, or only a feature (e.g., a column of a table), or only an instance (e.g., row of a table), or a single feature-value pair. With regard to complexity, data examples are characterized by their datatype, which may be arbitrarily complex (e.g., instead of a table it can be an arbitrary graph).""" . ### http://www.w3.org/ns/mls#DataCharacteristic :DataCharacteristic rdf:type owl:Class ; rdfs:subClassOf :Quality ; """DataCharacteristic is a distinguishing quality or property that distinguish one data from another. Such characteristics are often statistical ones (e.g., the number of instances or the number of features of a data set). They may be also informationtheoretic measures (e.g., class entropy of a categorical data set) or geometric measures of data complexity (e.g., the highest discriminatory power of any single feature in the data set).""" ; rdfs:comment """DataCharacteristic is a distinguishing quality or property that distinguish one data from another. Such characteristics are often statistical ones (e.g., the number of instances or the number of features of a data set). They may be also informationtheoretic measures (e.g., class entropy of a categorical data set) or geometric measures of data complexity (e.g., the highest discriminatory power of any single feature in the data set).""" . ### http://www.w3.org/ns/mls#Dataset :Dataset rdf:type owl:Class ; rdfs:subClassOf :Data . ### http://www.w3.org/ns/mls#DatasetCharacteristic :DatasetCharacteristic rdf:type owl:Class ; rdfs:subClassOf :DataCharacteristic . ### http://www.w3.org/ns/mls#EvaluationMeasure :EvaluationMeasure rdf:type owl:Class ; rdfs:subClassOf :InformationEntity ; "EvaluationMeasure is a measure to assess the performance of the model generated by the process that realizes the task. Examples are predictive accuracy or f-measure." ; rdfs:comment "EvaluationMeasure is a measure to assess the performance of the model generated by the process that realizes the task. Examples are predictive accuracy or f-measure." . ### http://www.w3.org/ns/mls#EvaluationProcedure :EvaluationProcedure rdf:type owl:Class ; rdfs:subClassOf :InformationEntity ; rdfs:comment "EvaluationProcedure is a technique to evaluate machine learning models. Examples are cross-validation and leave-one-out." ; "EvaluationProcedure is a technique to evaluate machine learning models. Examples are cross-validation and leave-one-out." . ### http://www.w3.org/ns/mls#EvaluationSpecification :EvaluationSpecification rdf:type owl:Class ; rdfs:subClassOf :InformationEntity , [ rdf:type owl:Restriction ; owl:onProperty :hasPart ; owl:someValuesFrom :EvaluationProcedure ] , [ rdf:type owl:Restriction ; owl:onProperty :defines ; owl:someValuesFrom :Task ] , [ rdf:type owl:Restriction ; owl:onProperty :hasPart ; owl:someValuesFrom :EvaluationMeasure ] ; "EvaluationSpecification is a specification of an evaluation measure and an evaluation procedure to assess the performance of the process that realizes the task." ; rdfs:comment "EvaluationProcedure is a technique to evaluate machine learning models. Examples are cross-validation and leave-one-out." . ### http://www.w3.org/ns/mls#Experiment :Experiment rdf:type owl:Class ; rdfs:subClassOf :Process , [ rdf:type owl:Restriction ; owl:onProperty :hasPart ; owl:someValuesFrom :Run ] ; "Experiment is a collection of runs." ; rdfs:comment "Experiment is a collection of runs." . ### http://www.w3.org/ns/mls#Feature :Feature rdf:type owl:Class ; rdfs:subClassOf :Data . ### http://www.w3.org/ns/mls#FeatureCharacteristic :FeatureCharacteristic rdf:type owl:Class ; rdfs:subClassOf :DataCharacteristic . ### http://www.w3.org/ns/mls#HyperParameter :HyperParameter rdf:type owl:Class ; rdfs:subClassOf :InformationEntity ; "Hyperparameter is a prior parameter of an implementation, i.e., a parameter which is set before its execution (e.g. C, the complexity parameter, in weka.SMO)." ; rdfs:comment "Hyperparameter is a prior parameter of an implementation, i.e., a parameter which is set before its execution (e.g. C, the complexity parameter, in weka.SMO)." . ### http://www.w3.org/ns/mls#HyperParameterSetting :HyperParameterSetting rdf:type owl:Class ; rdfs:subClassOf :InformationEntity , [ rdf:type owl:Restriction ; owl:onProperty :hasValue ; owl:someValuesFrom rdfs:Literal ] , [ rdf:type owl:Restriction ; owl:onProperty :specifiedBy ; owl:someValuesFrom :HyperParameter ] ; "HyperParameterSetting is an entity which connects a hyperparameter and its value that is being set before an implementation execution." ; rdfs:comment "HyperParameterSetting is an entity which connects a hyperparameter and its value that is being set before an implementation execution." . ### http://www.w3.org/ns/mls#Implementation :Implementation rdf:type owl:Class ; rdfs:subClassOf :InformationEntity , [ rdf:type owl:Restriction ; owl:onProperty :hasHyperParameter ; owl:someValuesFrom :HyperParameter ] , [ rdf:type owl:Restriction ; owl:onProperty :hasQuality ; owl:someValuesFrom :ImplementationCharacteristic ] , [ rdf:type owl:Restriction ; owl:onProperty :implements ; owl:someValuesFrom :Algorithm ] ; "Implementation is an executable implementation of a machine learning algorithm, a script, or a workflow. It is versioned, and sometimes belongs to a library (e.g. WEKA)." ; rdfs:comment "Implementation is an executable implementation of a machine learning algorithm, a script, or a workflow. It is versioned, and sometimes belongs to a library (e.g. WEKA)." . ### http://www.w3.org/ns/mls#ImplementationCharacteristic :ImplementationCharacteristic rdf:type owl:Class ; rdfs:subClassOf :Quality ; rdfs:comment "ImplementationCharacteristic is a distinguishing quality or property that distinguish one implementation from another." ; "ImplementationCharacteristic is a distinguishing quality or property that distinguish one implementation from another." . ### http://www.w3.org/ns/mls#InformationEntity :InformationEntity rdf:type owl:Class . ### http://www.w3.org/ns/mls#Model :Model rdf:type owl:Class ; rdfs:subClassOf :InformationEntity , [ rdf:type owl:Restriction ; owl:onProperty :hasQuality ; owl:someValuesFrom :ModelCharacteristic ] ; rdfs:comment "Model is a generalization of a set of training data able to predict values for unseen instances. It is an output from an execution of a data mining algorithm implementation. Models have a dual nature. They can be treated as data structures and as such represented, stored and manipulated. On the other hand, they act as functions and are executed, taking as input data examples and giving as output the result of applying the function to a data example. Models can also be divided into global or local ones. A global model has global coverage of a data set, i.e., it generalizes the whole data set. A local model, such as a pattern set, is a set of local hypotheses, i.e. each applies to a limited region of the data set." ; "Model is a generalization of a set of training data able to predict values for unseen instances. It is an output from an execution of a data mining algorithm implementation. Models have a dual nature. They can be treated as data structures and as such represented, stored and manipulated. On the other hand, they act as functions and are executed, taking as input data examples and giving as output the result of applying the function to a data example. Models can also be divided into global or local ones. A global model has global coverage of a data set, i.e., it generalizes the whole data set. A local model, such as a pattern set, is a set of local hypotheses, i.e. each applies to a limited region of the data set." . ### http://www.w3.org/ns/mls#ModelCharacteristic :ModelCharacteristic rdf:type owl:Class ; rdfs:subClassOf :Quality ; rdfs:comment "ModelCharacteristic is a distinguishing quality or property that distinguish one model from another. An example model characetristic may be interpretabilty or a complexity of the model." ; "ModelCharacteristic is a distinguishing quality or property that distinguish one model from another. An example model characetristic may be interpretabilty or a complexity of the model." . ### http://www.w3.org/ns/mls#ModelEvaluation :ModelEvaluation rdf:type owl:Class ; rdfs:subClassOf :InformationEntity , [ rdf:type owl:Restriction ; owl:onProperty :hasValue ; owl:someValuesFrom rdfs:Literal ] , [ rdf:type owl:Restriction ; owl:onProperty :specifiedBy ; owl:someValuesFrom :EvaluationMeasure ] ; rdfs:comment "ModelEvaluation is a setting of a value of the performance measure specified by the evaluation specification. It connects a measure specification with its value." ; "ModelEvaluation is a setting of a value of the performance measure specified by the evaluation specification. It connects a measure specification with its value." . ### http://www.w3.org/ns/mls#Process :Process rdf:type owl:Class ; rdfs:label "Process"@en . ### http://www.w3.org/ns/mls#Quality :Quality rdf:type owl:Class . ### http://www.w3.org/ns/mls#Run :Run rdf:type owl:Class ; rdfs:subClassOf :Process , [ rdf:type owl:Restriction ; owl:onProperty :hasInput ; owl:someValuesFrom :Data ] , [ rdf:type owl:Restriction ; owl:onProperty :hasOutput ; owl:someValuesFrom :Model ] , [ rdf:type owl:Restriction ; owl:onProperty :hasOutput ; owl:someValuesFrom :ModelEvaluation ] , [ rdf:type owl:Restriction ; owl:onProperty :achieves ; owl:someValuesFrom :Task ] , [ rdf:type owl:Restriction ; owl:onProperty :realizes ; owl:someValuesFrom :Algorithm ] , [ rdf:type owl:Restriction ; owl:onProperty :hasInput ; owl:someValuesFrom :HyperParameterSetting ] , [ rdf:type owl:Restriction ; owl:onProperty :executes ; owl:someValuesFrom :Implementation ] ; rdfs:comment "Run is an execution of an implementation on a machine (computer). It is limited in time (has a start and end point), can be successful or failed." ; "Run is an execution of an implementation on a machine (computer). It is limited in time (has a start and end point), can be successful or failed." . ### http://www.w3.org/ns/mls#Software :Software rdf:type owl:Class ; rdfs:subClassOf :InformationEntity , [ rdf:type owl:Restriction ; owl:onProperty :hasPart ; owl:someValuesFrom :Implementation ] ; "Software is implemented computer programs, procedures, scripts or rules with associated documentation, possibly constituting an organized environment, stored in read/write memory for the purpose of being executed within a computer system." ; rdfs:comment "Software is implemented computer programs, procedures, scripts or rules with associated documentation, possibly constituting an organized environment, stored in read/write memory for the purpose of being executed within a computer system." . ### http://www.w3.org/ns/mls#Study :Study rdf:type owl:Class ; rdfs:subClassOf :Process , [ rdf:type owl:Restriction ; owl:onProperty :hasPart ; owl:someValuesFrom :Experiment ] ; rdfs:comment "Study is a collection of runs that belong together to do some kind of analysis on its results. This analysis can be general or very specific (e.g. a hypothesis test). Can be linked to files, data, that belong to it." ; "Study is a collection of runs that belong together to do some kind of analysis on its results. This analysis can be general or very specific (e.g. a hypothesis test). Can be linked to files, data, that belong to it." . ### http://www.w3.org/ns/mls#Task :Task rdf:type owl:Class ; rdfs:subClassOf :InformationEntity , [ rdf:type owl:Restriction ; owl:onProperty :definedOn ; owl:someValuesFrom :Data ] ; "Task is a formal description of a process that needs to be completed (e.g. based on inputs and outputs). A Task is any piece of work that needs to be addressed in the data mining process. In ML Schema, it is defined based on data." ; rdfs:comment "Task is a formal description of a process that needs to be completed (e.g. based on inputs and outputs). A Task is any piece of work that needs to be addressed in the data mining process. In ML Schema, it is defined based on data." . ################################################################# # # Annotations # ################################################################# rdfs:label "Contributor"@en ; "1999-07-02"^^xsd:date ; "2008-01-14"^^xsd:date ; "A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document \"DCMI Metadata Terms\" (http://dublincore.org/documents/dcmi-terms/) for an explanation."@en ; rdfs:comment "An entity responsible for making contributions to the resource."@en ; "Examples of a Contributor include a person, an organization, or a service. Typically, the name of a Contributor should be used to indicate the entity."@en ; ; rdfs:isDefinedBy . rdfs:label "Publisher"@en ; "1999-07-02"^^xsd:date ; "2008-01-14"^^xsd:date ; "A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document \"DCMI Metadata Terms\" (http://dublincore.org/documents/dcmi-terms/) for an explanation."@en ; rdfs:comment "An entity responsible for making the resource available."@en ; "Examples of a Publisher include a person, an organization, or a service. Typically, the name of a Publisher should be used to indicate the entity."@en ; ; rdfs:isDefinedBy . rdfs:label "Relation"@en ; "1999-07-02"^^xsd:date ; "2008-01-14"^^xsd:date ; rdfs:comment "A related resource."@en ; "A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document \"DCMI Metadata Terms\" (http://dublincore.org/documents/dcmi-terms/) for an explanation."@en ; "Recommended best practice is to identify the related resource by means of a string conforming to a formal identification system. "@en ; ; rdfs:isDefinedBy . rdfs:label "Title"@en ; "1999-07-02"^^xsd:date ; "2008-01-14"^^xsd:date ; rdfs:comment "A name given to the resource."@en ; "A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document \"DCMI Metadata Terms\" (http://dublincore.org/documents/dcmi-terms/) for an explanation."@en ; ; rdfs:isDefinedBy . rdfs:label "Source"@en ; "1999-07-02"^^xsd:date ; "2008-01-14"^^xsd:date ; rdfs:comment "A related resource from which the described resource is derived."@en ; "A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document \"DCMI Metadata Terms\" (http://dublincore.org/documents/dcmi-terms/) for an explanation."@en ; "The described resource may be derived from the related resource in whole or in part. Recommended best practice is to identify the related resource by means of a string conforming to a formal identification system."@en ; ; rdfs:isDefinedBy . rdfs:label "Language"@en ; "1999-07-02"^^xsd:date ; "2008-01-14"^^xsd:date ; rdfs:comment "A language of the resource."@en ; "A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document \"DCMI Metadata Terms\" (http://dublincore.org/documents/dcmi-terms/) for an explanation."@en ; "Recommended best practice is to use a controlled vocabulary such as RFC 4646 [RFC4646]."@en ; ; rdfs:isDefinedBy ; rdfs:seeAlso . rdfs:label "Coverage"@en ; "1999-07-02"^^xsd:date ; "2008-01-14"^^xsd:date ; "A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document \"DCMI Metadata Terms\" (http://dublincore.org/documents/dcmi-terms/) for an explanation."@en ; "Spatial topic and spatial applicability may be a named place or a location specified by its geographic coordinates. Temporal topic may be a named period, date, or date range. A jurisdiction may be a named administrative entity or a geographic place to which the resource applies. Recommended best practice is to use a controlled vocabulary such as the Thesaurus of Geographic Names [TGN]. Where appropriate, named places or time periods can be used in preference to numeric identifiers such as sets of coordinates or date ranges."@en ; rdfs:comment "The spatial or temporal topic of the resource, the spatial applicability of the resource, or the jurisdiction under which the resource is relevant."@en ; ; rdfs:isDefinedBy . "2012-06-14"^^xsd:date ; "Dublin Core Metadata Element Set, Version 1.1"@en ; . rdfs:label "Date"@en ; "1999-07-02"^^xsd:date ; "2008-01-14"^^xsd:date ; rdfs:comment "A point or period of time associated with an event in the lifecycle of the resource."@en ; "A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document \"DCMI Metadata Terms\" (http://dublincore.org/documents/dcmi-terms/) for an explanation."@en ; "Date may be used to express temporal information at any level of granularity. Recommended best practice is to use an encoding scheme, such as the W3CDTF profile of ISO 8601 [W3CDTF]."@en ; ; rdfs:isDefinedBy . rdfs:label "Subject"@en ; "1999-07-02"^^xsd:date ; "2012-06-14"^^xsd:date ; "A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document \"DCMI Metadata Terms\" (http://dublincore.org/documents/dcmi-terms/) for an explanation."@en ; rdfs:comment "The topic of the resource."@en ; "Typically, the subject will be represented using keywords, key phrases, or classification codes. Recommended best practice is to use a controlled vocabulary."@en ; ; rdfs:isDefinedBy . rdfs:label "Type"@en ; "1999-07-02"^^xsd:date ; "2008-01-14"^^xsd:date ; "A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document \"DCMI Metadata Terms\" (http://dublincore.org/documents/dcmi-terms/) for an explanation."@en ; "Recommended best practice is to use a controlled vocabulary such as the DCMI Type Vocabulary [DCMITYPE]. To describe the file format, physical medium, or dimensions of the resource, use the Format element."@en ; rdfs:comment "The nature or genre of the resource."@en ; ; rdfs:isDefinedBy . rdfs:label "Description"@en ; "1999-07-02"^^xsd:date ; "2008-01-14"^^xsd:date ; "A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document \"DCMI Metadata Terms\" (http://dublincore.org/documents/dcmi-terms/) for an explanation."@en ; rdfs:comment "An account of the resource."@en ; "Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource."@en ; ; rdfs:isDefinedBy . rdfs:label "Identifier"@en ; "1999-07-02"^^xsd:date ; "2008-01-14"^^xsd:date ; "A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document \"DCMI Metadata Terms\" (http://dublincore.org/documents/dcmi-terms/) for an explanation."@en ; rdfs:comment "An unambiguous reference to the resource within a given context."@en ; "Recommended best practice is to identify the resource by means of a string conforming to a formal identification system. "@en ; ; rdfs:isDefinedBy . rdfs:label "Rights"@en ; "1999-07-02"^^xsd:date ; "2008-01-14"^^xsd:date ; "A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document \"DCMI Metadata Terms\" (http://dublincore.org/documents/dcmi-terms/) for an explanation."@en ; rdfs:comment "Information about rights held in and over the resource."@en ; "Typically, rights information includes a statement about various property rights associated with the resource, including intellectual property rights."@en ; ; rdfs:isDefinedBy . rdfs:label "Format"@en ; "1999-07-02"^^xsd:date ; "2008-01-14"^^xsd:date ; "A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document \"DCMI Metadata Terms\" (http://dublincore.org/documents/dcmi-terms/) for an explanation."@en ; "Examples of dimensions include size and duration. Recommended best practice is to use a controlled vocabulary such as the list of Internet Media Types [MIME]."@en ; rdfs:comment "The file format, physical medium, or dimensions of the resource."@en ; ; rdfs:isDefinedBy . rdfs:label "Creator"@en ; "1999-07-02"^^xsd:date ; "2008-01-14"^^xsd:date ; "A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/). See the Introduction to the document \"DCMI Metadata Terms\" (http://dublincore.org/documents/dcmi-terms/) for an explanation."@en ; rdfs:comment "An entity primarily responsible for making the resource."@en ; "Examples of a Creator include a person, an organization, or a service. Typically, the name of a Creator should be used to indicate the entity."@en ; ; rdfs:isDefinedBy . ### Generated by the OWL API (version 3.5.1) http://owlapi.sourceforge.net