The "about" web service provides meta data about INTGeoServer v3 itself.
A typical URL for this meta data is: http://myserver.mycompany.com:8080/INTGeoServer/api/about
No URL parameters are required.
This web service is typically used to test whether a INTGeoServer instance is available.
Here is an example response. This response has been formatted to improve readability
{
"name": "INTGeoServer",
"version": "vdev-2.7_454-c2ef893",
"majorVersion": "dev-2",
"minorVersion": "7",
"buildVersion": "454-c2ef893",
"localTime": {
"day": 21,
"dayOfYear": 295,
"month": 9,
"year": 2020,
"hour": 13,
"minute": 4,
"second": 5,
"millisecond": 689
},
"licenses": {
"INTGeoServer": {
"users": 1000,
"type": "expires",
"expiration": {
"daysUntilExpiration": 25,
"day": 15,
"dayOfYear": 320,
"month": 10,
"year": 2020
}
}
},
"api": {
"versions": [
{
"id": "v1",
"links": [
{
"rel": "OpenApi Specification",
"name": "OpenApi Specifications",
"relEntity": "v1/schema/int/openapispec",
"hasProjectEntityChildren": false,
"isProjectEntity": false,
"href": "/ivaap/api/ds/v1/openapispecs",
"children": true
},
{
"rel": "Source Type",
"name": "Source Types",
"relEntity": "v1/schema/int/sourceType",
"hasProjectEntityChildren": true,
"isProjectEntity": false,
"href": "/ivaap/api/ds/v1",
"children": true
},
{
"rel": "Formula Evaluation",
"name": "Formula Evaluations",
"relEntity": "v1/schema/int/formulaevaluation",
"hasProjectEntityChildren": false,
"isProjectEntity": false,
"href": "/ivaap/api/v1/formulas/evaluation",
"children": true
},
{
"rel": "Formula Variable",
"name": "Formula Variables",
"relEntity": "v1/schema/int/formulavariables",
"hasProjectEntityChildren": false,
"isProjectEntity": false,
"href": "/ivaap/api/v1/formulas/variables",
"children": true
},
{
"rel": "Formula Validation",
"name": "Formula Validations",
"relEntity": "v1/schema/int/formulavalidation",
"hasProjectEntityChildren": false,
"isProjectEntity": false,
"href": "/ivaap/api/v1/formulas/validation",
"children": true
}
]
}
]
}
}
The content of the about service is pluggable. To add your own JSON content, implement the com.interactive.ivaapapi.server.about.AbstractServerInfoProvider class.