Axway · Schema
DataExport
DataExport schema from Axway Amplify Platform API
API ManagementEnterpriseIntegrationSecurity
Properties
| Name | Type | Description |
|---|---|---|
| _id | string | Document ID of the export. |
| completed | string | Date the export was completed |
| created | object | |
| filename | string | Location the export is saved to. |
| guid | string | `guid` of the export. |
| items | array | Items included in the export. |
| org_guid | string | `guid` of the org for org specific exports. |
| status | string | Status of the export. |
| updated | object | |
| user_guid | string | `guid` of the user that initiated the export. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api-evangelist.com/schemas/axway/amplify-platform-data-export-schema.json",
"title": "DataExport",
"description": "DataExport schema from Axway Amplify Platform API",
"type": "object",
"properties": {
"_id": {
"type": "string",
"description": "Document ID of the export.",
"readOnly": true,
"deprecated": true,
"example": "507f1f77bcf86cd799439011"
},
"completed": {
"type": "string",
"format": "date-time",
"description": "Date the export was completed",
"example": "2026-04-21T00:00:00Z"
},
"created": {
"$ref": "#/components/schemas/DefaultFields/properties/created"
},
"filename": {
"type": "string",
"format": "url",
"description": "Location the export is saved to.",
"example": "Example Name"
},
"guid": {
"type": "string",
"format": "uuid",
"description": "`guid` of the export.",
"example": "example_value"
},
"items": {
"type": "array",
"description": "Items included in the export.",
"items": {
"type": "string",
"enum": [
"user_metadata",
"user_activity",
"user_devices",
"orgs",
"org_metadata",
"org_activity",
"subscriptions",
"envs",
"teams",
"apps",
"providers",
"idps",
"domains"
]
},
"example": [
"user_metadata"
]
},
"org_guid": {
"type": "string",
"description": "`guid` of the org for org specific exports.",
"example": "example_value"
},
"status": {
"type": "string",
"description": "Status of the export.",
"default": "pending",
"enum": [
"pending",
"complete",
"failed"
],
"example": "pending"
},
"updated": {
"$ref": "#/components/schemas/DefaultFields/properties/updated"
},
"user_guid": {
"type": "string",
"description": "`guid` of the user that initiated the export.",
"example": "example_value"
}
},
"required": [
"guid",
"items",
"status",
"user_guid"
]
}