{
    "$schema": "https://json-schema.org/draft/2020-12/schema",
    "type": "object",
    "properties": {
        "itemId": {
            "type": "string",
            "description": "A required ArcGIS Item id"
        },
        "fetchAdditionalDetails": {
            "type": "boolean",
            "description": "Whether to include more item details than just the item info that is returned from the ArcGIS Portal 'get-item-by-id' operation. If true, this tool returns a service definition for items with an ArcGIS Server Rest API, or the otherwise the item's data json. Usually should be true as additional details are valuable and do not come at much cost.",
            "default": true
        }
    },
    "required": [
        "itemId"
    ]
}