magic_apps-response-array

APIs.ioEngineeringPlatform

Properties

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

JSON Schema

apis-io-engineering-platform-magic-apps-response-array-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/magic_apps-response-array",
  "title": "magic_apps-response-array",
  "properties": {
    "errors": {
      "$ref": "#/components/schemas/magic_messages"
    },
    "messages": {
      "$ref": "#/components/schemas/magic_messages"
    },
    "result": {
      "items": {},
      "nullable": true,
      "type": "array"
    },
    "success": {
      "description": "Whether the API call was successful",
      "enum": [
        true
      ],
      "example": true,
      "type": "boolean"
    }
  },
  "required": [
    "success",
    "errors",
    "messages",
    "result"
  ],
  "type": "object"
}