cloudforce-one_api-response-common

APIs.ioEngineeringPlatform

Properties

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

JSON Schema

apis-io-engineering-platform-cloudforce-one-api-response-common-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/cloudforce-one_api-response-common",
  "title": "cloudforce-one_api-response-common",
  "properties": {
    "errors": {
      "$ref": "#/components/schemas/cloudforce-one_messages"
    },
    "messages": {
      "$ref": "#/components/schemas/cloudforce-one_messages"
    },
    "success": {
      "description": "Whether the API call was successful",
      "enum": [
        true
      ],
      "example": true,
      "type": "boolean"
    }
  },
  "required": [
    "success",
    "errors",
    "messages"
  ],
  "type": "object"
}