@faubulous/mentor-rdf
Version:
A library for working with RDF vocabularies with support for basic RDFS and OWL inference.
70 lines (69 loc) • 4.93 kB
TypeScript
import { NamedNode } from '@rdfjs/types';
/** Namespace URI of the FIBO_ORGANIZATION vocabulary. */
export declare const _FIBO_ORGANIZATION = "https://spec.edmcouncil.org/fibo/ontology/FND/Organizations/Organizations/";
export declare const FIBO_ORGANIZATION: {
/** role of a group or organization that has members that are people or other organizations */
MemberBearingOrganization: string;
/** situation, corresponding to an n-ary relation, in which some group or organization has at least one member (person or organization) for some period of time */
Membership: string;
/** collection of one or more people, or groups of people formed together into a community or other social, commercial or political structure to act, or that is designated to act, towards some purpose, such as to meet a need or pursue collective goals on a continuing basis */
Organization: string;
/** identification scheme dedicated to the unique identification of organizations */
OrganizationIdentificationScheme: string;
/** identifier assigned to an organization within an organization identification scheme, and unique within that scheme */
OrganizationIdentifier: string;
/** party (person or organization) that has a membership role with respect to some organization */
OrganizationMember: string;
/** designation by which some organization is known in some context */
OrganizationName: string;
/** identifier allocated to a particular organizational sub-unit */
OrganizationPartIdentifier: string;
/** any department, service, and other entity within a larger organization that only has full recognition within the context of that organization, but requires identification for some purpose */
OrganizationalSubUnit: string;
/** identifies the organization acting in the role of having members in an organizational membership situation */
hasMembership: string;
/** indicates the party that is the member in an organizational membership situation */
hasOrganizationMember: string;
/** relates an organization to a part of that organization */
hasSubUnit: string;
/** indicates the context of membership in which the party plays the role of having members */
isMembershipPartyIn: string;
/** indicates the context of membership in which some party is an organization member */
isOrganizationMember: string;
/** relates a part of an organization to the larger entity */
isSubUnitOf: string;
};
/** Namespace URI of the fibo_organization vocabulary. */
export declare const _fibo_organization: NamedNode;
export declare const fibo_organization: {
/** role of a group or organization that has members that are people or other organizations */
MemberBearingOrganization: NamedNode;
/** situation, corresponding to an n-ary relation, in which some group or organization has at least one member (person or organization) for some period of time */
Membership: NamedNode;
/** collection of one or more people, or groups of people formed together into a community or other social, commercial or political structure to act, or that is designated to act, towards some purpose, such as to meet a need or pursue collective goals on a continuing basis */
Organization: NamedNode;
/** identification scheme dedicated to the unique identification of organizations */
OrganizationIdentificationScheme: NamedNode;
/** identifier assigned to an organization within an organization identification scheme, and unique within that scheme */
OrganizationIdentifier: NamedNode;
/** party (person or organization) that has a membership role with respect to some organization */
OrganizationMember: NamedNode;
/** designation by which some organization is known in some context */
OrganizationName: NamedNode;
/** identifier allocated to a particular organizational sub-unit */
OrganizationPartIdentifier: NamedNode;
/** any department, service, and other entity within a larger organization that only has full recognition within the context of that organization, but requires identification for some purpose */
OrganizationalSubUnit: NamedNode;
/** identifies the organization acting in the role of having members in an organizational membership situation */
hasMembership: NamedNode;
/** indicates the party that is the member in an organizational membership situation */
hasOrganizationMember: NamedNode;
/** relates an organization to a part of that organization */
hasSubUnit: NamedNode;
/** indicates the context of membership in which the party plays the role of having members */
isMembershipPartyIn: NamedNode;
/** indicates the context of membership in which some party is an organization member */
isOrganizationMember: NamedNode;
/** relates a part of an organization to the larger entity */
isSubUnitOf: NamedNode;
};