Properties
| Name | Type | Description |
|---|---|---|
| id | string | Plugin identifier |
| version | string | Plugin version |
| label | string | Display label |
| description | string | Plugin description |
| author | string | Plugin author |
| installedOn | integer | Installation timestamp |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Plugin",
"title": "Plugin",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Plugin identifier"
},
"version": {
"type": "string",
"description": "Plugin version"
},
"label": {
"type": "string",
"description": "Display label"
},
"description": {
"type": "string",
"description": "Plugin description"
},
"author": {
"type": "string",
"description": "Plugin author"
},
"installedOn": {
"type": "integer",
"format": "int64",
"description": "Installation timestamp"
}
}
}