json_schema v0.2.0 JsonSchema.Types.PrimitiveType View Source
Represents a custom primitive
type definition in a JSON schema.
JSON Schema:
"name": {
"type": "string"
}
Resulting in the Elixir representation:
%PrimitiveType{name: "name",
path: URI.parse("#/name"),
type: "string"}