{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Task", "description": "Task schema from Prisma Cloud: Managed Security Service Provider (MSSP)", "$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-schema/prisma-cloud-mssp-api-task-schema.json", "type": "object", "properties": { "id": { "type": "string", "format": "uuid" }, "webhookUrl": { "type": "string" }, "description": { "type": "string" }, "scheduledTime": { "type": "integer", "format": "int64" }, "submitTime": { "type": "integer", "format": "int64" }, "recur": { "type": "object", "properties": { "type": { "type": "string" }, "recurString": { "type": "string" } } }, "matureTime": { "type": "integer", "format": "int64" }, "cancel": { "type": "boolean" }, "properties": { "type": "object", "additionalProperties": { "type": "string" } } } }