Schema Structure
- type (
string) - enum: text (required) - data (
object) (required)- text (
string) (required) - Text to be encoded in the QR Code
- text (
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
We've updated our API endpoints to match what we use in our application. Some endpoints have been deprecated. See our Deprecated Endpoints page for migration details.
Static QR Category. Text category schema
string) - enum: text (required)object) (required)
string) (required) - Text to be encoded in the QR Code{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"title": "Simple Text",
"description": "Static QR Category. Text category schema",
"examples": [],
"additionalProperties": false,
"required": [
"type",
"data"
],
"properties": {
"type": {
"type": "string",
"enum": [
"text"
]
},
"data": {
"type": "object",
"additionalProperties": false,
"required": [
"text"
],
"properties": {
"text": {
"type": "string",
"description": "Text to be encoded in the QR Code"
}
}
}
}
}
Was this page helpful?