googleapis / googleapis/nodejs-agentplatform
Incorrect json schema type
Open
api: aiplatform
priority: p2
type: bug
- Dominant language
- TypeScript
- Stars
- 182
- Forks
- 69
- Avg merge
- 1d 8h
- Merged PRs (30d)
- 10
Description
Why is the `SchemaType` using all caps instead of the normal json schema types?
```typescript
export declare enum SchemaType {
/** String type. */
STRING = "STRING", // --> should be "string"
/** Number type. */
NUMBER = "NUMBER", // --> should be "number"
/** Integer type. */
INTEGER = "INTEGER", // --> should be "integer"
/** Boolean type. */
BOOLEAN = "BOOLEAN", // --> should be "boolean"
/** Array type. */
ARRAY = "ARRAY", // --> should be "array"
/** Object type. */
OBJECT = "OBJECT" // --> should be "object"
}
```
Contributor guide
Assessment
This issue has not been assessed yet.