Is there an Unsigned Integer in JSON Schema

jsonschema

Solution

No, there isn't. Check the 'type' section for details. But you can do

{
   "type" : "integer",
   "minimum" : 0
}

Problem

I just created my JSON Schema and I can't find if there is some kind of unsigned integer. Is there an unsigned integer type available in JSON Schema?

Original source