List RDF models

get

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

Returns metadata describing all RDF 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 models in the specified network.
Body ()
Root Schema : ModelDetailCollection
Type: object
A collection of RDF model metadata items.
Show Source
Nested Schema : items
Type: array
Show Source
Nested Schema : ModelDetailSingle
Type: object
Metadata for a single RDF model.
Show Source
  • the name of the SDO_RDF_TRIPLE_S column in the application table associated with the model (null for schema-private networks)
    Example: oracle.doceng.json.BetterJsonNull@5ad1904f
  • indicates if the model is an in-memory virtual model (T for in-memory, or F for not in-memory)
    Example: F
  • links
  • the ID of the model
    Example: 1
  • the name of the model
    Example: M1
  • the tablespace used to store model data
    Example: DATA
  • the type of model (M for regular model; V for virtual model; X for model created to store the contents of the semantic index; or D for model created on relational data)
    Example: M
  • the owner of the model
    Example: M1
  • the name of the application table associated with the model (null for schema-private networks)
    Example: oracle.doceng.json.BetterJsonNull@3b83459e
Nested Schema : LinkRelation
Type: object
Show Source

404 Response

RDF network does not exist
Back to Top