List entailments

get

/database/rdf/networks/{network_owner},{network_name}/entailments/

Returns metadata describing all entailments in the network. The exact attributes returned may vary depending on the Database version. A client requires SQL Developer, RDF Developer or RDF Reader role to invoke this servce.

Request

Path Parameters
Query Parameters

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Returns an array of elements containing metadata about all entailments in the specified network.
Body ()
Root Schema : EntailmentDetailCollection
Type: object
A collection of RDF entailment metadata items.
Show Source
Nested Schema : items
Type: array
Show Source
Nested Schema : EntailmentDetailSingle
Type: object
This object represents metadata about an RDF entailment.
Show Source
  • a comma-delimited list of the names of models and rulebases used to build the entailment
    Example: MODEL M1, RULEBASE OWLPRIME
  • the name of the entailment
    Example: M1OWL
  • the name of the database view that contains the entailed triples
    Example: NET1#RDFI_M1OWL
  • links
  • the number of models used to build the entailment
    Example: 1
  • the owner of the entailment
    Example: RDFUSER
  • the number of rulebases used to build the entailment
    Example: 1
  • the status of the entailment (VALID if the entailment is valid, INVALID if the entailment is not valid, INCOMPLETE if the entailment is incomplete - similar to INVALID but requiring less time to re-create, INPROGRESS if the entailment is being created, or FAILED if a system failure occurred during the creation of the entailment)
    Example: VALID
Nested Schema : LinkRelation
Type: object
Show Source

404 Response

RDF network does not exist
Back to Top