The "welltubingsetsmeta" web service provides meta data about all tubing sets of an individual well bore.
A typical URL is http://myserver.mycompany.com:8080/INTGeoServer/api/ds/{datasourcetype}/v1/sources/{datasource}/wellbores/{wellboreuniqueid}/tubingsets with the GET method.
where
datasourcetype: type of a datasource, i.e. mongo, s3, etc.
datasource: a 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:FindWellTubingSetMetasByWellBoreJsonActor:FindWellTubingSetMetasByWellBoreEntitlementCheckResponse for FindWellTubingSetMetasByWellBoreEntitlementCheckRequest of FindWellTubingSetMetasByWellBoreRequest:FindWellTubingSetMetasByWellBoreRequest{klass=AbstractWellTubingSetMetaFinder, sourceName=ecd55dc9-e37c-49c8-a2f7-4313a8fe6a16, uniqueId=883e0b80-b9e1-4aa1-9d15-d84bfd6ad073, sourceType=mongo}"
},
"collection": {
"schema": "v1/schema/int/entitycollection",
"items": [
{
"id": "4587db16-954c-4267-9a9e-a8c3f65e0b0c",
"content": {
"uid": "4587db16-954c-4267-9a9e-a8c3f65e0b0c",
"name": "tubingset"
},
"links": [
{
"rel": "self",
"relEntity": "v1/schema/int/tubingset",
"href": "/ivaap/api/ds/mongo/v1/sources/ecd55dc9-e37c-49c8-a2f7-4313a8fe6a16/tubingsets/4587db16-954c-4267-9a9e-a8c3f65e0b0c",
"children": false,
"hasProjectEntityChildren": false,
"isProjectEntity": false
}
]
}
],
"total": 1
},
"supportedActions": [
{
"schema": "v1/schema/int/tubingset",
"methods": [
{
"method": "PUT",
"actions": [
{
"type": "Rename",
"name": "Rename"
}
]
},
{
"method": "DELETE",
"actions": [
{
"type": "Delete",
"name": "Delete"
}
]
}
]
}
]
}
The items section is a collection of all tubing sets meta data.
Each meta data is identified by id entry.
In content section for each tubing set meta data
uid is the unique id of a tubing set
name is the name of a tubing set
The links section provides HATEOAS links to the "Well Tubing Set Data Web Service (v3)" service.
The supportedActions section specifies actions that can be performed on each well tubing set.