dns-settings_api-response-common-failure

APIs.ioEngineeringPlatform

Properties

Name Type Description
errors object
messages object
result object
success boolean Whether the API call was successful
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-dns-settings-api-response-common-failure-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/dns-settings_api-response-common-failure",
  "title": "dns-settings_api-response-common-failure",
  "properties": {
    "errors": {
      "allOf": [
        {
          "$ref": "#/components/schemas/dns-settings_messages"
        }
      ],
      "example": [
        {
          "code": 7003,
          "message": "No route for the URI"
        }
      ],
      "minLength": 1
    },
    "messages": {
      "allOf": [
        {
          "$ref": "#/components/schemas/dns-settings_messages"
        }
      ],
      "example": []
    },
    "result": {
      "enum": [
        null
      ],
      "nullable": true,
      "type": "object"
    },
    "success": {
      "description": "Whether the API call was successful",
      "enum": [
        false
      ],
      "example": false,
      "type": "boolean"
    }
  },
  "required": [
    "success",
    "errors",
    "messages",
    "result"
  ],
  "type": "object"
}