This repository has been archived on 2026-07-08. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
core-hub/contracts/schemas/migration-bundle.schema.json

72 lines
1.5 KiB
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://core-hub.local/contracts/schemas/migration-bundle.schema.json",
"title": "Core Hub Migration Bundle",
"type": "object",
"required": [
"schemaVersion",
"source",
"records"
],
"additionalProperties": true,
"properties": {
"schemaVersion": {
"const": "core-hub.migration.v1"
},
"source": {
"type": "string"
},
"exportedAt": {
"type": "string"
},
"records": {
"type": "object",
"additionalProperties": false,
"properties": {
"hubs": {
"type": "array",
"items": {
"type": "object"
},
"default": []
},
"hubCapabilityManifests": {
"type": "array",
"items": {
"type": "object"
},
"default": []
},
"apiConsumers": {
"type": "array",
"items": {
"type": "object"
},
"default": []
},
"apiKeys": {
"type": "array",
"items": {
"type": "object"
},
"default": []
},
"widgets": {
"type": "array",
"items": {
"type": "object"
},
"default": []
},
"interactionEvents": {
"type": "array",
"items": {
"type": "object"
},
"default": []
}
}
}
}
}