forked from swaggo/swag
-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.go
33 lines (29 loc) · 802 Bytes
/
schema.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package swag
import "fmt"
// CheckSchemaType TODO: NEEDS COMMENT INFO
func CheckSchemaType(typeName string) {
switch typeName {
case "string", "number", "integer", "boolean", "array", "object":
default:
panic(fmt.Errorf("%s is not basic types", typeName))
}
}
// TransToValidSchemeType indicates type will transfer golang basic type to swagger supported type.
func TransToValidSchemeType(typeName string) string {
switch typeName {
case "uint", "int", "uint8", "int8", "uint16", "int16", "byte":
return "integer"
case "uint32", "int32", "rune":
return "integer"
case "uint64", "int64":
return "integer"
case "float32", "float64":
return "number"
case "bool":
return "boolean"
case "string":
return "string"
default:
return typeName // to support user defined types
}
}