{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://weverlabs.com/schemas/client-offer.schema.json",
  "title": "Wever Labs Client Offer",
  "type": "object",
  "required": [
    "offer_id",
    "tool",
    "workflow_fit",
    "inputs",
    "outputs",
    "request_path"
  ],
  "properties": {
    "offer_id": {
      "type": "string"
    },
    "tool": {
      "type": "string"
    },
    "workflow_fit": {
      "type": "string"
    },
    "inputs": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "outputs": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "request_path": {
      "type": "string"
    },
    "pilot_path": {
      "type": "string"
    }
  }
}