Apache Ignite · Schema

UpdateJobPriorityBody

DTO of update job priority request body.

CachingCompute GridDistributed DatabaseIn-MemoryOpen SourceSQL

Properties

Name Type Description
priority integer Priority.
View JSON Schema on GitHub

JSON Schema

rest-api-update-job-priority-body-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-ignite/refs/heads/main/json-schema/rest-api-update-job-priority-body-schema.json",
  "title": "UpdateJobPriorityBody",
  "description": "DTO of update job priority request body.",
  "type": "object",
  "properties": {
    "priority": {
      "type": "integer",
      "description": "Priority.",
      "format": "int32"
    }
  },
  "required": [
    "priority"
  ]
}