Skip to content

JSONType

mattpolzin edited this page Jun 11, 2021 · 4 revisions

JSONType

The raw types supported by JSON Schema.

public enum JSONType: String, Codable 

These are the OpenAPI data types and additionally the object and array "compound" data types.

  • boolean

  • object

  • array

  • number

  • integer

  • string

Inheritance

Codable, String

Enumeration Cases

boolean

case boolean = "boolean"

object

case object = "object"

array

case array = "array"

number

case number = "number"

integer

case integer = "integer"

string

case string = "string"
Types
Protocols
Global Functions
Extensions
Clone this wiki locally