Properties
| Name | Type | Description |
|---|---|---|
| account | string | |
| key | string | |
| name | string | |
| description | string | |
| requesterEmail | string | |
| entity | string | |
| schema | string | |
| query | string | |
| params | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SubscriptionReport",
"title": "SubscriptionReport",
"type": "object",
"properties": {
"account": {
"type": "string",
"nullable": true
},
"key": {
"type": "string",
"nullable": true
},
"name": {
"type": "string",
"nullable": true
},
"description": {
"type": "string",
"nullable": true
},
"requesterEmail": {
"type": "string",
"nullable": true
},
"entity": {
"type": "string",
"nullable": true
},
"schema": {
"type": "string",
"nullable": true
},
"query": {
"type": "string",
"nullable": true
},
"params": {
"type": "array",
"items": {
"$ref": "#/components/schemas/SubscriptionReportParam"
},
"nullable": true
}
},
"additionalProperties": false
}