Argo Workflows · Schema

sensor.LogEntry

sensor.LogEntry schema from Argo Workflows API

CNCFContainersData ProcessingKubernetesMachine LearningOpen SourceWorkflow Engine

Properties

Name Type Description
dependencyName string
eventContext string
level string
msg string
namespace string
sensorName string
time object
triggerName string
View JSON Schema on GitHub

JSON Schema

argo-workflows-sensor-log-entry-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/argo-workflows/refs/heads/main/json-schema/argo-workflows-sensor-log-entry-schema.json",
  "title": "sensor.LogEntry",
  "description": "sensor.LogEntry schema from Argo Workflows API",
  "type": "object",
  "properties": {
    "dependencyName": {
      "type": "string",
      "title": "optional - trigger dependency name"
    },
    "eventContext": {
      "type": "string",
      "title": "optional - Cloud Event context"
    },
    "level": {
      "type": "string"
    },
    "msg": {
      "type": "string"
    },
    "namespace": {
      "type": "string"
    },
    "sensorName": {
      "type": "string"
    },
    "time": {
      "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
    },
    "triggerName": {
      "type": "string",
      "title": "optional - any trigger name"
    }
  }
}