Upwork · Schema

Budget

Budget for a job posting

FreelancingJobsTalentMarketplaceContractsHiring

Properties

Name Type Description
amount number Budget amount
currency string Budget currency
View JSON Schema on GitHub

JSON Schema

graphql-budget-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-budget-schema.json",
  "title": "Budget",
  "description": "Budget for a job posting",
  "type": "object",
  "properties": {
    "amount": {
      "type": "number",
      "description": "Budget amount",
      "example": 5000.0
    },
    "currency": {
      "type": "string",
      "description": "Budget currency",
      "example": "USD"
    }
  }
}