Reasoning Service /owlmini/enrich
Service: org.apache.stanbol.reasoners.jena.JenaOWLMiniReasoningService
Name: owlmini
Task: enrich
Run as foreground job
Run as background job
Enrich
Endpoint: @/reasoners/owlmini/enrich
Request | GET or POST:- /reasoners/owlmini/enrich: run as foreground job;
- /reasoners/owlmini/enrich/job: run as background job
|
---|
Description | This task materializes all inferences. |
Parameters |
- url: a URL pointing to a resource in RDF; the service loads the input from the given url;
- file: an RDF file sent from the client; the service loads the file (only using method POST with Content-type: multipart/form+data)
- target: a graph name; if given, the service saves the result in the triple store.
- scope: an Ontonet scope ID; the service adds the scope to the input stream.
- recipe: a Recipe defined in the Rules module; the service adds the recipe to the reasoner.
- session: an Ontonet session ID; the service adds the session to the input stream
|
Produces |
If run as background job ({service}/job), returns 201 Created, with the header Location: {job-monitoring-url}.
The result comes as 200 Ok, if no errors occurred, or 409 Conflict, if the input is not consistent.
According to the requested media type, the result can be of type:
application/rdf+xml;
text/turtle;
text/n3;
text/html
|
Examples:
$ curl "http://demo2.fogbeam.org:8080/reasoners/owlmini/enrich?url=http://xmlns.com/foaf/0.1/"
or
curl -X POST -H "Content-type: multipart/form-data" -H "Accept: text/turtle" -F file=@foaf.rdf "http://demo2.fogbeam.org:8080/reasoners/owlmini/enrich"