123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- {
- "Plugin": {
- "type": "object",
- "required": [
- "assets",
- "canDisable",
- "contexts",
- "doc",
- "enabled",
- "hasConfiguration",
- "id",
- "isTestable",
- "metadata",
- "name",
- "shortName",
- "slug",
- "status",
- "type"
- ],
- "properties": {
- "assets": {
- "type": "array",
- "items": {
- "type": "string"
- }
- },
- "author": {
- "type": "object",
- "nullable": true,
- "properties": {
- "name": {
- "type": "string"
- },
- "url": {
- "type": "string"
- }
- }
- },
- "canDisable": {
- "type": "boolean"
- },
- "contexts": {
- "type": "array",
- "items": {
- "type": "string"
- }
- },
- "description": {
- "type": "string"
- },
- "doc": {
- "type": "string"
- },
- "enabled": {
- "type": "boolean"
- },
- "hasConfiguration": {
- "type": "boolean"
- },
- "id": {
- "type": "string"
- },
- "isTestable": {
- "type": "boolean"
- },
- "metadata": {
- "type": "object"
- },
- "name": {
- "type": "string"
- },
- "resourceLinks": {
- "type": "array",
- "nullable": true,
- "items": {
- "type": "object",
- "properties": {
- "title": {
- "type": "string"
- },
- "url": {
- "type": "string"
- }
- }
- }
- },
- "shortName": {
- "type": "string"
- },
- "slug": {
- "type": "string"
- },
- "status": {
- "type": "string"
- },
- "type": {
- "type": "string"
- },
- "version": {
- "type": "string",
- "nullable": true
- }
- }
- }
- }
|