Blissfully · JSON Structure

Blissfully Pricing Response Structure

Pricing insights and negotiation guidance for a software product

Type: object Properties: 5 Required: 3
ProcurementSaaS DiscoverySaaS ManagementSoftware ProcurementSpend OptimizationVendor Management

PricingResponse is a JSON Structure definition published by Blissfully, describing 5 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

product_id fair_price_per_seat currency confidence negotiation_guidance

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/blissfully/refs/heads/main/json-structure/blissfully-pricing-response-structure.json",
  "name": "PricingResponse",
  "description": "Pricing insights and negotiation guidance for a software product",
  "required": [
    "product_id",
    "fair_price_per_seat",
    "currency"
  ],
  "type": "object",
  "properties": {
    "product_id": {
      "description": "Product identifier",
      "type": "string",
      "example": "product-500123"
    },
    "fair_price_per_seat": {
      "description": "Fair market price per seat",
      "type": "double",
      "example": 150
    },
    "currency": {
      "description": "Currency code",
      "type": "string",
      "example": "USD"
    },
    "confidence": {
      "description": "Confidence level",
      "enum": [
        "high",
        "medium",
        "low"
      ],
      "type": "string",
      "example": "high"
    },
    "negotiation_guidance": {
      "description": "Negotiation tips",
      "type": "string",
      "example": "Consider asking for a 15-20% discount."
    }
  }
}