Upwork · Schema

MessageCreate

Request body for sending a message

FreelancingJobsTalentMarketplaceContractsHiring

Properties

Name Type Description
message string The message text to send
View JSON Schema on GitHub

JSON Schema

graphql-message-create-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/upwork/refs/heads/main/json-schema/graphql-message-create-schema.json",
  "title": "MessageCreate",
  "description": "Request body for sending a message",
  "type": "object",
  "properties": {
    "message": {
      "type": "string",
      "description": "The message text to send",
      "example": "Thank you for the update, I'll review shortly."
    }
  },
  "required": [
    "message"
  ]
}