@prefix bido: <http://purl.org/spar/bido/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

bido:NumericBibliometricData a owl:Class ;
    rdfs:label "numeric bibliometric data"@en ;
    vann:example """
    :my-numeric-bibliometric-data a bido:NumericBibliometricData ;
        bido:hasMeasure bido:journal-impact-factor ;
        bido:hasNumericValue "2.464"^^xsd:float .
    """ ;
    rdfs:comment "Bibliometric data represented by numbers. Such numeric data are those characterised by a certain integer or float value related to a particular bibliometric measure."@en ;
    rdfs:isDefinedBy <http://purl.org/spar/bido-core/> ;
    rdfs:subClassOf [ a owl:Restriction ;
            owl:cardinality "1"^^xsd:nonNegativeInteger ;
            owl:onProperty bido:hasMeasure ],
        [ a owl:Restriction ;
            owl:cardinality "1"^^xsd:nonNegativeInteger ;
            owl:onProperty bido:hasNumericValue ],
        bido:BibliometricData ;
    vs:term_status reg:statusStable .

