- URL:
- https://[root]/portals/[portalID]/classifcation
- Methods:
GET
- Operations:
- Assign Classification Schema, Delete Classification Schema, Validate Classification Schema, Validate Classification
- Child Resources:
- Classification Schema
- Version Introduced:
- 11.4
Example usage
The following is a sample ArcGIS Enterprise request used to access the classification
resource:
https://machine.domain.com/webadaptor/sharing/rest/portals/0123456789ABCDEF/classification?f=pjson
Description
The classification
resource returns the current grammar version and whether a classification schema has been assigned to the organization. The classification schema must adhere to the grammar version returned by this resource. When a classification schema is assigned to the organization, the has
property will return as true
.
The classification
resource also provides access to various resources and operations that can be used to manage your organization's classification schema.
Request parameters
Parameter | Details |
---|---|
| The response format. The default format is Values: |
JSON Response syntax
{
"grammarVersion": "2.0",
"hasClassificationSchema": <true | false>
}
JSON Response example
{
"grammarVersion": "2.0",
"hasClassificationSchema": true
}