The "wellrasterlogsegment" web service provides information about an individual well raster log segment.
A typical URL is http://myserver.mycompany.com:8080/INTGeoServer/api/ds/{datasourcetype}/v1/sources/{datasource}/rasterlogsegments/{segmentuniqueid} with the GET method.
where
datasourcetype: type of a datasource, i.e. mongo, geofiles, s3, etc.
datasource: unique id of a datasource
segmentuniqueid: a unique id of a raster log segment
Here is an example response. This response has been formatted to improve readability
{
"from": {
"actor": "akka://DefaultActorSystemControllerActorSystem:FindWellRasterLogSegmentByUniqueIdJsonActor:FindWellRasterLogSegmentByUniqueIdEntitlementCheckResponse for FindWellRasterLogSegmentByUniqueIdEntitlementCheckRequest of FindWellRasterLogSegmentByUniqueIdRequest:FindWellRasterLogSegmentByUniqueIdRequest{klass=AbstractWellRasterLogSegmentFinder, sourceName=a8b05811-6409-43bb-8902-c9142ab48cff, wellRasterLogSegmentUniqueId=wellId=VGhpZXJyeS8xMzItMDYtMV9NZXJnZWRfU2V0Lmxhcw== (java.lang.String)\nwellRasterLogIndex=0 (java.lang.String)\nsegmentId=1 (java.lang.String), sourceType=geofiles}"
},
"data": {
"id": "{\"tuple\":[{\"name\":\"wellId\",\"value\":\"VGhpZXJyeS8xMzItMDYtMV9NZXJnZWRfU2V0Lmxhcw==\"},{\"name\":\"wellRasterLogIndex\",\"value\":\"0\"},{\"name\":\"segmentId\",\"value\":\"1\"}]}",
"content": {
"name": "1"
},
"links": [
{
"rel": "self",
"relEntity": "v1/schema/int/rasterlogsegment",
"href": "/ivaap/api/ds/geofiles/v1/sources/a8b05811-6409-43bb-8902-c9142ab48cff/rasterlogsegments/%7B%22tuple%22%3A%5B%7B%22name%22%3A%22wellId%22%2C%22value%22%3A%22VGhpZXJyeS8xMzItMDYtMV9NZXJnZWRfU2V0Lmxhcw%3D%3D%22%7D%2C%7B%22name%22%3A%22wellRasterLogIndex%22%2C%22value%22%3A%220%22%7D%2C%7B%22name%22%3A%22segmentId%22%2C%22value%22%3A%221%22%7D%5D%7D",
"children": false,
"hasProjectEntityChildren": false,
"isProjectEntity": false
}
]
}
}
The id entry is the unique id of a raster log segment.
The name entry is the name of a raster log segment.
The links section provides a HATEOAS link to this service.
If the specified segmentuniqueid doesn't match a valid raster log segment, no JSON response will be provided. The HTTP response will only show a "InvalidUniqueId" (error 404) in its headers.