To parse RDF data
Data filtering
interface ISemanticRDFSchema {
/**
* @notice Get the URI of schema for this contract.
* @return The URI of the contract which points to a configuration profile.
*/
function schemaURI() external view returns (string memory);
}Procedures for parsing
PREFIX : <http://relationlabs.ai/entity/>
PREFIX p: <http://relationlabs.ai/property/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>Last updated