Go SDK
Data Models
Data Models in the Gateway Protocol define the structure and validation rules for structured data assets. When using the Go SDK, Data Models ensure type safety and data consistency across your applications.
Understanding Data Models
Before working with structured data assets in Go, it’s essential to understand:
- Data Models are immutable schemas that define data structure
- They use JSON Schema for validation rules
- Every structured data asset must conform to a Data Model
Creating Data Models
Create Data Models using the SDK’s strongly typed interfaces:
Data Model Structure
Data Models in Go use maps and interfaces to represent JSON Schema structures:
Retrieving Data Models
The SDK provides several methods to fetch and query Data Models:
Validating Against Data Models
When creating data assets, ensure your data conforms to the model’s schema:
Was this page helpful?