A software vendor in the Vendr catalog
{ "$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" ] }