JFrog · Schema

CommandRequest

ArtifactoryCI/CDContainer RegistryDevOpsMLOpsPackage ManagementSecuritySoftware Supply Chain

Properties

Name Type Description
command string The command to execute
device_ids array
group_ids array
timeout_seconds integer
View JSON Schema on GitHub

JSON Schema

jfrog-commandrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CommandRequest",
  "title": "CommandRequest",
  "type": "object",
  "properties": {
    "command": {
      "type": "string",
      "description": "The command to execute"
    },
    "device_ids": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "group_ids": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "timeout_seconds": {
      "type": "integer",
      "default": 30
    }
  },
  "required": [
    "command"
  ]
}