{
    "$schema": "https://json-schema.org/draft/2020-12/schema",
    "properties": {
        "serviceUrl": {
            "description": "The url of the feature or map service, NOT the layer itself.",
            "type": "string",
            "examples": [
                "https://arcgis-enterprise.net/server/rest/services/Hosted/EV_Charging_Stations/FeatureServer",
                "https://services1.arcgis.com/Ua5sjt3LWTPigjyD/arcgis/rest/services/Public_School_Locations_Current/MapServer"
            ]
        },
        "layerId": {
            "description": "The id of the layer to inspect.",
            "type": "integer"
        }
    },
    "required": [
        "serviceUrl",
        "layerId"
    ],
    "type": "object"
}