Apache Ignite · Schema

InvalidParam

Information about invalid request parameter.

CachingCompute GridDistributed DatabaseIn-MemoryOpen SourceSQL

Properties

Name Type Description
name string Parameter name.
reason string The issue with the parameter.
View JSON Schema on GitHub

JSON Schema

rest-api-invalid-param-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-invalid-param-schema.json",
  "title": "InvalidParam",
  "description": "Information about invalid request parameter.",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Parameter name."
    },
    "reason": {
      "type": "string",
      "description": "The issue with the parameter."
    }
  }
}