Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions core-spec/osi-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
},
"vendors": {
"type": "array",
"description": "Supported vendors for custom extensions (enumeration definition)",
"description": "List of vendor names used in custom extensions within this model",
"items": {
"$ref": "#/$defs/Vendor"
}
Expand All @@ -42,8 +42,8 @@
},
"Vendor": {
"type": "string",
"enum": ["COMMON", "SNOWFLAKE", "SALESFORCE", "DBT", "DATABRICKS", "GOODDATA"],
"description": "Supported vendors for custom extensions"
"examples": ["COMMON", "SNOWFLAKE", "SALESFORCE", "DBT", "DATABRICKS", "GOODDATA"],
"description": "Vendor name for custom extensions. Any string value is accepted."
},
"AIContext": {
"description": "Additional context for AI tools",
Expand Down
7 changes: 5 additions & 2 deletions core-spec/spec.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,10 @@ Supported SQL and expression language dialects for metrics and field definitions

### Vendors

Supported vendors for custom extensions and integrations.
The `vendor_name` field is a free-form string, allowing any vendor or organization to
define custom extensions without requiring changes to the core specification.

The following are well-known examples:

| Vendor | Description |
|--------|-------------|
Expand Down Expand Up @@ -360,7 +363,7 @@ Custom extensions allow vendors to add platform-specific metadata without breaki

```yaml
custom_extensions:
- vendor_name: string # Must be from vendors enum
- vendor_name: string # Free-form string identifying the vendor
data: string # JSON string containing vendor-specific data
```

Expand Down
11 changes: 3 additions & 8 deletions core-spec/spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,9 @@ dialects:



# Supported vendors for custom extensions
vendors:
- "COMMON"
- "SNOWFLAKE"
- "SALESFORCE"
- "DBT"
- "DATABRICKS"
- "GOODDATA"
# Vendor name for custom extensions (free-form string)
# Examples: "COMMON", "SNOWFLAKE", "SALESFORCE", "DBT", "DATABRICKS", "GOODDATA"
vendor_name: string


# Top-level semantic model definition
Expand Down