Type
org.sagebionetworks.repo.model.schema.Type
See: Instance Data Model
Enumeration
| name | description |
|---|---|
| null | A JSON "null" production |
| boolean | A "true" or "false" value, from the JSON "true" or "false" productions |
| object | An unordered set of properties mapping a string to an instance, from the JSON "object" production. If a "type" is not provided in a schema definition it will default to "object". |
| array | An ordered list of instances, from the JSON "array" production |
| number | An arbitrary-precision, base-10 decimal number value, from the JSON "number" production |
| string | A string of Unicode code points, from the JSON "string" production |
| integer | A number with no fractional part (no decimals). |