# (c) Copyright 2004, Hewlett-Packard Development Company, LP, all rights reserved. @prefix rdfs: . @prefix rdf: . @prefix dc: . @prefix : . @prefix xsd: . : rdfs:comment "Vocabulary used by the harvester to defining the sources to scan" ; dc:creator "Dave Reynolds" ; dc:date "2004-05-31" ; dc:format "RDF/N3" ; . ## ---- Specifying a data source to scan ---- :HarvestSource rdf:type rdfs:Class ; rdfs:comment "Type flag for objects which define a source URL to harvest" ; . :newEntry rdf:type rdf:Property ; rdfs:comment "If present the source is a new entry which has not been validated by an administrator" ; rdfs:domain :HarvestSource . :block rdf:type rdf:Property ; rdfs:comment "If present the source is blocked, the property value might give information on the reason" ; rdfs:domain :HarvestSource . :noScan rdf:type rdf:Property ; rdfs:comment "If present the source is not scanned because it is preloaded" ; rdfs:domain :HarvestSource . :trusted rdf:type rdf:Property ; rdfs:comment "If present the source is trusted to introduce new sources, the property value might give information on the reason" ; rdfs:domain :HarvestSource . :lastModified rdf:type rdf:Property ; rdfs:comment "Records the date stamp of the last successful load of this source" ; rdfs:domain :HarvestSource . :digest rdf:type rdf:Property ; rdfs:comment "Optional MD5 digest of the last copy of this source, used if the lastModified stamp isn't available to decide when the reload" ; rdfs:domain :HarvestSource . :definitiveFor rdf:type rdf:Property ; rdfs:comment "Specifies a URI for which this source supplies definitive information, this may be a bNode with an inverseFunctional property" ; rdfs:domain :HarvestSource . :banner rdf:type rdf:Property ; rdfs:comment "Gives html text to use for displaying a warning banner for this data source" ; rdfs:domain :HarvestSource . :resourceRemovedOn rdf:type rdf:Property ; rdfs:comment "Used to record when a given resource was individually removed via the manual admin interface" ; .