JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/placement_Full",
"title": "placement_Full",
"allOf": [
{
"type": "object",
"properties": {
"uuid": {
"type": "string",
"format": "uuid",
"description": "The primary identifier."
},
"template_file": {
"type": "string",
"description": "The template file that you would like to target."
},
"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."
},
"channel_id": {
"type": "integer",
"description": "The ID of the channel on which this placement exists."
}
}
},
{
"$ref": "#/components/schemas/placement_Base"
},
{
"type": "object",
"properties": {
"widget": {
"$ref": "#/components/schemas/widget_Full"
}
}
}
],
"x-internal": false
}