{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AddOnResponse", "title": "AddOnResponse", "description": "Object containing information about an add-on.", "type": "object", "properties": { "id": { "$ref": "#/components/schemas/AddOnId" }, "name": { "$ref": "#/components/schemas/AddOnName" }, "owner": { "$ref": "#/components/schemas/AddOnOwner" }, "config": { "$ref": "#/components/schemas/AddOnConfigResponse" }, "entity_version": { "description": "Monotonically-increasing version count of the add-on, to indicate the order of updates to the add-on.", "type": "integer", "example": 1, "readOnly": true }, "state": { "$ref": "#/components/schemas/AddOnState" }, "created_at": { "description": "RFC-3339 timestamp representation of add-on creation date.", "type": "string", "format": "date-time", "example": "2025-08-26T06:56:41Z", "readOnly": true }, "updated_at": { "description": "RFC-3339 timestamp representation of add-on update date.", "type": "string", "format": "date-time", "example": "2025-08-26T06:56:41Z", "readOnly": true } }, "additionalProperties": false, "required": [ "id", "name", "owner", "config", "entity_version", "state", "created_at", "updated_at" ] }