IRI:
http://topbraid.org/sparqlmotionlib
Current version:
2.2.3
Imported Ontologies:
http://spinrdf.org/spr (visualise it with LODE)
http://topbraid.org/email (visualise it with LODE)
http://topbraid.org/sparqlmotion (visualise it with LODE)
http://uispin.org/ui (visualise it with LODE)
Other visualisation:
Ontology source

Abstract

The standard library of SPARQLMotion modules. This library may be split into multiple physical files in the future, but the URIs of the module types and properties will be stable.

Table of Content

  1. Classes
  2. Object Properties
  3. Data Properties
  4. Named Individuals
  5. Annotation Properties
  6. Namespace Declarations

Classes

Append textc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#AppendText

Appends a given text (possibly containing template expressions, sml:template) to the value of a given variable (sml:variable) and binds the concatenation of the old value plus the new text to the same variable. This can be used to incrementally build up a string.
has super-classes
Text Processingc
is also defined as
named individual

Apply Constructc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ApplyConstruct

Runs one or more SPARQL Construct queries on the input triples. The output RDF will consist of the constructed triples and (unless sml:replace is true) the input triples.
has super-classes
RDF Processingc
is also defined as
named individual

Apply Jena inferencingc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ApplyJenaInferencing

Applies one of the Jena inference engines on the input triples.
has super-classes
RDF Processingc
is also defined as
named individual

Apply Jena rulesc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ApplyJenaRules

Applies the rules specified as values of the jena:rule property in the source ontologies. Furthermore, all SWRL rules (swrl:Imp) will be converted to Jena rules before execution. The inferred triples will be added to the input.
has super-classes
RDF Processingc
is also defined as
named individual

Apply OWLIMc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ApplyOWLIM

Runs the OWLIM inferencer over the input triples, adding the inferred triples. Note that this SPARQLMotion module does not (yet) support the various settings of OWLIM that are accessible through TBC. Let us know if you need any of them!
has super-classes
RDF Processingc
is also defined as
named individual

Apply Pelletc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ApplyPellet

Applies the Pellet inference engine on the input triples.
has super-classes
RDF Processingc
is also defined as
named individual

Apply TopSPINc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ApplyTopSPIN

Applies the TopSPIN rules inference engine on the input graph. This assumes that the input graph contains one or more SPIN rules (stored using the property specified under sml:predicate, which defaults to spin:rule).
has super-classes
RDF Processingc
is also defined as
named individual

argumentc back to ToC or Class ToC

IRI: http://spinrdf.org/spl#Argument

has sub-classes
Selected resource argumentc

Assert truec back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#AssertTrue

Evaluates an ASK condition and stops the execution of the script and reports an error if the condition is false. This module is particularly useful for web services that simply cannot execute if unexpected situations are encountered. The module will simply pass through all variable bindings and RDF triples if no errors are found.
has super-classes
Control Flowc
is also defined as
named individual

Bind by selectc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#BindBySelect

Runs a SPARQL select query and binds all result variables of the first matching result set. The input RDF is simply passed through to the next module. For example, if you run SELECT ?name ?age WHERE { my:Person my:name ?name ; my:age ?age } then the variables name and age will be bound as output variables.
has super-classes
Control Flowc
is also defined as
named individual

Bind by XPathc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#BindByXPath

Evaluates an XPath on a given XML node (or document) and binds the first result to a given variable.
has super-classes
XML Processingc
is also defined as
named individual

Bind literal variablec back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#BindLiteralVariable

Binds the output variable with a constant of a given datatype, or with a value derived from one or more other input variable values. The template could be as simple as {?varName} to insert the variable's value or more complex such as {?firstName} {?lastName}. This module can also be used to convert the datatype, e.g. to convert a xsd:string into a xsd:float.
has super-classes
Control Flowc
is also defined as
named individual

Bind with constantc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#BindWithConstant

Binds a variable with a given RDF node.
has super-classes
Control Flowc
is also defined as
named individual

Bind with parameterc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#BindWithParameter

Deprecated since 2.0.0: Web Services are now defined like user-defined functions and SPIN functions, and the parameters are instances of spl:Argument.
has super-classes
Control Flowc
is also defined as
named individual

Bind with selected resourcec back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#BindWithSelectedResource

Deprecated since 2.0.0/TopBraid 3.0: use sml:SelectedResourceArgument in a function definition instead.
has super-classes
Control Flowc
is also defined as
named individual

Branch by askc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#BranchByAsk

Runs a SPARQL Ask query and, depending on the resulting boolean, either continues with the sm:if or the sm:else branch. Both branches can be sub-scripts, and the sm:if and sm:else should point to the entry points of those sub-scripts. Those entry modules will be passed the same RDF triples and variable bindings as passed to theBranchByAsk module itself. The result of the execution will be the target module (last module in the sub-script) of the selected branch. All variable bindings of the result module will also be passed on as output to the next module(s). Both branches must have exactly one target module. If a branch is empty then the module's input will be passed on unchanged.
has super-classes
Control Flowc
is also defined as
named individual

Call Calaisc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#CallCalais

Runs the OpenCalais web service to extract RDF entities from text. The result will be the input triples plus the extracted triples (instances of the Calais ontology classes).
has super-classes
Text Processingc
is also defined as
named individual

Catch exceptionsc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#CatchExceptions

Runs a sub-script (sm:body) and catches any errors (Java Exceptions) that happened within it. Normally, the SPARQLMotion engine exits on hitting any Exception, but this module provides a level of error handling. If an error occurs, then the result variable (sm:outputVariable) will contain the error message, and the result graph will be the same as the input of the module itself. Otherwise, the output graph will be the last module of the nested body script, and any variable bindings from the body will be applied to the next modules.
has super-classes
Control Flowc
is also defined as
named individual

Check constraintsc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#CheckConstraints

Runs all SPIN constraints defined in the current input graph. The output of this module will be a new RDF graph that only contains the spin:ConstraintViolation instances. If the SELECT query is specified, then only the selected resources will be checked, not the whole model.
has super-classes
RDF Processingc
is also defined as
named individual

Check spellingc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#CheckSpelling

Runs a SPARQL select query and binds result variables for each matching result set. Strings bound to variables in the SELECT clause will be passed to a TBL spellchecker, which will parse the string into individual words and return triples representing each word from the string not in the dictionary. Each word returned is represented as an instance of the class http://topbraid.org/spellcheckresults#SpellResult with properties inputString, foundError, mispelledWords, and suggestions, all with the same prefix as SpellResult, http://topbraid.org/spellcheckresults#. The value of the suggestions property is an rdf:Bag with five suggested replacements for the word. In the checked content, terms in all upper-case such as acronyms are ignored. The spellcheck dictionary is included with TopBraid Live (both Personal and Enterprise Server). Words can be added to the dictionary through the sml:UpdateUserWordDictionary module.
has super-classes
RDF Processingc
is also defined as
named individual

Clone variablec back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#CloneVariable

Clones a given variable value and assigns it to a new output variable. The input variable will keep its value. This module can be useful to "rename" an existing variable so that it has a matching name that is expected by modules downstream in the script. For example, if you have a variable ?xmlFile but a next module expects an input argument ?xml (via an argument sml:xml), then you can use sml:CloneVariable to bind ?xml with the value of ?xmlFile. Note that in many (most?) cases, you can achieve the same by using inline SPARQL expressions: in TBC use "Add SPARQL expression" from the context menu of the property name and enter an expression such as ?xmlFile at the sml:xml property.
has super-classes
Control Flowc
is also defined as
named individual

Collect garbagec back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#CollectGarbage

Collects "garbage" to clean up memory from RDF models that are no longer used. Currently, this requires specifying the base URI of a graph that has been previously loaded. Note that the use of this module is not safe in a multi-user setting, and should only be used if you know what you are doing.
has super-classes
Control Flowc
is also defined as
named individual

Commit changesc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#CommitChanges

This module can be used in conjunction with TBE sessions to commit changes from the session's buffers into the underlying data stores. This is comparable to the "Save Data" button in TBE.
has super-classes
Export to Variousc
is also defined as
named individual

Concatenate textc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ConcatenateText

Executes a SPARQL Select query and creates a single long text string by concatenating all result variable bindings. This can be used, for example, to create a single "fullName" value from "firstName" and "lastName" properties (in which case the order of variables in the SELECT clause is relevant. Another use case is to build a single long string from multiple property values of the same kind, e.g. to concatenate all text bodies of all RSS items in a newsfeed. The resulting text can then be further processed by text processing modules such as text miners.
has super-classes
Text Processingc
is also defined as
named individual

Control Flowc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ControlFlowModules

has super-classes
Processingc
has sub-classes
Assert truec, Bind by selectc, Bind literal variablec, Bind with constantc, Bind with parameterc, Bind with selected resourcec, Branch by askc, Catch exceptionsc, Clone variablec, Collect garbagec, Iterate over SQLc, Iterate over argumentsc, Iterate over selectc, Iterate whilec, Mergec, Release lockc, Request lockc
is also defined as
named individual

Convert datatypec back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ConvertDatatype

Replaces all triples that have a given property as predicate (specified by sml:predicate) by converting its object literals into a different RDF datatype (specified as sml:datatype).
has super-classes
RDF Processingc
is also defined as
named individual

Convert Java objects to RDFc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ConvertJavaObjectsToRDF

Converts Java objects (e.g. loaded using sml:ImportJavaObjectsFromEMFFile) into RDF classes, properties and instances that have the same structure. The module will start at a root object and traverse all properties of that object (using JavaBeans-like getter methods), converting each instance into RDF blank nodes. The traversal into adjacent objects only continues if the object has one of the types specified by this module.
has super-classes
RDF Processingc
is also defined as
named individual

Convert JSON to RDFc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ConvertJSONToRDF

Takes a JSON object or array (represented as text) and converts it to RDF triples with the same structure. The result graph will only contain the generated triples - the input graph will be ignored and may need to be passed on with a separate sm:next relationship. The graph uses the namespace prefix "json" for http://topbraid.org/json#. The conversion will start at the JSON root and does a recursive walk through of the JSON objects and arrays. Each JSON object becomes a blank node of type json:Object. Each attribute of the JSON object is mapped into a property from the json namespace, e.g. attribute "firstName" becomes a property json:firstName. No types are generated for those properties (but a simple CONSTRUCT could be used). The values of those properties depend on the JSON attribute value. Arrays are converted to rdf:Lists, JSON objects recursively become new blank nodes. Numbers, booleans and strings become corresponding RDF literals. Optionally, the module can bind a new variable pointing at the root object of the new JSON data structure in RDF.
has super-classes
Text Processingc
is also defined as
named individual

Convert RDF to XMLc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ConvertRDFToXML

Converts RDF into XML using the Semantic XML (sxml) ontology for the round-tripping. The resulting XML will be bound to the specified output variable. Note that this requires the RDF model to contain an SXML root document element - this function does not work with arbitrary RDF data! For more, see Help > Import and Export > Creating, Importing, Querying, Saving XML documents with Semantic XML.
has super-classes
XML Processingc
is also defined as
named individual

Convert spreadsheet to RDFc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ConvertSpreadsheetToRDF

Creates an RDF graph from a tab-separated spreadsheet which is specified from a given string variable. In a typical use case, this will be used after sml:ImportTextFile, which binds the variable text which is also the default input variable of this module. For very large files that cannot be loaded into memory, the module provides the option to specify a file directly using sml:sourceFilePath. Note that TopBraid supports multiple spreadsheet importer algorithms, including Semantic Tables and the Excel cell importer (sml:ImportExcelCellInstances). This module provides the functionality that is accessible through the TopBraid Composer Spreadsheet import wizard (Help > Import > Import Tab-Delimited Spreadsheet File).
has super-classes
Text Processingc
is also defined as
named individual

Convert string to SPIN RDFc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ConvertStringToSPINRDF

Converts a SPARQL query (in textual form) to a SPIN RDF syntax resource. The resulting output graph will contain exactly the triples of the SPIN query. These triples can then be used, for example, to analyze the structure of a SPARQL query dynamically. The inverse operation can be achieved using the SPARQL function smf:convertSPINRDFToString.
has super-classes
Text Processingc
is also defined as
named individual

Convert text to RDFc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ConvertTextToRDF

Converts a text in one of the RDF serializations into an RDF graph. In a typical scenario, the text would be passed into the script as external (web service) input. The result of this module are the input RDF triples plus the parsed triples.
has super-classes
Text Processingc
is also defined as
named individual

Convert text to RDFListc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ConvertTextToRDFList

Takes a comma-separated list of URIs as input and creates an rdf:List from it which is then visible to all modules downstream. The rdf:List will be a blank node (or rdf:nil) and the provided output variable will point to it. Note that the RDF output of this module consists of the rdf:List triples only, i.e. the input triples are not passed through. Among others, this module can be used by web services that take lists as input.
has super-classes
Text Processingc
is also defined as
named individual

Convert XML by XSLTc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ConvertXMLByXSLT

Converts an XML document into another XML document using XSLT. The source XML document is either a XML or string variable. The target XML document is a string variable. XSLT script is provided as a string.
has super-classes
XML Processingc
is also defined as
named individual

Convert XML to RDFc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ConvertXMLToRDF

Converts an arbitrary XML input model into an RDF graph using the Semantic XML mapping approach. For more, see Help > Import and Export > Creating, Importing, Querying, Saving XML documents with Semantic XML.
has super-classes
XML Processingc
is also defined as
named individual

Create calendarc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#CreateCalendar

Creates a calendar view showing resources from one or more SPARQL select queries. Currently only supported within TBC.
has super-classes
Export to Variousc
is in domain of
calendarPropertyop
is also defined as
named individual

Create mapc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#CreateMap

Creates a geographical map displaying resources from one or more given SPARQL queries. Resources can be displayed on a map if they have geo:lat/long values as objects. Currently only supported within TBC.
has super-classes
Export to Variousc
is also defined as
named individual

Create matrixc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#CreateMatrix

Creates a matrix (spreadsheet) and binds it as a text value to a given output variable. The rows and columns of the matrix are specified by two SPARQL queries. These queries must deliver variable bindings to enumerate the resources that shall be used as rows and columns. The cell values are then computed using a third query (cellQuery) that should reference the bound variable names from the row and column queries.
has super-classes
Text Processingc
is also defined as
named individual

Create SPIN Result Setc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#CreateSPINResultSet

Converts the result set of a given SPARQL SELECT query (sml:selectQuery) to an SPIN result set (SPR table resource). The resulting resource can then be queried using the SPR functions. The output graph of this module contains only table triples.
has super-classes
RDF Processingc
is also defined as
named individual

Create spreadsheetc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#CreateSpreadsheet

Creates a spreadsheet text from all bindings of a SPARQL SELECT query. The resulting text will be bound to a variable and can then be saved to a file or further processed.
has super-classes
Text Processingc
is also defined as
named individual

Create text from JSPc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#CreateTextFromJSP

Runs a JSP (with embedded SPARQL) template over the input triples and binds the resulting text as a new string variable. For more see Help > Import and Export > Generating XML/HTML documents with Semantic Java Server Pages. Note that UISPIN is often a good alternative to JSPs.
has super-classes
Text Processingc
is also defined as
named individual

Create UISPIN documentc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#CreateUISPINDocument

Evaluates a given UISPIN document (sml:view) and assigns the resulting XML document to a given string variable (sm:outputVariable). The new variable can then be saved to a file or processed otherwise. All incoming variables of this SM module will be bound in the UISPIN expression. Note that in order to insert a UISPIN view for a given resource (using ui:instanceView etc), you can use the snippet <ui:resourceView ui:resource="{= ?varName }" />. Also note that in order to use HTML or SVG tags in the sml:view, you will need to import the html.rdf or svg.rdf from the UISPIN ontologies into the script.
has super-classes
Text Processingc
is also defined as
named individual

Database typec back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#DatabaseType

The class of database configurations used by Jena SDB (and possibly other databases).
is in range of
database typeop
has members
Microsoft SQL Serverni, MySQLni, Oracleni, PostgreSQLni

Diffc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#Diff

Returns a diff graph between an old graph and a new graph. This module is related to the old graph with sml:oldGraph and the new graph with sml:newGraph properties.
has super-classes
RDF Processingc
is also defined as
named individual

Display edit formc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#DisplayEditForm

Displays a form that enables end-users to edit an instance of a given class. The new triples will be added to a run-time RDF graph and can then be queried by the next modules in the script. Note that the output RDF graph may contain other triples (such as imports or form declarations) which should be ignored - the only "save" triples to get are the direct property values of the resource specified by outputVariable. This module is currently supported by TBC and TBE.
has super-classes
RDF Processingc
is also defined as
named individual

Enter literalc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#EnterLiteral

Prompts the user to enter a literal. The resulting value will be bound as literal to the variable specified as sm:outputVariable.
has super-classes
Import from Variousc
is also defined as
named individual

Exportc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ExportModules

Modules that create some output, such as files or UI components.
has super-classes
modules
has sub-classes
Export to Localc, Export to Remotec, Export to Variousc
is also defined as
named individual

Export to Localc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ExportToLocalModules

has super-classes
Exportc
has sub-classes
Export to RDF filec, Export to TDBc, Export to XML filec, Export to text filec
is also defined as
named individual

Export to Oracle RDF databasec back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ExportToOracleRDFDatabase

Connects to an Oracle 11g RDF database and writes the input triples into it. Note: This is a low-level system module. The preferred way of writing to databases is using sml:PerformUpdate.
has super-classes
Export to Remotec
is also defined as
named individual

Export to RDF filec back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ExportToRDFFile

Creates a new RDF file at the specified path inside the workspace and with the specified base URI. The serialization is derived from the file name according to TopBraid's conventions, e.g. files ending with .ttl will be written in Turtle format. Note that if an existing file is overwritten (with matching base URI), and the graph of this file has already been loaded, then the system will not reload the new graph. I.e. if the URI specified in sml:baseURI is the same baseURI of a graph currently open in TBC or TBL, the old graph will remain open and the export will only have an effect after closing the other copies. A consequence of this is that you cannot overwrite a file and reload its new content within the same session, e.g. sml:ImportRDFFromWorkspace will still deliver the old graph. In order to modify an existing graph, the recommended approach is to use sml:PerformUpdate.
has super-classes
Export to Localc
is also defined as
named individual

Export to Remotec back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ExportToRemoteModules

has super-classes
Exportc
has sub-classes
Export to Oracle RDF databasec, Export to SDBc, Export to Sesame remote repositoryc, Post requestc, Return RDFc, Return SPARQL resultsc, Return UISPIN documentc, Return XMLc, Return nodec, Return textc, Send emailsc
is also defined as
named individual

Export to SDBc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ExportToSDB

Writes the input triples to a specified Jena SDB database. Note: This is a low-level system module. The preferred way of writing to databases is using sml:PerformUpdate.
has super-classes
Export to Remotec
is also defined as
named individual

Export to Sesame remote repositoryc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ExportToSesameRemoteRepository

Writes the input triples into a Sesame remote repository. Note: This is a low-level system module. The preferred way of writing to databases is using sml:PerformUpdate.
has super-classes
Export to Remotec
is also defined as
named individual

Export to TDBc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ExportToTDB

Export the input RDF triples to a given Jena TDB database. Note: This is a low-level system module. The preferred way of writing to databases is using sml:PerformUpdate.
has super-classes
Export to Localc
is also defined as
named individual

Export to text filec back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ExportToTextFile

Saves text to a file. The text must be the value of the specified input variable.
has super-classes
Export to Localc
is also defined as
named individual

Export to Variousc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ExportToVariousModules

has super-classes
Exportc
has sub-classes
Commit changesc, Create calendarc, Create mapc
is also defined as
named individual

Export to XML filec back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ExportToXMLFile

Creates an XML file from the value of the input variable.
has super-classes
Export to Localc
is also defined as
named individual

Filter by constructc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#FilterByConstruct

Uses SPARQL CONSTRUCT queries to enumerate triples that shall be dropped from the input triple stream. The output triples of this module contain all input triples except those enumerated by the construct query. For example, if you want to drop all rdfs:comment triples from the input graph, then use a query such as CONSTRUCT {?s rdfs:comment ?o} WHERE {?s rdfs:comment ?o}.
has super-classes
RDF Processingc
is also defined as
named individual

Filter by filter graphc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#FilterByFilterGraph

Filters input graphs with filter graphs. This module is linked to filter graph modules by sml:filterGraph property.
has super-classes
RDF Processingc
is also defined as
named individual

Importc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ImportModules

Modules that import information from some data source. Examples include modules to load files, to get XML from web sources and to take user input.
has super-classes
modules
has sub-classes
Import from Localc, Import from Remotec, Import from Variousc
is also defined as
named individual

Import current RDFc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ImportCurrentRDF

Depending on the context, this module delivers different results. When called from a TBE session, this will return the session's RDF graph. When called from TBC, this will also return the RDF graph of the currently open file. In many use cases this will include the script itself, unless the script is a background service such as an sml:TrackChanges script. When called from a user-defined SPARQLMotion/SPIN Function, this module will return the context graph, which is the graph that the surrounding SPARQL query will currently operate on. When called as a TopBraid Live (stand-alone) web service, this module will throw an exception because there is no current graph available.
has super-classes
Import from Variousc
is also defined as
named individual

Import emailsc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ImportEMails

Imports email messages from an account. This feature is based on the TopBraid email ontology (http://topbraid.org/email). The property sml:emailAccount must point to one email:Address instance. The system will connect to the account and import its emails into OWL instances of the email ontology.
has super-classes
Import from Remotec
is also defined as
named individual

Import Excel cell instancesc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ImportExcelCellInstances

Loads an Excel file into instances of the TopBraid spreadsheets ontology - each non-empty cell becomes an instance of ss:Cell. In a typical scenario, the resulting cell instances are passed into other modules (such as sml:ApplyConstruct) to convert the raw data into a more useful format. This module provides the functionality that is accessible from TBC, as described in Help > Import > Import Excel File into Spreadsheet Ontology. This module is distinct from the Semantic Tables importer, which can be used with sml:ImportRDFFormWorkspace to also import Excel files. The latter is better suited for spreadsheets consisting of regular tables, while this module here is optimized for cases in which the Excel file is not well-structured and each individual cell has a different meaning or role.
has super-classes
Import from Localc
is also defined as
named individual

Import from Localc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ImportFromLocalModules

Modules that import data from a data source on the user's local machine.
has super-classes
Importc
has sub-classes
Import Excel cell instancesc, Import RDF from workspacec, Import TDBc, Import XML filec, Import java objects from EMF filec, Import text filec
is also defined as
named individual

Import from Remotec back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ImportFromRemoteModules

has super-classes
Importc
has sub-classes
Import GRDDLc, Import Oracle RDF databasec, Import RDF from URLc, Import RDFac, Import SDBc, Import Sesame remote repositoryc, Import XHTMLc, Import XML from URLc, Import emailsc, Import news feedc
is also defined as
named individual

Import from Variousc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ImportFromVariousModules

has super-classes
Importc
has sub-classes
Enter literalc, Import current RDFc, Import system triplesc, Select instancec, Select resourcec, Track EMailsc, Track changesc
is also defined as
named individual

Import GRDDLc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ImportGRDDL

Imports RDF triples from a GRDDL-enabled web page.
has super-classes
Import from Remotec
is also defined as
named individual

Import java objects from EMF filec back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ImportJavaObjectsFromEMFFile

Loads an EMF file from the workspace and makes it possible to process the resulting Java objects further down in the script (e.g., with sml:ConvertJavaObjectsToRDF).
has super-classes
Import from Localc
is also defined as
named individual

Import news feedc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ImportNewsFeed

Connects to a newsfeed specified by a URL and returns its content as RDF triples. Supported formats are Atom 0.3, Atom 1.0, RSS 0.91, 0.92, 1.0, 2.0. The url string may contain variable placeholders such as {?keyword} to insert variable bindings.
has super-classes
Import from Remotec
is also defined as
named individual

Import Oracle RDF databasec back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ImportOracleRDFDatabase

Connects to an Oracle 11g RDF database. Note: This is a low-level system module. The preferred way of operating on existing databases is using sml:ImportRDFFromWorkspace.
has super-classes
Import from Remotec
is also defined as
named individual

Import RDF from URLc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ImportRDFFromURL

Gets RDF data from a given URL. The URL may just point to an RDF/XML file on the web, or call a web service with REST-style parameters to receive RDF/XML back. No other format beside RDF/XML is supported by this module - use sml:ImportRDFFromWorkspace instead.
has super-classes
Import from Remotec
is also defined as
named individual

Import RDF from workspacec back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ImportRDFFromWorkspace

Loads an RDF file from the workspace, based on its base URI (or a path to the file). If the file is already open, it will reuse the currently open model (including any changes that it has compared to the persistent version). The system will use which ever physical file has been registered for the given base URI. This is the recommended module to load any file type supported by TopBraid, including file serializations (N3, Turtle, RDF/XML and N-TRIPLE), data connectors, XML files (Semantic XML), Excel 2003 .xls files (Semantic Tables), etc. If the file being opened is a file, the file is loaded into memory. If it is a data connector (RDF or relational back-end), the data source is opened, but no data is loaded into memory.
has super-classes
Import from Localc
is also defined as
named individual

Import RDFac back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ImportRDFa

Imports the RDF triples from a given RDFa page with a given URL. Depending on the file format, other kinds of pre-processing may be needed to tidy up the HTML into proper XHTML. This can be specified with an option. By default, well-formed XHTML is assumed.
has super-classes
Import from Remotec
is also defined as
named individual

Import SDBc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ImportSDB

Connects to an existing Jena SDB database. Note: This is a low-level system module. The preferred way of operating on existing SDBs is using sml:ImportRDFFromWorkspace.
has super-classes
Import from Remotec
is also defined as
named individual

Import Sesame remote repositoryc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ImportSesameRemoteRepository

Connects to a remote Sesame 2 repository. Note: This is a low-level system module. The preferred way of operating on existing databases is using sml:ImportRDFFromWorkspace.
has super-classes
Import from Remotec
is also defined as
named individual

Import system triplesc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ImportSystemTriples

Imports the RDF Schema and OWL system triples, including the definitions of owl:Class, rdf:type, rdfs:label, rdfs:seeAlso etc. An example use case where this is needed is if you want to query for the rdfs:label of any property including system properties. Another use case is if you want to walk the class hierarchy (using rdfs:subClassOf) including metaclasses and other system classes.
has super-classes
Import from Variousc
is also defined as
named individual

Import TDBc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ImportTDB

Opens a Jena TDB database stored in the workspace at a given path. Note: This is a low-level system module. The preferred way of operating on existing TDBs is using sml:ImportRDFFromWorkspace.
has super-classes
Import from Localc
is also defined as
named individual

Import text filec back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ImportTextFile

Imports a text file into the xsd:string variable sm:outputVariable.
has super-classes
Import from Localc
is also defined as
named individual

Import XHTMLc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ImportXHTML

Opens an HTML document from a URI, using Tidy to convert it to XHTML (XML). The url must point to the URL of the file. The URL may contain variables from the input modules. The resulting XML will be assigned to the specified output variable.
has super-classes
Import from Remotec
is also defined as
named individual

Import XML filec back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ImportXMLFile

Loads an XML file, specified by a file path and binds the resulting document as an XML DOM tree to the specified output variable. This module is often the starting point of XML processing steps such as XSLT transformations or XPath queries.
has super-classes
Import from Localc
is also defined as
named individual

Import XML from URLc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ImportXMLFromURL

Gets XML from a given URL and binds the resulting XML document to a specified output variable. Note that this could either be used to load static XML files from the web, or to call web services that return XML.
has super-classes
Import from Remotec
is also defined as
named individual

Iterate over argumentsc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#IterateOverArguments

In scripts that are called as web service, this module can be used to iterate over all arguments of the web service. In each iteration, the body will be executed with two variable bindings: the argument name (?argName) and argument value (?argValue), both as xsd:string literals. The result of the module itself will be the union of the results of all body iterations, comparable to sml:IterateOverSelect. In a typical scenario, the body would consist of sml:ApplyConstruct modules that turn the raw arguments into some more meaningful data structure, that is then further processed by the rest of the script.
has super-classes
Control Flowc
is also defined as
named individual

Iterate over selectc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#IterateOverSelect

Repeats a given sub-script for each matching result set for the SPARQL Select query in the module's selectQuery property. The start of the sub-script is specified by the body property. There can only be one body property that invokes a single sub-script. The sub-script must have one target module -- that is, the sub-script cannot have multiple termination points. The input RDF for each iteration is the same as the input of the iteration module itself. The result variables of the Select query will be bound inside the body in each iteration of the sub-script. Also, if the sml:IterateOverSelect module itself receives input variable bindings, and the value of these variables are changed inside the body sub-script (e.g. using sml:AppendText or sml:BindLiteralVariable), then the end value of each iteration will be used in the sub-script itself, and thus also passed into the next iteration's body. This allows scripts to incrementally modify variables. The property sml:iterationVariable can be used to name a variable that will keep an iteration count. The result of this module are the accumulated triples from the end node of the body sub-script. No internal variable bindings of the body will be used outside of the body, unless they have had values before (see above). In many cases, a better alternative to creating "loops" is to use SPARQL directly, and embed some of the control logic into the WHERE clause, possibly through a CONSTRUCT or UPDATE query.
has super-classes
Control Flowc
is also defined as
named individual

Iterate over SQLc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#IterateOverSQL

Repeats a given sub-script for each matching result set of a given SQL Select query. The system will do a mapping of SQL values to suitable XSD datatypes. The start of the sub-script is specified by the body property, and the input RDF of the body is the same as the input of the iteration module itself. The result variables of the Select query will be bound in each iteration of the loop. The result of this module are the accumulated triples from the end nodes of the body scripts. No internal variable bindings of the body will be used outside of the body.
has super-classes
Control Flowc
is also defined as
named individual

Iterate over XPathc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#IterateOverXPath

Evaluates an XPath on a given XML document (or node) and executes a given body for each binding. The outputVariable will be bound in each iteration of the loop, bound to the XML node. The main use case of this module is in combination with sml:BindByXPath: IterateOverXPath walks through a list of top-level nodes and sml:BindByXPath is then used to extract individual values in each iteration.
has super-classes
XML Processingc
is also defined as
named individual

Iterate whilec back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#IterateWhile

Repeats a sub-script (specified as body) as long as a SPARQL ASK query returns true. The output of each iteration is the input to the next. The output of the whole module is the result of the last iteration. No variable bindings are passed into or out of the body.
has super-classes
Control Flowc
is also defined as
named individual

Jena inferencing modec back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#JenaInferencingMode

The inferencing types supported by Jena.
is equivalent to
{ OWL_DL_MEM , OWL_MEM , OWL_DL_MEM_RULE_INF , RDFS_MEM_TRANS_INF , OWL_MEM_MICRO_RULE_INF , OWL_DL_MEM_RDFS_INF , OWL_MEM_TRANS_INF , OWL_MEM_MINI_RULE_INF , OWL_MEM_RDFS_INF , RDFS_MEM_RDFS_INF , OWL_MEM_RULE_INF , OWL_DL_MEM_TRANS_INF }
has super-classes
resource
has members
OWL_DL_MEMni, OWL_DL_MEM_RDFS_INFni, OWL_DL_MEM_RULE_INFni, OWL_DL_MEM_TRANS_INFni, OWL_MEMni, OWL_MEM_MICRO_RULE_INFni, OWL_MEM_MINI_RULE_INFni, OWL_MEM_RDFS_INFni, OWL_MEM_RULE_INFni, OWL_MEM_TRANS_INFni, RDFS_MEM_RDFS_INFni, RDFS_MEM_TRANS_INFni

Mergec back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#Merge

This module type can be used to merge the variables and RDF triples from multiple input modules. The same is done by any other SPARQLMotion script that has multiple input modules. So while the sml:Merge module basically does not do anything at all, it can be useful to create a clean structure in your script, particularly if you have a case when you want to merge multiple graphs and then have multiple outgoing sm:next links from the merged graph.
has super-classes
Control Flowc
is also defined as
named individual

Modify prefixesc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ModifyPrefixes

Can be used to add or delete namespace prefix declarations from the input RDF stream so that these new prefixes are visible down stream of this module.
has super-classes
RDF Processingc
is also defined as
named individual

Oracle export modec back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#OracleExportMode

The export modes supported by Oracle RDF.
is equivalent to
{ ExportIncremental , ExportBulk , ExportBatch }
has members
ExportBatchni, ExportBulkni, ExportIncrementalni

Perform updatec back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#PerformUpdate

Performs a SPARQL UPDATE call to insert and/or delete triples. This module differs from sml:ApplyConstruct (and other module types) by making persistent changes when the script runs. Therefore this module should be used carefully. The default graph of the WHERE clause is the input graph of the module, i.e. the result of its predecessors. However, these cannot be modified using INSERT or DELETE. Instead, a named graph needs to be provided there, e.g. using MODIFY GRAPH, INSERT INTO or DELETE FROM. In order to manipulate the currently open model in TopBraid, there is a special named graph with the URI <urn:x-tb:session> (formerly called <http://tb-session>). Another special graph is <urn:x-tb:sessionbase> that is mapped to the unbuffered version of the base graph of the current session. In the context of an editing application such as Ensemble, this means that any uncommitted changes are bypassed and instead writes are directly done against the database. SPARQL does not support the use of variables as target graphs, e.g. INSERT INTO ?var is not allowed. In some cases it is necessary to dynamically determine the target graph though. In those cases, the special named graphs <urn:x-var:VARNAME> can be used. VARNAME must be a bound variable pointing to a URI. These URIs must be specific files in the workspace, and it is not valid to redirect to other special URIs such as <urn:x-tb:session>. If this module is used within a TBE script, then the updates to urn:x-tb:session will be applied like other changes by the user, i.e. they are added to the change history without committing them. Changes are committed when the user selects "Save Data". All other named graphs will be committed immediately to the underlying data store.
has super-classes
RDF Processingc
is also defined as
named individual

Post requestc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#PostRequest

Sends a POST request to a web server and binds the result stream with the outputVariable. By default, the request will not include any variable bindings. In order to pass in any other parameters, you need to subclass the sml:PostRequest class and declare the additional arguments as spin:constraints. The system will then iterate over all arguments (other than url and outputVariable) that are declared for this type.
has super-classes
Export to Remotec
is also defined as
named individual

Processingc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ProcessingModules

Modules that process data, e.g. to transform, filter and map it.
has super-classes
modules
has sub-classes
Control Flowc, RDF Processingc, Text Processingc, XML Processingc
is also defined as
named individual

RDF Processingc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#RDFProcessingModules

has super-classes
Processingc
has sub-classes
Apply Constructc, Apply Jena inferencingc, Apply Jena rulesc, Apply OWLIMc, Apply Pelletc, Apply TopSPINc, Check constraintsc, Check spellingc, Convert Java objects to RDFc, Convert datatypec, Create SPIN Result Setc, Diffc, Display edit formc, Filter by constructc, Filter by filter graphc, Modify prefixesc, Perform updatec, Update user word dictionaryc
is also defined as
named individual

Release lockc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ReleaseLock

Releases any exclusive system lock previously received using sml:RequestLock.
has super-classes
Control Flowc
is also defined as
named individual

Request lockc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#RequestLock

Requests a lock to get exclusive access to the TopBraid platform. This will make sure that no other thread is executing, so that the following modules in the script can proceed without risking interrupts or concurrent modification exceptions. When reached, the module will wait until all other threads have finished, then continue execution. The lock will be released if the script terminates or sml:ReleaseLock is reached. Please use this module with care and release the lock as quickly as possible to avoid contention issues. Other concurrent requests may need to wait until the script has been finished.
has super-classes
Control Flowc
is also defined as
named individual

Return nodec back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ReturnNode

Returns an RDF node as a result of a script. This module is typically used as exit point of a user-defined SPIN function and web service. The sm:returnModule of the function will point to this.
has super-classes
Export to Remotec
is also defined as
named individual

Return RDFc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ReturnRDF

Represents the exit point of a function that returns RDF. The function can be referenced from the outside (e.g., as a web service) by its URI or local name. The RDF triples will be serialized into either RDF/XML or JSON.
has super-classes
Export to Remotec
is also defined as
named individual

Return SPARQL resultsc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ReturnSPARQLResults

Runs a SPARQL Select query and returns its result in the standard SPARQL output format.
has super-classes
Export to Remotec
is also defined as
named individual

Return textc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ReturnText

Represents the exit point of a function that returns text (mimetype: text). The function can be referenced from the outside (e.g., as a web service) by its URI or local name. When called from TBE, the resulting text will be displayed to the user in a pop-up dialog.
has super-classes
Export to Remotec
is also defined as
named individual

Return UISPIN documentc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ReturnUISPINDocument

Creates a UISPIN document using the current variable bindings and returns the resulting document as XHTML or SVG to the caller of the web service. Note that in order to insert a UISPIN view for a given resource (using ui:instanceView etc), you can use the snippet <ui:resourceView ui:resource="{= ?varName }" />. Also note that in order to use HTML or SVG tags in the sml:view, you will need to import the html.rdf or svg.rdf from the UISPIN ontologies into the script.
has super-classes
Export to Remotec
is also defined as
named individual

Return XMLc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#ReturnXML

Represents the exit point of a function that returns XML. The function can be referenced from the outside (e.g., as a web service) by its URI or local name.
has super-classes
Export to Remotec
is also defined as
named individual

Select instancec back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#SelectInstance

Prompts the user to select an instance by class, and binds the selected resource into the specified output variable. If not selectInstanceClass is specified, then the selection would start at the root class.
has super-classes
Import from Variousc
is in domain of
selectInstanceClassop
is also defined as
named individual

Select resourcec back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#SelectResource

Prompts the user to select one resource out of a list of resources delivered from a SPARQL query. The selected resource will be bound to the specified variable. Any RDF triples that come in as input are forwarded as output. This module is currently not supported by TopBraid Ensemble.
has super-classes
Import from Variousc
is also defined as
named individual

Selected resource argumentc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#SelectedResourceArgument

A system argument representing the "selected" resource. This can be used to implement services that operate on the currently selected resource in TopBraid Composer or Ensemble. The value of this argument will be set automatically by the engine in TBC. In TBE the selected resource's URI needs to be passed in. Note: this replaces sml:BindWithSelectedResource from older TBC versions.
has super-classes
argumentc
is also defined as
named individual

Send emailsc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#SendEMails

Sends one or more emails. In a typical scenario, previous steps such as sml:ApplyConstruct have created instances of email:Message. The body of the emails could be created using sml:CreateTextFromJSP. A SPARQL Select query is then used to select those messages that shall be sent out, based on the given server parameters.
has super-classes
Export to Remotec
is also defined as
named individual

Serializationc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#RDFSerialization

The various serialization formats of RDF/OWL files, including RDF/XML and N3.
has super-classes
value type
is in range of
serializationop
has members
N3ni, NTripleni, RDF/XML-ABBREVni, Turtleni

Serialize SPARQLResultsc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#SerializeSPARQLResults

Executes a SPARQL SELECT query and serializes its result to either XML or JSON format.
has super-classes
Text Processingc
is also defined as
named individual

Text Processingc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#TextProcessingModules

has super-classes
Processingc
has sub-classes
Append textc, Call Calaisc, Concatenate textc, Convert JSON to RDFc, Convert spreadsheet to RDFc, Convert string to SPIN RDFc, Convert text to RDFc, Convert text to RDFListc, Create UISPIN documentc, Create matrixc, Create spreadsheetc, Create text from JSPc, Serialize SPARQLResultsc
is also defined as
named individual

Track changesc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#TrackChanges

Can be used to implement services that shall be executed as a side effect of a change to an RDF model. In TopBraid, any script containing an instance of this class will be executed as part of each change. The output of this module is using the http://topbraid.org/change ontology, with triples describing the changes that have happened.
has super-classes
Import from Variousc
is also defined as
named individual

Track EMailsc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#TrackEMails

Serves as an entry point for scripts that are triggered by incoming emails. If a new message has been detected for the provided account, then this module will produce triple representing the new message as an anonymous instance of the email:Message class.
has super-classes
Import from Variousc
is also defined as
named individual

Update user word dictionaryc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#UpdateUserWordDictionary

SM Module for adding and removing words from the dictionary of user specified words. Words in the dictionary of user specified words are ignored by the CheckSpelling module.
has super-classes
RDF Processingc
is also defined as
named individual

XML Processingc back to ToC or Class ToC

IRI: http://topbraid.org/sparqlmotionlib#XMLProcessingModules

has super-classes
Processingc
has sub-classes
Bind by XPathc, Convert RDF to XMLc, Convert XML by XSLTc, Convert XML to RDFc, Iterate over XPathc
is also defined as
named individual

Object Properties

askQueryop back to ToC or Object Property ToC

IRI: http://topbraid.org/sparqlmotionlib#askQuery

has range
askc
is also defined as
annotation property

calendarPropertyop back to ToC or Object Property ToC

IRI: http://topbraid.org/sparqlmotionlib#calendarProperty

The properties that shall be shown in the calendar.
has domain
Create calendarc
has range
propertyc

cellQueryop back to ToC or Object Property ToC

IRI: http://topbraid.org/sparqlmotionlib#cellQuery

has range
selectc
is also defined as
annotation property

classop back to ToC or Object Property ToC

IRI: http://topbraid.org/sparqlmotionlib#class

has range
classc

columnQueryop back to ToC or Object Property ToC

IRI: http://topbraid.org/sparqlmotionlib#columnQuery

has range
selectc
is also defined as
annotation property

constructQueryop back to ToC or Object Property ToC

IRI: http://topbraid.org/sparqlmotionlib#constructQuery

has range
constructc
is also defined as
annotation property

database typeop back to ToC or Object Property ToC

IRI: http://topbraid.org/sparqlmotionlib#databaseType

has range
Database typec

datatypeop back to ToC or Object Property ToC

IRI: http://topbraid.org/sparqlmotionlib#datatype

has range
datatypec

emailAccountop back to ToC or Object Property ToC

IRI: http://topbraid.org/sparqlmotionlib#emailAccount

has range
address

filterGraphop back to ToC or Object Property ToC

IRI: http://topbraid.org/sparqlmotionlib#filterGraph

Links a filter module with a predecessor module to mark the predecessor module graph to be used for filtering in the filter module.
has range
modules

new graphop back to ToC or Object Property ToC

IRI: http://topbraid.org/sparqlmotionlib#newGraph

has range
modules

old graphop back to ToC or Object Property ToC

IRI: http://topbraid.org/sparqlmotionlib#oldGraph

has range
modules

predicateop back to ToC or Object Property ToC

IRI: http://topbraid.org/sparqlmotionlib#predicate

has range
propertyc

rowQueryop back to ToC or Object Property ToC

IRI: http://topbraid.org/sparqlmotionlib#rowQuery

has range
selectc
is also defined as
annotation property

select queryop back to ToC or Object Property ToC

IRI: http://topbraid.org/sparqlmotionlib#selectQuery

has range
selectc
is also defined as
annotation property

selectInstanceClassop back to ToC or Object Property ToC

IRI: http://topbraid.org/sparqlmotionlib#selectInstanceClass

has domain
Select instancec
has range
classc

serializationop back to ToC or Object Property ToC

IRI: http://topbraid.org/sparqlmotionlib#serialization

has range
Serializationc

smtpServerop back to ToC or Object Property ToC

IRI: http://topbraid.org/sparqlmotionlib#smtpServer

has range
server

update queryop back to ToC or Object Property ToC

IRI: http://topbraid.org/sparqlmotionlib#updateQuery

A SPARQL UPDATE query (can be used to insert or delete triples from a graph).
has range
updatec

Data Properties

addedPrefixdp back to ToC or Data Property ToC

IRI: http://topbraid.org/sparqlmotionlib#addedPrefix

has range
string

baseURIdp back to ToC or Data Property ToC

IRI: http://topbraid.org/sparqlmotionlib#baseURI

The base URI of an RDF model.
has range
string

bind variablesdp back to ToC or Data Property ToC

IRI: http://topbraid.org/sparqlmotionlib#bindVariables

has range
boolean

button labeldp back to ToC or Data Property ToC

IRI: http://topbraid.org/sparqlmotionlib#buttonLabel

has range
string

cacheddp back to ToC or Data Property ToC

IRI: http://topbraid.org/sparqlmotionlib#cached

has range
boolean

classNamedp back to ToC or Data Property ToC

IRI: http://topbraid.org/sparqlmotionlib#className

has range
string

deletedPrefixdp back to ToC or Data Property ToC

IRI: http://topbraid.org/sparqlmotionlib#deletedPrefix

has range
string

encodingdp back to ToC or Data Property ToC

IRI: http://topbraid.org/sparqlmotionlib#encoding

has range
string

graph namedp back to ToC or Data Property ToC

IRI: http://topbraid.org/sparqlmotionlib#graphName

has range
string

hiddendp back to ToC or Data Property ToC

IRI: http://topbraid.org/sparqlmotionlib#hidden

has range
boolean

ignore importsdp back to ToC or Data Property ToC

IRI: http://topbraid.org/sparqlmotionlib#ignoreImports

has range
boolean

import to input graphdp back to ToC or Data Property ToC

IRI: http://topbraid.org/sparqlmotionlib#importToInputGraph

has range
boolean

input variabledp back to ToC or Data Property ToC

IRI: http://topbraid.org/sparqlmotionlib#inputVariable

has range
string

instancePatterndp back to ToC or Data Property ToC

IRI: http://topbraid.org/sparqlmotionlib#instancePattern

has range
string

iteration variabledp back to ToC or Data Property ToC

IRI: http://topbraid.org/sparqlmotionlib#iterationVariable

The name of a variable that shall contain the iteration index in a loop, starting at zero.
has range
string

loadBodiesdp back to ToC or Data Property ToC

IRI: http://topbraid.org/sparqlmotionlib#loadBodies

has range
boolean

mimeTypedp back to ToC or Data Property ToC

IRI: http://topbraid.org/sparqlmotionlib#mimeType

(Reserved for future use.)
has range
string

modelNamedp back to ToC or Data Property ToC

IRI: http://topbraid.org/sparqlmotionlib#modelName

has range
string

on commitdp back to ToC or Data Property ToC

IRI: http://topbraid.org/sparqlmotionlib#onCommit

has range
boolean

passworddp back to ToC or Data Property ToC

IRI: http://topbraid.org/sparqlmotionlib#password

has range
string

pathdp back to ToC or Data Property ToC

IRI: http://topbraid.org/sparqlmotionlib#path

Can be used to represent path expressions such as /INBOX/TBC-MailingList
has range
string

propertyPrefixdp back to ToC or Data Property ToC

IRI: http://topbraid.org/sparqlmotionlib#propertyPrefix

has range
string

replacedp back to ToC or Data Property ToC

IRI: http://topbraid.org/sparqlmotionlib#replace

Specifies whether a module shall overwrite all triples from its predecessors. If set to true (default is false), then the triples from the predecessors shall not be passed through.
has range
boolean

ruleBaseNamedp back to ToC or Data Property ToC

IRI: http://topbraid.org/sparqlmotionlib#ruleBaseName

has range
string

schemaNamespacedp back to ToC or Data Property ToC

IRI: http://topbraid.org/sparqlmotionlib#schemaNamespace

has range
string

separatordp back to ToC or Data Property ToC

IRI: http://topbraid.org/sparqlmotionlib#separator

has range
string

single passdp back to ToC or Data Property ToC

IRI: http://topbraid.org/sparqlmotionlib#singlePass

has range
boolean

sourceFilePathdp back to ToC or Data Property ToC

IRI: http://topbraid.org/sparqlmotionlib#sourceFilePath

The path to a file relative in the execution context (workspace). Values can be relative to the currently executing script (e.g., subFolder/file.txt) or absolute to the workspace root (starting with /).
has range
string

targetFilePathdp back to ToC or Data Property ToC

IRI: http://topbraid.org/sparqlmotionlib#targetFilePath

has range
string

templatedp back to ToC or Data Property ToC

IRI: http://topbraid.org/sparqlmotionlib#template

has range
string

textdp back to ToC or Data Property ToC

IRI: http://topbraid.org/sparqlmotionlib#text

has range
string

titledp back to ToC or Data Property ToC

IRI: http://topbraid.org/sparqlmotionlib#title

has range
string

uridp back to ToC or Data Property ToC

IRI: http://topbraid.org/sparqlmotionlib#uri

has range
string

urldp back to ToC or Data Property ToC

IRI: http://topbraid.org/sparqlmotionlib#url

has range
string

userNamedp back to ToC or Data Property ToC

IRI: http://topbraid.org/sparqlmotionlib#userName

has range
string

useUnderscoredp back to ToC or Data Property ToC

IRI: http://topbraid.org/sparqlmotionlib#useUnderscore

has range
boolean

useVerbatimdp back to ToC or Data Property ToC

IRI: http://topbraid.org/sparqlmotionlib#useVerbatim

has range
boolean

variabledp back to ToC or Data Property ToC

IRI: http://topbraid.org/sparqlmotionlib#variable

has range
string

xmldp back to ToC or Data Property ToC

IRI: http://topbraid.org/sparqlmotionlib#xml

has range
x m l literal

xmlTypedp back to ToC or Data Property ToC

IRI: http://topbraid.org/sparqlmotionlib#xmlType

has range
{ "XHTML" }

xpathdp back to ToC or Data Property ToC

IRI: http://topbraid.org/sparqlmotionlib#xpath

An XPath expression.
has range
string

Named Individuals

Append textni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#AppendText

belongs to
module
is also defined as
class

Apply Constructni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ApplyConstruct

belongs to
module
is also defined as
class

Apply Jena inferencingni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ApplyJenaInferencing

belongs to
module
is also defined as
class

Apply Jena rulesni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ApplyJenaRules

belongs to
module
is also defined as
class

Apply OWLIMni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ApplyOWLIM

belongs to
module
is also defined as
class

Apply Pelletni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ApplyPellet

belongs to
module
is also defined as
class

Apply TopSPINni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ApplyTopSPIN

belongs to
module
is also defined as
class

Assert trueni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#AssertTrue

belongs to
module
is also defined as
class

Bind by selectni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#BindBySelect

belongs to
module
is also defined as
class

Bind by XPathni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#BindByXPath

belongs to
module
is also defined as
class

Bind literal variableni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#BindLiteralVariable

belongs to
module
is also defined as
class

Bind with constantni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#BindWithConstant

belongs to
module
is also defined as
class

Bind with parameterni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#BindWithParameter

belongs to
module
is also defined as
class

Bind with selected resourceni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#BindWithSelectedResource

belongs to
module
is also defined as
class

Branch by askni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#BranchByAsk

belongs to
module
is also defined as
class

Call Calaisni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#CallCalais

belongs to
module
is also defined as
class

Catch exceptionsni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#CatchExceptions

belongs to
module
is also defined as
class

Check constraintsni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#CheckConstraints

belongs to
module
is also defined as
class

Check spellingni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#CheckSpelling

belongs to
module
is also defined as
class

Clone variableni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#CloneVariable

belongs to
module
is also defined as
class

Collect garbageni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#CollectGarbage

belongs to
module
is also defined as
class

Commit changesni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#CommitChanges

belongs to
module
is also defined as
class

Concatenate textni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ConcatenateText

belongs to
module
is also defined as
class

Control Flowni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ControlFlowModules

belongs to
module
is also defined as
class

Convert datatypeni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ConvertDatatype

belongs to
module
is also defined as
class

Convert Java objects to RDFni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ConvertJavaObjectsToRDF

belongs to
module
is also defined as
class

Convert JSON to RDFni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ConvertJSONToRDF

belongs to
module
is also defined as
class

Convert RDF to XMLni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ConvertRDFToXML

belongs to
module
is also defined as
class

Convert spreadsheet to RDFni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ConvertSpreadsheetToRDF

belongs to
module
is also defined as
class

Convert string to SPIN RDFni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ConvertStringToSPINRDF

belongs to
module
is also defined as
class

Convert text to RDFni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ConvertTextToRDF

belongs to
module
is also defined as
class

Convert text to RDFListni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ConvertTextToRDFList

belongs to
module
is also defined as
class

Convert XML by XSLTni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ConvertXMLByXSLT

belongs to
module
is also defined as
class

Convert XML to RDFni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ConvertXMLToRDF

belongs to
module
is also defined as
class

Create calendarni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#CreateCalendar

belongs to
module
is also defined as
class

Create mapni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#CreateMap

belongs to
module
is also defined as
class

Create matrixni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#CreateMatrix

belongs to
module
is also defined as
class

Create SPIN Result Setni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#CreateSPINResultSet

belongs to
module
is also defined as
class

Create spreadsheetni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#CreateSpreadsheet

belongs to
module
is also defined as
class

Create text from JSPni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#CreateTextFromJSP

belongs to
module
is also defined as
class

Create UISPIN documentni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#CreateUISPINDocument

belongs to
module
is also defined as
class

Diffni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#Diff

belongs to
module
is also defined as
class

Display edit formni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#DisplayEditForm

belongs to
module
is also defined as
class

Enter literalni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#EnterLiteral

belongs to
module
is also defined as
class

Exportni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ExportModules

belongs to
module
is also defined as
class

Export to Localni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ExportToLocalModules

belongs to
module
is also defined as
class

Export to Oracle RDF databaseni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ExportToOracleRDFDatabase

belongs to
module
is also defined as
class

Export to RDF fileni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ExportToRDFFile

belongs to
module
is also defined as
class

Export to Remoteni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ExportToRemoteModules

belongs to
module
is also defined as
class

Export to SDBni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ExportToSDB

belongs to
module
is also defined as
class

Export to Sesame remote repositoryni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ExportToSesameRemoteRepository

belongs to
module
is also defined as
class

Export to TDBni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ExportToTDB

belongs to
module
is also defined as
class

Export to text fileni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ExportToTextFile

belongs to
module
is also defined as
class

Export to Variousni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ExportToVariousModules

belongs to
module
is also defined as
class

Export to XML fileni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ExportToXMLFile

belongs to
module
is also defined as
class

ExportBatchni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ExportBatch

belongs to
Oracle export modec

ExportBulkni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ExportBulk

belongs to
Oracle export modec

ExportIncrementalni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ExportIncremental

belongs to
Oracle export modec

Filter by constructni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#FilterByConstruct

belongs to
module
is also defined as
class

Filter by filter graphni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#FilterByFilterGraph

belongs to
module
is also defined as
class

Importni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ImportModules

belongs to
module
is also defined as
class

Import current RDFni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ImportCurrentRDF

belongs to
module
is also defined as
class

Import emailsni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ImportEMails

belongs to
module
is also defined as
class

Import Excel cell instancesni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ImportExcelCellInstances

belongs to
module
is also defined as
class

Import from Localni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ImportFromLocalModules

belongs to
module
is also defined as
class

Import from Remoteni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ImportFromRemoteModules

belongs to
module
is also defined as
class

Import from Variousni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ImportFromVariousModules

belongs to
module
is also defined as
class

Import GRDDLni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ImportGRDDL

belongs to
module
is also defined as
class

Import java objects from EMF fileni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ImportJavaObjectsFromEMFFile

belongs to
module
is also defined as
class

Import news feedni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ImportNewsFeed

belongs to
module
is also defined as
class

Import Oracle RDF databaseni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ImportOracleRDFDatabase

belongs to
module
is also defined as
class

Import RDF from URLni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ImportRDFFromURL

belongs to
module
is also defined as
class

Import RDF from workspaceni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ImportRDFFromWorkspace

belongs to
module
is also defined as
class

Import RDFani back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ImportRDFa

belongs to
module
is also defined as
class

Import SDBni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ImportSDB

belongs to
module
is also defined as
class

Import Sesame remote repositoryni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ImportSesameRemoteRepository

belongs to
module
is also defined as
class

Import system triplesni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ImportSystemTriples

belongs to
module
is also defined as
class

Import TDBni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ImportTDB

belongs to
module
is also defined as
class

Import text fileni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ImportTextFile

belongs to
module
is also defined as
class

Import XHTMLni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ImportXHTML

belongs to
module
is also defined as
class

Import XML fileni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ImportXMLFile

belongs to
module
is also defined as
class

Import XML from URLni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ImportXMLFromURL

belongs to
module
is also defined as
class

Iterate over argumentsni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#IterateOverArguments

belongs to
module
is also defined as
class

Iterate over selectni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#IterateOverSelect

belongs to
module
is also defined as
class

Iterate over SQLni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#IterateOverSQL

belongs to
module
is also defined as
class

Iterate over XPathni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#IterateOverXPath

belongs to
module
is also defined as
class

Iterate whileni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#IterateWhile

belongs to
module
is also defined as
class

Mergeni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#Merge

belongs to
module
is also defined as
class

Microsoft SQL Serverni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#SQLServer

belongs to
Database typec

Modify prefixesni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ModifyPrefixes

belongs to
module
is also defined as
class

MySQLni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#MySQL

belongs to
Database typec

N3ni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#N3

belongs to
Serializationc

NTripleni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#NTriple

belongs to
Serializationc

Oracleni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#Oracle

belongs to
Database typec

OWL_DL_MEMni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#OWL_DL_MEM

belongs to
Jena inferencing modec

OWL_DL_MEM_RDFS_INFni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#OWL_DL_MEM_RDFS_INF

belongs to
Jena inferencing modec

OWL_DL_MEM_RULE_INFni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#OWL_DL_MEM_RULE_INF

belongs to
Jena inferencing modec

OWL_DL_MEM_TRANS_INFni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#OWL_DL_MEM_TRANS_INF

belongs to
Jena inferencing modec

OWL_MEMni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#OWL_MEM

belongs to
Jena inferencing modec

OWL_MEM_MICRO_RULE_INFni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#OWL_MEM_MICRO_RULE_INF

belongs to
Jena inferencing modec

OWL_MEM_MINI_RULE_INFni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#OWL_MEM_MINI_RULE_INF

belongs to
Jena inferencing modec

OWL_MEM_RDFS_INFni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#OWL_MEM_RDFS_INF

belongs to
Jena inferencing modec

OWL_MEM_RULE_INFni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#OWL_MEM_RULE_INF

belongs to
Jena inferencing modec

OWL_MEM_TRANS_INFni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#OWL_MEM_TRANS_INF

belongs to
Jena inferencing modec

Perform updateni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#PerformUpdate

belongs to
module
is also defined as
class

Post requestni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#PostRequest

belongs to
module
is also defined as
class

PostgreSQLni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#PostgreSQL

belongs to
Database typec

Processingni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ProcessingModules

belongs to
module
is also defined as
class

RDF Processingni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#RDFProcessingModules

belongs to
module
is also defined as
class

RDF/XML-ABBREVni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#RDFXML

belongs to
Serializationc

RDFS_MEM_RDFS_INFni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#RDFS_MEM_RDFS_INF

belongs to
Jena inferencing modec

RDFS_MEM_TRANS_INFni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#RDFS_MEM_TRANS_INF

belongs to
Jena inferencing modec

Release lockni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ReleaseLock

belongs to
module
is also defined as
class

Request lockni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#RequestLock

belongs to
module
is also defined as
class

Return nodeni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ReturnNode

belongs to
module
is also defined as
class

Return RDFni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ReturnRDF

belongs to
module
is also defined as
class

Return SPARQL resultsni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ReturnSPARQLResults

belongs to
module
is also defined as
class

Return textni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ReturnText

belongs to
module
is also defined as
class

Return UISPIN documentni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ReturnUISPINDocument

belongs to
module
is also defined as
class

Return XMLni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#ReturnXML

belongs to
module
is also defined as
class

Select instanceni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#SelectInstance

belongs to
module
is also defined as
class

Select resourceni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#SelectResource

belongs to
module
is also defined as
class

Selected resource argumentni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#SelectedResourceArgument

belongs to
templatec
is also defined as
class

Send emailsni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#SendEMails

belongs to
module
is also defined as
class

Serialize SPARQLResultsni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#SerializeSPARQLResults

belongs to
module
is also defined as
class

Text Processingni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#TextProcessingModules

belongs to
module
is also defined as
class

Track changesni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#TrackChanges

belongs to
module
is also defined as
class

Track EMailsni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#TrackEMails

belongs to
module
is also defined as
class

Turtleni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#Turtle

belongs to
Serializationc

Update user word dictionaryni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#UpdateUserWordDictionary

belongs to
module
is also defined as
class

XML Processingni back to ToC or Named Individual ToC

IRI: http://topbraid.org/sparqlmotionlib#XMLProcessingModules

belongs to
module
is also defined as
class

Annotation Properties

askQueryap back to ToC or Annotation Property ToC

IRI: http://topbraid.org/sparqlmotionlib#askQuery

has super-properties
queryap
is also defined as
object property

cellQueryap back to ToC or Annotation Property ToC

IRI: http://topbraid.org/sparqlmotionlib#cellQuery

has super-properties
queryap
is also defined as
object property

columnQueryap back to ToC or Annotation Property ToC

IRI: http://topbraid.org/sparqlmotionlib#columnQuery

has super-properties
queryap
is also defined as
object property

constructQueryap back to ToC or Annotation Property ToC

IRI: http://topbraid.org/sparqlmotionlib#constructQuery

has super-properties
queryap
is also defined as
object property

default valueap back to ToC or Annotation Property ToC

IRI: http://spinrdf.org/spl#defaultValue

label templateap back to ToC or Annotation Property ToC

IRI: http://spinrdf.org/spin#labelTemplate

queryap back to ToC or Annotation Property ToC

IRI: http://spinrdf.org/spin#query

rowQueryap back to ToC or Annotation Property ToC

IRI: http://topbraid.org/sparqlmotionlib#rowQuery

has super-properties
queryap
is also defined as
object property

select queryap back to ToC or Annotation Property ToC

IRI: http://topbraid.org/sparqlmotionlib#selectQuery

has super-properties
queryap
is also defined as
object property

Namespace Declarations back to ToC

default namespace
http://topbraid.org/sparqlmotionlib#
11
http://composing-the-semantic-web.blogspot.com/2007/11/
composite
http://www.topbraid.org/2007/05/composite.owl#
email
http://topbraid.org/email#
owl
http://www.w3.org/2002/07/owl#
rdf
http://www.w3.org/1999/02/22-rdf-syntax-ns#
rdfs
http://www.w3.org/2000/01/rdf-schema#
sp
http://spinrdf.org/sp#
sparqlmotion
http://topbraid.org/sparqlmotion#
sparqlmotionfunctions
http://topbraid.org/sparqlmotionfunctions#
sparqlmotionlib
http://topbraid.org/sparqlmotionlib#
spin
http://spinrdf.org/spin#
spinrdf-org
http://spinrdf.org/
spl
http://spinrdf.org/spl#
topbraid-org
http://topbraid.org/
ui
http://uispin.org/ui#
uispin-org
http://uispin.org/
xsd
http://www.w3.org/2001/XMLSchema#

This HTML document was obtained by processing the OWL ontology source code through LODE, Live OWL Documentation Environment, developed by Silvio Peroni.