Response

A response object.

APIs.ioEngineeringPlatform

Properties

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

JSON Schema

apis-io-engineering-platform-rulesets-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/rulesets_Response",
  "title": "Response",
  "description": "A response object.",
  "properties": {
    "errors": {
      "$ref": "#/components/schemas/rulesets_Errors"
    },
    "messages": {
      "$ref": "#/components/schemas/rulesets_Messages"
    },
    "result": {
      "description": "A result.",
      "title": "Result"
    },
    "success": {
      "description": "Whether the API call was successful.",
      "title": "Success",
      "type": "boolean"
    }
  },
  "required": [
    "result",
    "success",
    "errors",
    "messages"
  ],
  "type": "object"
}