Cloudflare · Schema

LogpushJobInput

AI GatewayAPI GatewayArtificial IntelligenceCDNCloudContainersDDoS ProtectionDNSEdgeEdge ComputingObject StoragePlatformReal-Time CommunicationSecurityServerlessWeb Performance

Properties

Name Type Description
name string Name for the job.
enabled boolean Whether the job is active.
dataset string The log dataset to push.
destination_conf string Destination URI.
logpull_options string Options for log fields and formatting.
frequency string
filter string JSON filter expression to limit logs pushed.
ownership_challenge string The ownership challenge token.
View JSON Schema on GitHub

JSON Schema

cloudflare-logpush-logpush-job-input-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "LogpushJobInput",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Name for the job."
    },
    "enabled": {
      "type": "boolean",
      "description": "Whether the job is active."
    },
    "dataset": {
      "type": "string",
      "description": "The log dataset to push."
    },
    "destination_conf": {
      "type": "string",
      "description": "Destination URI."
    },
    "logpull_options": {
      "type": "string",
      "description": "Options for log fields and formatting."
    },
    "frequency": {
      "type": "string"
    },
    "filter": {
      "type": "string",
      "description": "JSON filter expression to limit logs pushed."
    },
    "ownership_challenge": {
      "type": "string",
      "description": "The ownership challenge token."
    }
  }
}