{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/banner_Full",
"title": "banner_Full",
"allOf": [
{
"type": "object",
"properties": {
"id": {
"type": "integer",
"description": "Id of the banner.\nThis is a READ-ONLY field; do not set or modify its value in a POST or PUT request.\n",
"example": 1
},
"date_created": {
"type": "string",
"description": "Date the banner is created."
}
}
},
{
"$ref": "#/components/schemas/banner_Base"
}
],
"x-internal": false
}