r2_v4_response

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-r2-v4-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/r2_v4_response",
  "title": "r2_v4_response",
  "properties": {
    "errors": {
      "$ref": "#/components/schemas/r2_errors"
    },
    "messages": {
      "$ref": "#/components/schemas/r2_messages"
    },
    "result": {
      "type": "object"
    },
    "success": {
      "description": "Whether the API call was successful",
      "enum": [
        true
      ],
      "type": "boolean"
    }
  },
  "required": [
    "success",
    "errors",
    "messages",
    "result"
  ],
  "type": "object"
}