List GeoRaster Tables

get

{server}/georaster/v1/{datasource}/

List the tables with GeoRaster columns.

Request

Query Parameters
  • Limit the items included in the response, use in conjuntion with offset parameter.
    Examples

  • The amount of items from the beggining of the collection not to be included in the response.
    Examples

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Return a list of GeoRaster tables with the Georaster column names.
Body ()
Root Schema : georasterTableListResponse
Type: object
Show Source
Nested Schema : items
Type: array
Show Source
Nested Schema : georasterTableResponse
Type: object
Show Source
Examples

401 Response

Authentication information is missing or invalid
Headers
Back to Top

Examples

The following is an example on how to list all tables and GeoRaster columns from datasource1 data source by submitting a GET request using cURL.

curl -X GET "https://localhost:8080/oraclespatial/georaster/v1/datasource1?limit=1&offset=0" -H "Cookie: JSESSIONID=<jsessionid_value>"

The following shows an example of the response in JSON format for the above request.

{
  "items" : [ { 
     "schema" : "HERMAN", 
     "georasterTableName" : "IMAGE_TABLE", 
     "georasterColumnName" : "IMAGE", 
     "links" : [ { 
       "rel" : "canonical", 
       "href" : "http://localhost:8080/oraclespatial/georaster/v1/datasource1/IMAGE_TABLE/IMAGE" 
     } ] 
   } ], 
   "hasMore" : false, 
   "totalResults" : 1, 
   "links" : [ { 
     "rel" : "canonical", 
     "href" : "http://localhost:8080/oraclespatial/georaster/v1/datasource1" 
   }, { 
     "rel" : "self", 
     "href" : "http://localhost:8080/oraclespatial/georaster/v1/datasource1?limit=1&offset=0" 
   } ] 
   }
Back to Top