FRAMES | NO FRAMES Description | Parameters | Response | Example
URL:http://server:port/arcgis/admin/services/[<folder>]/<service>/iteminfo/manifest/manifest.json
HTTP Method:GET
Parent Resource: Service  

Description

The service manifest resource documents the data and other resources that define the service origins and power the service. This resource will tell you underlying databases and their location along with other supplementary files that make up the service.

This resource was added at ArcGIS 10.1 Service Pack 1.

The JSON representation of the manifest has two sections:

  1. Databases
  2. Resources

Note:

Parameters

Parameter Description
f The response format. JSON is the only supported response format.
Values: json

Example

{
    "databases": [{
        "byReference": true,
        "onServerWorkspaceFactoryProgID": "esriDataSourcesGDB.FileGDBWorkspaceFactory.1",
        "onServerConnectionString": "DATABASE=\\\\server\\sharedb\\California.gdb",
        "onPremiseConnectionString": "DATABASE=C:\\data\\California\\California.gdb",
        "onServerName": "California.gdb",
        "onPremisePath": "",
        "datasets": [
			{
            	"onServerName": "Airports"
        	},
			{
            	"onServerName": "Cities"
        	},
			{
            	"onServerName": "EarthquakeHistory"
        	},
			{
            	"onServerName": "GolfCourses"
        	},
			{
            	"onServerName": "Places"
        	},
			{
            	"onServerName": "Volcanos"
        	},
			{
            	"onServerName": "Highways"
        	},
			{
            	"onServerName": "Rivers"
        	},
			{
            	"onServerName": "Counties"
        	},
			{
            	"onServerName": "Lakes"
        	},
			{
            	"onServerName": "StateBND"
        	},
			{
            	"onServerName": "UrbanAreas"
        	}
		]
    }
	],
    "resources": [
		{
        	"onPremisePath": "C:\\data\\California\\California.mxd",
        	"clientName": "client",
        	"serverPath": "C:\\arcgisserver\\directories\\arcgissystem\\arcgisinput\\California1.MapServer\\extracted\\v101\\California.msd"
    	}
	]
}