Argo Workflows · Schema

io.k8s.api.core.v1.SleepAction

SleepAction describes a "sleep" action.

CNCFContainersData ProcessingKubernetesMachine LearningOpen SourceWorkflow Engine

Properties

Name Type Description
seconds integer Seconds is the number of seconds to sleep.
View JSON Schema on GitHub

JSON Schema

argo-workflows-io-k8s-api-core-v1-sleep-action-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-io-k8s-api-core-v1-sleep-action-schema.json",
  "title": "io.k8s.api.core.v1.SleepAction",
  "description": "SleepAction describes a \"sleep\" action.",
  "type": "object",
  "properties": {
    "seconds": {
      "description": "Seconds is the number of seconds to sleep.",
      "type": "integer"
    }
  },
  "required": [
    "seconds"
  ]
}