List virtual models

get

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

Returns metadata describing all virtual models 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 virtual models in the specified network.
Body ()
Root Schema : VirtualModelDetailCollection
Type: object
A collection of RDF virtual model metadata items.
Show Source
Nested Schema : items
Type: array
Show Source
Nested Schema : VirtualModelDetailSingle
Type: object
Metadata for a single virtual model.
Show Source
  • a comma-delimited list of the names of models, rulebases and entailments used to build the virtual model
    Example: MODEL M1, RULEBASE OWLPRIME, RULEIDX M1OWL
  • name of the view that contains duplicate triples (if any) in the virtual model
    Example: NET1#SEMV_VM1
  • links
  • number of models contained in the virtual model
    Example: 1
  • owner of the virtual model
    Example: RDUSER
  • number of rulebases contained in the virtual model
    Example: 1
  • number of entailments contained in the virtual model
    Example: 1
  • contains VALID if the associated 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, FAILED if a system failure occurred during the creation of the entailment, or NORIDX if no entailment is associated with the virtual model. In the case of multiple entailments, the lowest status among all of the component entailments is used as the virtual model's status (INVALID < INCOMPLETE < VALID).
    Example: VALID
  • name of the view that contains unique triples in the virtual model, or null if the view was not created
    Example: NET1#SEMU_VM1
  • name of the virtual model
    Example: VM1
Nested Schema : LinkRelation
Type: object
Show Source

404 Response

RDF network does not exist
Back to Top