{ "$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" } } }