Upwork · Schema

MessageListResponse

Paginated list of messages

FreelancingJobsTalentMarketplaceContractsHiring

Properties

Name Type Description
total integer Total number of messages
messages array List of messages
View JSON Schema on GitHub

JSON Schema

graphql-message-list-response-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-list-response-schema.json",
  "title": "MessageListResponse",
  "description": "Paginated list of messages",
  "type": "object",
  "properties": {
    "total": {
      "type": "integer",
      "description": "Total number of messages",
      "example": 48
    },
    "messages": {
      "type": "array",
      "description": "List of messages",
      "items": {
        "$ref": "#/components/schemas/Message"
      }
    }
  }
}