4. Appendix¶
4.1. Glossary¶
- string¶
a unicode string or a byte string
- unicode string¶
a Unicode string type (
unicodein Python 2, andstrin Python 3)- byte string¶
a byte string type (
strin Python 2, andbytesin Python 3). Unless otherwise indicated, byte strings in this project are always UTF-8 encoded.- JSON schema¶
a
dictobject that represents a JSON schema (i.e. as if it had been loaded from a JSON schema file usingjson.load()). For details about how to define a JSON schema, see https://json-schema.org/understanding-json-schema/.