{
  "name": "SendMessage",
  "plane": "data",
  "terraformEligible": false,
  "protocol": {
    "kind": "cloudJson",
    "target": "CloudQueue.SendMessage",
    "service": "queue"
  },
  "requestBody": "typed",
  "responseBody": "typed",
  "requestSchema": {
    "$schema": "http://json-schema.org/draft-07/schema#",
    "additionalProperties": false,
    "properties": {
      "messageBody": {
        "type": "string"
      },
      "queueUrl": {
        "type": "string"
      }
    },
    "required": [
      "messageBody",
      "queueUrl"
    ],
    "title": "SendMessageRequest",
    "type": "object"
  },
  "responseSchema": {
    "$schema": "http://json-schema.org/draft-07/schema#",
    "properties": {
      "messageId": {
        "type": "string"
      }
    },
    "required": [
      "messageId"
    ],
    "title": "SendMessageResponse",
    "type": "object"
  }
}
