package schemas

type Schema struct {
	ID     string  `json:"id"`
	Fields []Field `json:"fields"`
}

type Field struct {
	ID   string `json:"id"`
	Type string `json:"type"`
}
