An event QR code.
| Property | Description |
|---|---|
| created read-only |
The creation date of the event QR code. |
| eventId read-only |
The numeric identifier for the event to which this QR code belongs. |
| id read-only |
The identifier for the event QR code. |
| links required read-only |
Each property defines a hypertext link relationship as indicated by a link object or array of link objects. The target URL of each hypertext link relationship is related to the current resource according to the defined semantics of the link relationship property name. |
| publicId read-only |
The public identifier for this contract (may be used in the portal website). |
| tableData |
Stringified JSON object that represents key value pairs for the data in the Volume table. |
| type |
The type of object represented. |
The following schema is based on OpenAPI 3.0 and is provided in our downloadable OpenAPI document.
{
"description": "An event QR code.",
"properties": {
"created": {
"description": "The creation date of the event QR code.",
"format": "date-time",
"readOnly": true,
"type": "string"
},
"eventId": {
"description": "The numeric identifier for the event to which this QR code belongs.",
"readOnly": true,
"type": "integer"
},
"id": {
"description": "The identifier for the event QR code.",
"readOnly": true,
"type": "integer"
},
"links": {
"$ref": "#/components/schemas/Links"
},
"publicId": {
"description": "The public identifier for this contract (may be used in the portal\nwebsite).",
"pattern": "^[a-fA-F0-9]{32}$",
"readOnly": true,
"type": "string"
},
"tableData": {
"description": "Stringified JSON object that represents key value pairs for the data in the Volume table.",
"type": "string"
},
"type": {
"description": "The type of object represented.",
"enum": [
"event-qr-code"
],
"type": "string"
}
},
"required": [
"type"
],
"title": "Event QR Code",
"type": "object"
}