The "wellmudlogsmeta" web service provides meta data about all mud logs of an individual well bore.
A typical URL is http://myserver.mycompany.com:8080/INTGeoServer/api/ds/{datasourcetype}/v1/sources/{datasource}/wellbores/{wellboreuniqueid}/mudlogs with the GET method.
where
datasourcetype: type of a datasource, i.e. mongo, 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:FindWellMudLogMetasByWellBoreJsonActor:WellMudLogMetasListResponse for FindWellMudLogMetasByWellBoreRequest:FindWellMudLogMetasByWellBoreRequest{klass=AbstractWellMudLogMetaFinder, sourceName=c9db3458-6698-49d9-ae8f-f407ce26ae2e, uniqueId=lithoWell, sourceType=mongo}"
},
"collection": {
"schema": "v1/schema/int/entitycollection",
"items": [
{
"id": "lithoWell:lithoWell3:mudlog1",
"content": {
"uid": "lithoWell:lithoWell3:mudlog1",
"name": "CuttingsMudlog"
},
"links": [
{
"rel": "self",
"relEntity": "v1/schema/int/mudlog",
"href": "/ivaap/api/ds/mongo/v1/sources/c9db3458-6698-49d9-ae8f-f407ce26ae2e/mudlogs/lithoWell%3AlithoWell3%3Amudlog1",
"children": false
}
]
}
],
"total": 1
},
"supportedActions": [
{
"schema": "v1/schema/int/mudlog",
"methods": [
{
"method": "PUT",
"actions": [
{
"type": "Rename",
"name": "Rename"
}
]
},
{
"method": "DELETE",
"actions": [
{
"type": "Delete",
"name": "Delete"
}
]
}
]
}
]
}
The items section is a collection of all mud logs meta data.
Each meta data is identified by id entry.
The content entry describes each meta data by name attribute.
The links sections provides a HATEOAS link to the Mud Log Data Web Service (v3) service.