Blissfully · Schema

Vendor

A software vendor in the Vendr catalog

ProcurementSaaS DiscoverySaaS ManagementSoftware ProcurementSpend OptimizationVendor Management

Properties

Name Type Description
id string Unique vendor identifier
name string Vendor name
website string Vendor website URL
category string Primary product category
View JSON Schema on GitHub

JSON Schema

blissfully-vendor-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-vendor-schema.json",
  "title": "Vendor",
  "description": "A software vendor in the Vendr catalog",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique vendor identifier",
      "example": "vendor-salesforce"
    },
    "name": {
      "type": "string",
      "description": "Vendor name",
      "example": "Salesforce"
    },
    "website": {
      "type": "string",
      "format": "uri",
      "description": "Vendor website URL",
      "example": "https://www.salesforce.com"
    },
    "category": {
      "type": "string",
      "description": "Primary product category",
      "example": "CRM"
    }
  },
  "required": [
    "id",
    "name"
  ]
}