{
    "id": "https://xshl.org/schemas/1.1/rpc/share/delete.json",
    "$schema": "https://json-schema.org/draft/2020-12/schema",
    "title": "RPC: Delete share object",
    "description": "Method delete share object",
    "type": "object",
    "additionalProperties": false,
    "required": [
        "kwargs"
    ],
    "properties": {
        "kwargs": {
            "type": "object",
            "required": [
                "class_id",
                "entity_id"
            ],
            "additionalProperties": false,
            "properties": {
                "class_id": {
                    "type": "string"
                },
                "entity_id": {
                    "type": "string"
                }
            }
        }
    }
}