JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/widgetTemplate_Full",
"title": "widgetTemplate_Full",
"allOf": [
{
"$ref": "#/components/schemas/widgetTemplate_Base"
},
{
"type": "object",
"properties": {
"uuid": {
"type": "string",
"format": "uuid",
"description": "The primary identifier."
},
"kind": {
"type": "string",
"description": "The kind of widget template."
},
"date_created": {
"type": "string",
"format": "date-time",
"description": "The date on which this object was initially created."
},
"date_modified": {
"type": "string",
"format": "date-time",
"description": "The date on which this object was last updated."
},
"current_version_uuid": {
"type": "string",
"description": "The identifier to the current version of this widget template."
},
"icon_name": {
"type": "string",
"default": "default",
"description": "A read-only value. Do not attempt to set or modify this value in a POST or PUT operation."
}
}
}
],
"description": "",
"x-internal": false
}