<#-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <#macro view name path description>
${name}

Endpoint: @/${path}

RequestGET or POST:
  • /${path}: run as foreground job;
  • /${path}/job: run as background job
Description${description}
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)
  • <#if name != "Check">
  • 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}.
<#if name != "Check"> 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 <#else>
  • 200 Ok: the input is consistent; or
  • 409 Conflict: the input is not consistent.

Examples:

$ curl "${it.publicBaseUri}${path}?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 "${it.publicBaseUri}${path}"

<#macro li name path description>
  • ${name}: @/${path}: ${description}