UNPKG

@faubulous/mentor-rdf

Version:

A library for working with RDF vocabularies with support for basic RDFS and OWL inference.

18 lines (17 loc) 877 B
import { NamedNode } from '@rdfjs/types'; /** Namespace URI of the FIBO_AGENTS vocabulary. */ export declare const _FIBO_AGENTS = "https://spec.edmcouncil.org/fibo/ontology/FND/AgentsAndPeople/Agents/"; export declare const FIBO_AGENTS: { /** system that reduces or eliminates the need for human involvement in order to complete a task */ AutomatedSystem: string; /** something autonomous that can adapt to and interact with its environment */ AutonomousAgent: string; }; /** Namespace URI of the fibo_agents vocabulary. */ export declare const _fibo_agents: NamedNode; export declare const fibo_agents: { /** system that reduces or eliminates the need for human involvement in order to complete a task */ AutomatedSystem: NamedNode; /** something autonomous that can adapt to and interact with its environment */ AutonomousAgent: NamedNode; };