The "wellboregeometries" web service provides meta data about all geometries of an individual well bore.
A typical URL is http://myserver.mycompany.com:8080/INTGeoServer/api/ds/{datasourcetype}/v1/sources/{datasource}/wellbores/{wellboreuniqueid}/wbgeometries with the GET method.
where
datasourcetype: type of a datasource, i.e. mongo, geofiles, s3, etc.
datasource: unique id of a datasource
wellboreuniqueid: a unique id of a well bore
Here is an example response. This response has been formatted to improve readability
{
"from": {
"actor": "akka://DefaultActorSystemControllerActorSystem:FindWellBoreGeometryMetasByWellBoreJsonActor:WellBoreGeometryMetasListResponse for FindWellBoreGeometryMetasByWellBoreRequest:FindWellBoreGeometryMetasByWellBoreRequest{klass=AbstractWellBoreGeometryMetaFinder, sourceName=c9db3458-6698-49d9-ae8f-f407ce26ae2e, uniqueId=a03e86c7-72c1-414e-aecc-8ea3c5, sourceType=mongo}"
},
"collection": {
"schema": "v1/schema/int/entitycollection",
"items": [
{
"id": "e8b7afb1-b167-4603-9885-16fa29ac5e7c",
"content": {
"uid": "e8b7afb1-b167-4603-9885-16fa29ac5e7c",
"name": "Andalusit-1 Casing data_Test2"
},
"links": [
{
"rel": "self",
"relEntity": "v1/schema/int/wbgeometry",
"href": "/ivaap/api/ds/mongo/v1/sources/c9db3458-6698-49d9-ae8f-f407ce26ae2e/wbgeometries/e8b7afb1-b167-4603-9885-16fa29ac5e7c",
"children": false,
"hasProjectEntityChildren": false,
"isProjectEntity": false
}
]
}
],
"total": 1
},
"supportedActions": [
{
"schema": "v1/schema/int/wbgeometry",
"methods": [
{
"method": "PUT",
"actions": [
{
"type": "Rename",
"name": "Rename"
}
]
},
{
"method": "DELETE",
"actions": [
{
"type": "Delete",
"name": "Delete"
}
]
}
]
}
]
}
The id entry is a unique id of a well bore geometry.
The name entry is a name of a well bore geometry.
The links sections provides a HATEOAS links leading to this service.
The supportedActions section specifies actions that can be performed on each well bore geometry.
If the specified wellboreuniqueid doesn't match a valid well bore, no JSON response will be provided. The HTTP response will only show a "InvalidUniqueId" (error 404) in its headers.