respondPanElementAddRequestBody

APIs.ioEngineeringPlatform

Properties

Name Type Description
response object The response to the user's request.
status string The request's status.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-respondpanelementaddrequestbody-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/respondPanElementAddRequestBody",
  "title": "respondPanElementAddRequestBody",
  "type": "object",
  "required": [
    "status"
  ],
  "properties": {
    "response": {
      "type": "object",
      "description": "The response to the user's request.",
      "properties": {
        "message": {
          "type": "string",
          "description": "A message that details why the user's request was denied.",
          "example": "The requested collection has a lot of governance violations. Please fix them."
        }
      }
    },
    "status": {
      "type": "string",
      "description": "The request's status.",
      "enum": [
        "denied",
        "approved"
      ],
      "example": "denied"
    }
  }
}