Properties
| Name | Type | Description |
|---|---|---|
| EnterpriseIds | array | Unique identifiers of enterprises for which the data is exported. |
| ChainIds | array | Unique identifiers of chains for which the data is exported. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ExportScope",
"title": "Export scope",
"type": "object",
"properties": {
"EnterpriseIds": {
"maxItems": 1000,
"minItems": 1,
"type": "array",
"items": {
"type": "string",
"format": "uuid"
},
"description": "Unique identifiers of enterprises for which the data is exported.",
"nullable": true
},
"ChainIds": {
"maxItems": 1000,
"minItems": 1,
"type": "array",
"items": {
"type": "string",
"format": "uuid"
},
"description": "Unique identifiers of chains for which the data is exported.",
"nullable": true
}
},
"additionalProperties": false,
"x-schema-id": "ExportScope"
}