chore: upgrade to latest OpenAPI (#357)

This commit is contained in:
Dane Strandboge
2022-02-01 14:53:34 -06:00
committed by GitHub
parent 5cd1c9d037
commit 981be7872d
18 changed files with 145 additions and 114 deletions

View File

@ -14,10 +14,10 @@ import (
"encoding/json"
)
// MeasurementSchemaCreateRequest Create a new measurement schema
// MeasurementSchemaCreateRequest Create a new measurement schema.
type MeasurementSchemaCreateRequest struct {
Name string `json:"name" yaml:"name"`
// An ordered collection of column definitions
// Ordered collection of column definitions.
Columns []MeasurementSchemaColumn `json:"columns" yaml:"columns"`
}