Blissfully · Schema

Product

A software product in the Vendr catalog with structured attributes, features, and add-ons

ProcurementSaaS DiscoverySaaS ManagementSoftware ProcurementSpend OptimizationVendor Management

Properties

Name Type Description
id string Unique product identifier
name string Product name
vendor_id string Associated vendor identifier
category string Product category
description string Product description
features array List of product features
add_ons array Available product add-ons
View JSON Schema on GitHub

JSON Schema

blissfully-product-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/blissfully/refs/heads/main/json-schema/blissfully-product-schema.json",
  "title": "Product",
  "description": "A software product in the Vendr catalog with structured attributes, features, and add-ons",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique product identifier",
      "example": "product-500123"
    },
    "name": {
      "type": "string",
      "description": "Product name",
      "example": "Salesforce Sales Cloud"
    },
    "vendor_id": {
      "type": "string",
      "description": "Associated vendor identifier",
      "example": "vendor-salesforce"
    },
    "category": {
      "type": "string",
      "description": "Product category",
      "example": "CRM"
    },
    "description": {
      "type": "string",
      "description": "Product description"
    },
    "features": {
      "type": "array",
      "description": "List of product features",
      "items": {
        "type": "string"
      }
    },
    "add_ons": {
      "type": "array",
      "description": "Available product add-ons",
      "items": {
        "type": "string"
      }
    }
  },
  "required": [
    "id",
    "name",
    "vendor_id",
    "category"
  ]
}