action microsoft_list_site_lists { label: "List site lists" description: "List the lists in a SharePoint site." provider: microsoft method: GET path: "/v1.0/sites/{site_id}/lists" scopes: ["Sites.Read.All"] input: @json { { "type": "object", "required": ["site_id"], "additionalProperties": false, "properties": { "site_id": { "type": "string", "description": "Site id." }, "$top": { "type": "integer", "description": "Maximum number of lists to return." }, "$filter": { "type": "string", "description": "OData filter expression." } } } } output: @json { { "type": "object", "additionalProperties": true, "properties": { "value": { "type": "array", "items": { "type": "object", "additionalProperties": true, "properties": { "id": { "type": "string" }, "displayName": { "type": "string" }, "name": { "type": "string" }, "webUrl": { "type": "string" }, "list": { "type": "object" } } } } } } } }